Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 131 for checkOuts (0.12 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriter.java

                writer.startElement(PGP);
                writeAttribute(VALUE, key);
                writer.endElement();
            }
        }
    
        private void writeChecksums(List<Checksum> checksums) throws IOException {
            for (Checksum checksum : checksums) {
                String kind = checksum.getKind().name();
                String value = checksum.getValue();
                writer.startElement(kind);
                writeAttribute(VALUE, value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook.go

    	//     the ctx audiences intersect with the implicit audiences, and set the
    	//     intersection in the response.
    	//   * otherwise return unauthenticated.
    	wantAuds, checkAuds := authenticator.AudiencesFrom(ctx)
    	r := &authenticationv1.TokenReview{
    		Spec: authenticationv1.TokenReviewSpec{
    			Token:     token,
    			Audiences: wantAuds,
    		},
    	}
    	var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  3. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

             * Only kill local Gradle processes (classpath in checkout directory).
             * Not clean up global Gradle processes (i.e. classpath in ~/.gradle/...).
             */
            KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS,
            /**
             * Run at the end of each build. Kill potentially leaked processes in the current build.
             * Only kill local Gradle processes (classpath in checkout directory).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/initialization/StartParameterBuildOptions.java

                super(null, CommandLineOptionConfiguration.create(LONG_OPTION, SHORT_OPTION,
                    "Generates checksums for dependencies used in the project (comma-separated list)"));
            }
    
            @Override
            public void applyTo(String value, StartParameterInternal settings, Origin origin) {
                List<String> checksums = Splitter.on(",")
                    .omitEmptyStrings()
                    .trimResults()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 22:47:53 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifier.java

        private void verifyChecksums(ChecksumService checksumService, File file, ArtifactVerificationMetadata verification, ArtifactVerificationResultBuilder builder) {
            List<Checksum> checksums = verification.getChecksums();
            for (Checksum checksum : checksums) {
                verifyChecksum(checksum.getKind(), file, checksum.getValue(), checksum.getAlternatives(), checksumService, builder);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modcmd/download.go

    	// 'go get mod@version', which may have other side effects. We print this in
    	// some error message hints.
    	//
    	// If we're in workspace mode, update go.work.sum with checksums for all of
    	// the modules we downloaded that aren't already recorded. Since a requirement
    	// in one module may upgrade a dependency of another, we can't be sure that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

        }
    
        def "can publish to an unauthenticated http repo (with extra checksums = #extraChecksums)"() {
            given:
            buildFile << publicationBuildWithoutCredentials(version, group, mavenRemoteRepo.uri)
    
            if (!extraChecksums) {
                executer.withArgument("-Dorg.gradle.internal.publish.checksums.insecure=true")
                module.withoutExtraChecksums()
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishHttpIntegTest.groovy

        }
    
        def "can publish to unauthenticated HTTP repository (extra checksums = #extraChecksums)"() {
            given:
            buildFile << publicationBuildWithoutCredentials(version, group, ivyHttpRepo.uri)
    
            if (!extraChecksums) {
                executer.withArgument("-Dorg.gradle.internal.publish.checksums.insecure=true")
                module.withoutExtraChecksums()
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  9. src/hash/crc32/crc32_test.go

    // correct IEEE checksums.
    func testGoldenIEEE(t *testing.T, crcFunc func(b []byte) uint32) {
    	for _, g := range golden {
    		if crc := crcFunc([]byte(g.in)); crc != g.ieee {
    			t.Errorf("IEEE(%s) = 0x%x want 0x%x", g.in, crc, g.ieee)
    		}
    	}
    }
    
    // testGoldenCastagnoli verifies that the given function returns
    // correct IEEE checksums.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. internal/etag/etag.go

    //
    //	 e1 := MD5(part-1)
    //	 e2 := MD5(part-2)
    //	...
    //	 eN := MD5(part-N)
    //
    // Then, the ETag of the object is computed as MD5 of all individual
    // part checksums. S3 also encodes the number of parts into the ETag
    // by appending a -<number-of-parts> at the end:
    //
    //	ETag := MD5(e1 || e2 || e3 ... || eN) || -N
    //
    //	For example: ceb8853ddc5086cc4ab9e149f8f09c88-5
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top