Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 827 for verified$ (0.19 sec)

  1. platforms/core-execution/execution/src/testFixtures/groovy/org/gradle/internal/execution/WorkValidationExceptionChecker.groovy

            problem = problem.capitalize()
            assert problems.contains(problem)
            verified.add(problem)
        }
    
        private void done() {
            if (verified && !(verified == problems as Set)) {
                throw new AssertionError("Expected ${problems.size()} problems but you only checked ${verified.size()}")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonSystemPropertiesIntegrationTest.groovy

            run("verify")
    
            then:
            output.contains("verified = ISO-8859-1")
            daemons.daemons.size() == 2
        }
    
        def "forks new daemon when tmpdir is set to different value via commandline"() {
            setup:
            buildScript """
                task verify {
                    doFirst {
                        println "verified = \${File.createTempFile('pre', 'post')}"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/artifact/ArtifactStatus.java

         */
        public static final ArtifactStatus DEPLOYED = new ArtifactStatus("deployed", 4);
    
        /**
         * Trusted, as it has had its data verified by hand.
         */
        public static final ArtifactStatus VERIFIED = new ArtifactStatus("verified", 5);
    
        private final int rank;
    
        private final String key;
    
        private static Map<String, ArtifactStatus> map;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifierTest.groovy

                result.verified(Stub(PGPPublicKey), false)
                result.verified(Stub(PGPPublicKey), false)
            })
            1 * result.failWith(_)
            0 * _
        }
    
        @Issue("https://github.com/gradle/gradle/issues/19089")
        def "should not fail when custom implementation of ModuleComponentIdentifier is verified"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 13:23:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisher.java

            Set<IvyArtifact> verified = new HashSet<IvyArtifact>();
    
            for (final IvyArtifact artifact : publication.getAllArtifacts()) {
                checkNotDuplicate(publication, verified, artifact.getName(), artifact.getExtension(), artifact.getType(), artifact.getClassifier());
                verified.add(artifact);
            }
    
            // Check that ivy.xml isn't duplicated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509.go

    }
    
    // Verifier implements request.Authenticator by verifying a client cert on the request, then delegating to the wrapped auth
    type Verifier struct {
    	verifyOptionsFn VerifyOptionFunc
    	auth            authenticator.Request
    
    	// allowedCommonNames contains the common names which a verified certificate is allowed to have.
    	// If empty, all verified certificates are allowed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 01:31:22 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/exceptions/ComponentVerificationException.java

        private final ModuleComponentIdentifier component;
        private final Consumer<TreeFormatter> causeErrorFormatter;
    
        /**
         * Creates a new exception when a component cannot be verified - because of some reason.
         *
         * @param component the component which failed the verification
         */
        public ComponentVerificationException(String message, ModuleComponentIdentifier component) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 15:00:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/ValidatingMavenPublisher.java

        private void checkNoDuplicateArtifacts(MavenNormalizedPublication publication) {
            Set<MavenArtifact> verified = new HashSet<>();
            for (MavenArtifact artifact : publication.getAllArtifacts()) {
                checkNotDuplicate(publication, verified, artifact.getExtension(), artifact.getClassifier());
                verified.add(artifact);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top