Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 387 for verified$ (0.14 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. 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)
  7. 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)
  8. 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)
  9. 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)
  10. releasenotes/notes/locality-lb-docs.yaml

        formal traffic management task. The new docs describe in more detail
        how locality load balancing works as well as how to configure both
        failover and weighted distribution. In addition, the new docs are now
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 15 22:52:39 UTC 2020
    - 420 bytes
    - Viewed (0)
Back to top