This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "info": { | |
| "_postman_id": "beeb7d0b-c27a-4747-ab39-84edfe14a576", | |
| "name": "co-api", | |
| "description": "version=1.0 - Provides a RESTful API for retrieving and mutating payment instrument properties and conjuncted data\n\nContact Support: \nEmail: [[email protected]](mailto:[email protected])", | |
| "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" | |
| }, | |
| "item": [ | |
| { | |
| "name": "orders", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ScaniiService { | |
| private final ScaniiClient client; | |
| public ScaniiService(VirusScanConfig scaniiConfig) { | |
| RequestConfig config = RequestConfig.custom() | |
| .setConnectTimeout(45 * 1000) | |
| .setConnectionRequestTimeout(45 * 1000) | |
| .setSocketTimeout(45 * 1000) | |
| .build(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Previewing update (tal-deployment.ci): | |
| Type Name Plan Info | |
| pulumi:pulumi:Stack tal-deployment-tal-deployment.ci running read pulumi:pulumi:StackReference tal | |
| └─ azure-native:resources/v20200801:ResourceGroup tal-ci-rg [diff: ~provider] | |
| ├─ custom:azure:WebApplicationPlan web | |
| + │ └─ azure-native:web/v20200601:AppServicePlan tal-ci-web-plan create | |
| ├─ custom:azure:WebApplicationPlan batch | |
| + │ └─ azure-native:web/v20200601:AppServicePlan tal-ci-batch-plan create | |
| ├─ custom:azure:CloudflareCertificates |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package liquibase.sqlgenerator.ext.copy; | |
| import liquibase.database.Database; | |
| import liquibase.sql.Sql; | |
| import liquibase.sql.UnparsedSql; | |
| import liquibase.sqlgenerator.SqlGeneratorChain; | |
| import liquibase.sqlgenerator.core.CreateTableGenerator; | |
| import liquibase.statement.core.CreateTableStatement; | |
| import liquibase.structure.DatabaseObject; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as pulumi from "@pulumi/pulumi"; | |
| // Use like this: | |
| // var command = "docker ps -a" | |
| // const myResource = new ShellCommand("List Files", {command: command, env: {'FOO': 'bar'}, runAllways: false}); | |
| export interface ShellCommandArgs { | |
| uniqueId?: pulumi.Input<string>; | |
| command: pulumi.Input<string>; | |
| env: object; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| resource "azurerm_app_service_custom_hostname_binding" "app_domain" { | |
| hostname = "dummy.mydomain.com" | |
| app_service_name = "my_app_name" | |
| resource_group_name = "my_resource_group" | |
| provisioner "local-exec" { | |
| command = "./ensure_cert_for_domain.sh" | |
| environment = { | |
| RG_NAME = azurerm_app_service_custom_hostname_binding.app_domain.resource_group_name | |
| APP_NAME = azurerm_app_service_custom_hostname_binding.app_domain.app_service_name |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "AWSTemplateFormatVersion": "2010-09-09", | |
| "Parameters": { | |
| "HostedZoneName": { | |
| "Description": "The route53 HostedZoneName. For example, 'mydomain.org.' Don't forget the period at the end. (must exist!)", | |
| "Default": "mydomain.net.", | |
| "Type": "String" | |
| }, | |
| "Subdomain": { | |
| "Description": "The subdomain of the dns entry. For example, build -> jenkins.mydomain.org, 'build' is the subdomain.", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package ch.jobtool.scdf; | |
| import org.springframework.boot.SpringApplication; | |
| import org.springframework.boot.autoconfigure.SpringBootApplication; | |
| import org.springframework.boot.autoconfigure.session.SessionAutoConfiguration; | |
| import org.springframework.cloud.common.security.CommonSecurityAutoConfiguration; | |
| import org.springframework.cloud.dataflow.server.EnableDataFlowServer; | |
| @SpringBootApplication(exclude = { | |
| SessionAutoConfiguration.class, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .container { | |
| display: grid; | |
| grid-template-columns: repeat(12, 1fr); | |
| grid-gap: 5px; | |
| } | |
| .navigation { | |
| grid-column: span 3; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Archive: yooture.admin.web.war | |
| testing: META-INF/ OK | |
| testing: META-INF/MANIFEST.MF OK | |
| testing: css/ OK | |
| testing: js/ OK | |
| testing: WEB-INF/ OK | |
| testing: WEB-INF/classes/ OK | |
| testing: WEB-INF/classes/yooture/ OK | |
| testing: WEB-INF/classes/yooture/admin/ OK | |
| testing: WEB-INF/classes/yooture/admin/web/ OK |
NewerOlder