Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for keyRing (0.27 sec)

  1. platforms/software/security/src/main/java/org/gradle/security/internal/PublicKeyDownloadService.java

            }
        }
    
        /**
         * A response was sent from the server. This is a keyring, we need to find
         * within the keyring the matching key.
         */
        private void findMatchingKey(long id, PGPPublicKeyRing keyRing, PublicKeyResultBuilder builder) {
            for (PGPPublicKey publicKey : keyRing) {
                if (publicKey.getKeyID() == id) {
                    builder.publicKey(publicKey);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:49:35 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/software/security/src/test/groovy/org/gradle/security/internal/SecuritySupportSpec.groovy

            given:
            def keyringFile = new File(this.class.getResource("/keyrings/valid-with-extra-metadata.keys").getFile())
    
            when:
            def keyrings = SecuritySupport.loadKeyRingFile(keyringFile)
    
            then:
            keyrings.size() == 5
            keyrings.forEach { keyRing ->
                keyRing.publicKeys.forEachRemaining { publicKey ->
                    assert publicKey.getUserAttributes().size() == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. pkg/credentialprovider/plugins.go

    	for _, key := range stringKeys {
    		provider := providers[key]
    		if provider.Enabled() {
    			klog.V(4).Infof("Registering credential provider: %v", key)
    			keyring.Providers = append(keyring.Providers, provider)
    		}
    	}
    
    	return keyring
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 22:01:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/SignatureVerificationFailure.java

            keyService.findByFingerprint(key.getFingerprint(), new PublicKeyResultBuilder() {
                @Override
                public void keyRing(PGPPublicKeyRing keyring) {
                    Set<String> userIds = new TreeSet<>();
                    collectUserIds(userIds, key);
                    keyring.getPublicKeys().forEachRemaining(userkey -> collectUserIds(userIds, userkey));
                    if (!userIds.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/fake_kuberuntime_manager.go

    		machineInfo:            machineInfo,
    		osInterface:            osInterface,
    		runtimeHelper:          runtimeHelper,
    		runtimeService:         runtimeService,
    		imageService:           imageService,
    		keyring:                keyring,
    		seccompProfileRoot:     fakeSeccompProfileRoot,
    		internalLifecycle:      cm.NewFakeInternalContainerLifecycle(),
    		logReduction:           logreduction.NewLogReduction(identicalErrorDelay),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/DefaultSignatureVerificationServiceFactory.java

                    keyService.findByLongId(pgpSignature.getKeyID(), new PublicKeyResultBuilder() {
                        @Override
                        public void keyRing(PGPPublicKeyRing keyring) {
    
                        }
    
                        @Override
                        public void publicKey(PGPPublicKey pgpPublicKey) {
                            missing.set(false);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. docker/iptables.yaml

    contents:
      repositories:
        - https://packages.wolfi.dev/os
      keyring:
        - https://packages.wolfi.dev/os/wolfi-signing.rsa.pub
      packages:
        - ca-certificates-bundle
        - wolfi-baselayout
        - glibc
        - iptables
        - ip6tables
        - libnetfilter_conntrack
        - libnfnetlink
        - libmnl
        - libgcc
    archs:
      - x86_64
      - aarch64
    paths:
    - path: /run
      type: directory
      permissions: 0o755
    accounts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 17:24:41 UTC 2024
    - 541 bytes
    - Viewed (0)
  8. platforms/software/security/src/main/java/org/gradle/security/internal/SecuritySupport.java

                            // backward compatibility: old keyrings should be stripped too
                            PGPPublicKeyRing strippedKeyRing = KeyringStripper.strip((PGPPublicKeyRing) o, fingerprintCalculator);
                            existingRings.add(strippedKeyRing);
                        }
                    }
                } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. .gitignore

    .gradle
    /build
    /*/build
    /*/*/build
    /*/*/*/build
    /*/*/*/*/build
    /*/docs/src/samples/**/build
    /*/docs/src/snippets/**/build
    /*/internal-android-performance-testing/build-android-libs
    test-splits/
    /gradle/verification-keyring.gpg
    
    # IDEA
    # ----
    !/.idea
    /.idea/*
    # Needed to track entry points and nullability annotations (see https://youtrack.jetbrains.com/issue/IDEA-354114 and https://youtrack.jetbrains.com/issue/IDEA-354115)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top