Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 90 for subkeys (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/signing_plugin.adoc

    ====
    include::sample[dir="snippets/signing/in-memory-subkey/kotlin",files="build.gradle.kts[tags=signing]"]
    include::sample[dir="snippets/signing/in-memory-subkey/groovy",files="build.gradle[tags=signing]"]
    ====
    
    [[sec:subkeys]]
    === Using OpenPGP subkeys
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocator.java

        private void locateSdksInRegistry(String baseKey) {
            try {
                List<String> subkeys = windowsRegistry.getSubkeys(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, baseKey + REGISTRY_ROOTPATH_SDK);
                for (String subkey : subkeys) {
                    try {
                        String basePath = baseKey + REGISTRY_ROOTPATH_SDK + "\\" + subkey;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch_test.go

          mapKey:
            nonNilKey: foo
      - description: nested map that all subkeys are nil
        originalObj:
          mapKey:
            nilKey1: null
            nilKey2: null
        expectedWithNull:
          mapKey:
            nilKey1: null
            nilKey2: null
        expectedWithoutNull: {}
      - description: nested map that all subkeys are non-nil
        originalObj:
          mapKey:
            nonNilKey1: foo
            nonNilKey2: bar
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/InMemoryPgpSignatoryProviderIntegrationSpec.groovy

            ])
            succeeds("signJar")
    
            then:
            executed(":signJar")
            file("build", "libs", "sign-1.0.jar.asc").exists()
        }
    
        @Issue("gradle/gradle#10363")
        def "supports signing subkeys"() {
            given:
            buildFile << """
                signing {
                    useInMemoryPgpKeys(project.property('keyId'), project.property('secretKey'), project.property('password'))
                    sign(jar)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningSamplesSpec.groovy

            then:
            projectDir.file('build/distributions/stuff.zip.asc').exists()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample('signing/in-memory-subkey')
        def "uses in-memory PGP subkeys with dsl #dsl"() {
            given:
            def projectDir = sample.dir.file(dsl)
            inDirectory(projectDir)
    
            when:
            executer.withEnvironmentVars([
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest.groovy

            (1..<keyringsAscii.size()).every {
                keyringsAscii[it - 1].publicKey.keyID < keyringsAscii[it].publicKey.keyID
            }
        }
    
        def "deduplicated keys are chosen by subkeys amount"() {
            given:
            javaLibrary()
            file("gradle/verification-keyring.keys").copyFrom(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/config.go

    	// TODO make these check if any subset has a matching annotation
    	return len(c.Subsets) > 0 && c.Subsets[0].Annotations != nil && strings.HasPrefix(c.Subsets[0].Annotations[annotation.InjectTemplates.Name], "grpc-")
    }
    
    func (c Config) IsTProxy() bool {
    	// TODO this could be HasCustomInjectionMode
    	return len(c.Subsets) > 0 && c.Subsets[0].Annotations != nil && c.Subsets[0].Annotations[annotation.SidecarInterceptionMode.Name] == "TPROXY"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. pkg/controller/endpointslicemirroring/reconciler_test.go

    	}{{
    		testName:               "Endpoints with no subsets",
    		subsets:                []corev1.EndpointSubset{},
    		existingEndpointSlices: []*discovery.EndpointSlice{},
    		expectedNumSlices:      0,
    		expectedClientActions:  0,
    		expectedMetrics:        &expectedMetrics{},
    	}, {
    		testName: "Endpoints with no addresses",
    		subsets: []corev1.EndpointSubset{{
    			Ports: []corev1.EndpointPort{{
    				Name:     "http",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. pkg/controlplane/reconcilers/lease.go

    		return nil, err
    	}
    
    	ipList := make([]string, 0, len(ipInfoList.Items))
    	for _, ip := range ipInfoList.Items {
    		if len(ip.Subsets) > 0 && len(ip.Subsets[0].Addresses) > 0 && len(ip.Subsets[0].Addresses[0].IP) > 0 {
    			ipList = append(ipList, ip.Subsets[0].Addresses[0].IP)
    		}
    	}
    
    	klog.V(6).Infof("Current master IPs listed in storage are %v", ipList)
    
    	return ipList, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  10. istioctl/pkg/describe/describe_test.go

    			args: strings.Split("service productpage", " "),
    			expectedOutput: `Service: productpage
    DestinationRule: productpage for "productpage"
       WARNING POD DOES NOT MATCH ANY SUBSETS.  (Non matching subsets v1)
       Matching subsets: 
          (Non-matching subsets v1)
       No Traffic Policy
    VirtualService: bookinfo
       Route to host "productpage" with weight 30%
       Route to host "productpage2" with weight 20%
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
Back to top