Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 458 for verified$ (0.16 sec)

  1. gradle/verification-metadata.xml

       * Artifact is not signed
       * Needed because PGP signature verification failed!
       * Key couldn't be downloaded
    
       You should then edit the origin to be "Verified". Note that editing those entries means you
       verified that the checksum matches.
    
       If the generation above did not resolve your issue, a task might be missing that exercise the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  2. releasenotes/notes/enable-verify-certificate-at-client.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: security
    releaseNotes:
    - |
      **Updated** default value of the feature flag `VERIFY_CERT_AT_CLIENT` to true.
      This means server certificates will be automatically verified using the OS CA certificates when not using a DestinationRule caCertificates field.
      If undesired please use the new `compatibilityVersion` feature to fallback to old behavior, or `insecureSkipVerify`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 24 15:53:10 UTC 2024
    - 911 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/DefaultSignatureVerificationServiceFactory.java

                                return;
                            }
                            try {
                                boolean verified = SecuritySupport.verify(origin, pgpSignature, pgpPublicKey);
                                if (!verified) {
                                    result.failed(pgpPublicKey);
                                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

      - On artifact foo-1.0.pom (org:foo:1.0) in repository 'maven': Artifact was signed with key '14F53F0824875D73' but it wasn't found in any key server so it couldn't be verified
    
    This can indicate that a dependency has been compromised. Please carefully verify the signatures and checksums."""
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/signatures/SignatureVerificationResultBuilder.java

     */
    package org.gradle.api.internal.artifacts.verification.signatures;
    
    import org.bouncycastle.openpgp.PGPPublicKey;
    
    public interface SignatureVerificationResultBuilder {
        void missingKey(String keyId);
        void verified(PGPPublicKey key, boolean trusted);
        void failed(PGPPublicKey pgpPublicKey);
        void ignored(String keyId);
    
        void noSignatures();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 978 bytes
    - Viewed (0)
  6. pkg/serviceaccount/jwt.go

    }
    
    // JWTTokenAuthenticator authenticates tokens as JWT tokens produced by JWTTokenGenerator
    // Token signatures are verified using each of the given public keys until one works (allowing key rotation)
    // If lookup is true, the service account and secret referenced as claims inside the token are retrieved and verified with the provided ServiceAccountTokenGetter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. docs/bucket/replication/setup_3site_replication.sh

    	echo "verified sitea-> COMPLETED, siteb-> REPLICA"
    fi
    
    if diff -pruN <(./mc stat --json sitea/bucket/hosts | jq .) <(./mc stat --json sitec/bucket/hosts | jq .) | grep -q 'COMPLETED\|REPLICA'; then
    	echo "verified sitea-> COMPLETED, sitec-> REPLICA"
    fi
    
    echo "Verifying the metadata difference between source and target"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modcmd/verify.go

    	Long: `
    Verify checks that the dependencies of the current module,
    which are stored in a local downloaded source cache, have not been
    modified since being downloaded. If all the modules are unmodified,
    verify prints "all modules verified." Otherwise it reports which
    modules have been changed and causes 'go mod' to exit with a
    non-zero status.
    
    See https://golang.org/ref/mod#go-mod-verify for more about 'go mod verify'.
    	`,
    	Run: runVerify,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. tests/integration/operator/verify_test.go

    				"-y",
    			}
    			istioCtl.InvokeOrFail(t, installCmd)
    
    			verifyCmd := []string{
    				"verify-install",
    			}
    			out, _ := istioCtl.InvokeOrFail(t, verifyCmd)
    			if !strings.Contains(out, "verified successfully") {
    				t.Fatalf("verify-install failed: %v", out)
    			}
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriterSignatureVerificationResult.java

            this.entry = entry;
        }
    
        @Override
        public void missingKey(String keyId) {
            ignoredKeys.add(keyId);
            entry.missing();
        }
    
        @Override
        public void verified(PGPPublicKey key, boolean trusted) {
            String keyId = Fingerprint.of(key).toString();
            entry.addVerifiedKey(keyId);
        }
    
        @Override
        public void failed(PGPPublicKey key) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top