Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 131 for checkOuts (0.23 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest.groovy

       - some signature verification failed. Checksums were generated for those artifacts but you MUST check if there's an actual problem. Look for entries with the following comment: PGP verification failed
    """
        }
    
        // plugins do not publish signatures so we expect the checksums to be present
        def "writes checksums of plugins using plugins block"() {
            given:
            addPlugin()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  2. cmd/erasure-multipart.go

    		LastModified:   partInfo.ModTime,
    		Size:           partInfo.Size,
    		ActualSize:     partInfo.ActualSize,
    		ChecksumCRC32:  partInfo.Checksums["CRC32"],
    		ChecksumCRC32C: partInfo.Checksums["CRC32C"],
    		ChecksumSHA1:   partInfo.Checksums["SHA1"],
    		ChecksumSHA256: partInfo.Checksums["SHA256"],
    	}, nil
    }
    
    // GetMultipartInfo returns multipart metadata uploaded during newMultipartUpload, used
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

                    .longOpt("strict-checksums")
                    .desc("Fail the build if checksums don't match")
                    .build());
            options.addOption(Option.builder(Character.toString(CHECKSUM_WARNING_POLICY))
                    .longOpt("lax-checksums")
                    .desc("Warn if checksums don't match")
                    .build());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         * list.
         *
         * @since 6.1
         */
        public List<String> getWriteDependencyVerifications() {
            return writeDependencyVerifications;
        }
    
        /**
         * Tells if a dependency verification metadata file should be written at the end
         * of this build.
         *
         * @param checksums the list of checksums to generate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    [listing]
    ----
    name: Build Gradle project
    
    on:
      push:
    
    jobs:
      build-gradle-project:
        runs-on: ubuntu-latest
        steps:
        - name: Checkout project sources
          uses: actions/checkout@v4
    
        - name: Setup Gradle
          uses: gradle/actions/setup-gradle@v3
          with:
            build-scan-publish: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    Gradle also publishes the link:https://gradle.org/release-checksums/[checksums of all releases] (except for version 3.3 to 4.0.2, which did not generate reproducible JARs), so you can manually verify the integrity of the Wrapper JAR.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcs/vcs.go

    	if i < 0 {
    		return Status{}, errFossilInfo
    	}
    	checkout = strings.TrimSpace(checkout[:i])
    
    	i = strings.IndexByte(checkout, ' ')
    	if i < 0 {
    		return Status{}, errFossilInfo
    	}
    	rev := checkout[:i]
    
    	commitTime, err := time.ParseInLocation(time.DateTime, checkout[i+1:], time.UTC)
    	if err != nil {
    		return Status{}, fmt.Errorf("%v: %v", errFossilInfo, err)
    	}
    
    	// Also look for untracked changes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  8. cmd/erasure-metadata.go

    	partInfo := ObjectPartInfo{
    		Number:     partNumber,
    		ETag:       partETag,
    		Size:       partSize,
    		ActualSize: actualSize,
    		ModTime:    modTime,
    		Index:      idx,
    		Checksums:  checksums,
    	}
    
    	// Update part info if it already exists.
    	for i, part := range fi.Parts {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. cmd/erasure-healing-common_test.go

    				Index:      []uint8(nil),
    				Checksums:  map[string]string(nil),
    			},
    		},
    		Erasure: ErasureInfo{
    			Algorithm:    "ReedSolomon",
    			DataBlocks:   6,
    			ParityBlocks: 6,
    			BlockSize:    1048576,
    			Index:        1,
    			Distribution: []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12},
    			Checksums:    []ChecksumInfo{{PartNumber: 1, Algorithm: 0x3, Hash: []uint8{}}},
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 23K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/action/BuildActionSerializer.java

                startParameter.setWriteDependencyLocks(decoder.readBoolean());
                List<String> checksums = stringListSerializer.read(decoder);
                if (!checksums.isEmpty()) {
                    startParameter.setWriteDependencyVerifications(checksums);
                }
                startParameter.setDependencyVerificationMode(DependencyVerificationMode.valueOf(decoder.readString()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 30.1K bytes
    - Viewed (0)
Back to top