Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mycopki (0.14 sec)

  1. tests/integration/security/file_mounted_certs/main_test.go

    meshConfig:
      defaultConfig:
        controlPlaneAuthPolicy: "MUTUAL_TLS"
        proxyMetadata: ` + strings.Replace(ProxyMetadataJSON, "\n", "", -1) +
    		`
    values:
      global:
        pilotCertProvider: "mycopki"
      pilot:
        env:
          # We need to turn off the XDS Auth because test certificates only have a fixed/hardcoded identity, but the identity of the actual
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

        }
    
        def "provides normalized paths (#pathSensitivity)"() {
            buildFile << """
                abstract class MyCopy extends DefaultTask {
                    @Incremental
                    @PathSensitive(PathSensitivity.${pathSensitivity.name()})
                    @InputDirectory
                    abstract DirectoryProperty getInputDirectory()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    ====
    [.multi-language-sample]
    =====
    [source,kotlin]
    ----
    tasks.register<Copy>("myCopy")                              // <1>
    
    tasks.named<Copy>("myCopy") {                               // <2>
        from("resources")
        into("target")
        include("**/*.txt", "**/*.xml", "**/*.properties")
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top