Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 120 for checkdup (0.4 sec)

  1. src/internal/zstd/zstd.go

    	// Scratch space used for small reads, to avoid allocation.
    	scratch [16]byte
    
    	// A scratch table for reading an FSE. Only temporarily valid.
    	fseScratch []fseEntry
    
    	// For checksum computation.
    	checksum xxhash64
    }
    
    // NewReader creates a new Reader that decompresses data from the given reader.
    func NewReader(input io.Reader) *Reader {
    	r := new(Reader)
    	r.Reset(input)
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. pkg/volume/git_repo/git_repo_test.go

    					},
    				},
    			},
    			expecteds: []expectedCommand{
    				{
    					cmd: []string{"git", "clone", "--", gitURL, "target_dir"},
    					dir: "",
    				},
    				{
    					cmd: []string{"git", "checkout", revision},
    					dir: "/target_dir",
    				},
    				{
    					cmd: []string{"git", "reset", "--hard"},
    					dir: "/target_dir",
    				},
    			},
    			isExpectedFailure: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 08:26:26 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/fetch.go

    		base.Fatalf("%s", err)
    	}
    }
    
    // goModSum returns the checksum for the go.mod contents.
    func goModSum(data []byte) (string, error) {
    	return dirhash.Hash1([]string{"go.mod"}, func(string) (io.ReadCloser, error) {
    		return io.NopCloser(bytes.NewReader(data)), nil
    	})
    }
    
    // checkGoMod checks the given module's go.mod checksum;
    // data is the go.mod content.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publisher/AbstractMavenPublisher.java

                    if (LOGGER.isDebugEnabled()) {
                        LOGGER.warn("Cannot upload checksum for " + content.getName() + " because the remote repository doesn't support " + hashFunction + ". This will not fail the build.", ex);
                    } else {
                        LOGGER.warn("Cannot upload checksum for " + content.getName() + " because the remote repository doesn't support " + hashFunction + ". This will not fail the build.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:20:56 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. cmd/object-api-datatypes.go

    		VersionPurgeStatus:         ri.VersionPurgeStatus,
    		VersionPurgeStatusInternal: ri.VersionPurgeStatusInternal,
    		DeleteMarker:               true,
    		UserDefined:                map[string]string{},
    		Checksum:                   ri.Checksum,
    	}
    }
    
    // ReplicateObjectInfo represents object info to be replicated
    type ReplicateObjectInfo struct {
    	Name                       string
    	Bucket                     string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

            def (group, name, version) = id.split(":")
            declareChecksumOfArtifact(group, name, version, "jar", "jar", null, algorithm, checksum, origin)
        }
    
        private declareChecksumOfArtifact(String group, String name, version, String type, String ext, String classifier, String algorithm, String checksum, String origin = null, String reason = null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  7. cmd/erasure-multipart.go

    		checksumType |= hash.ChecksumMultipart | hash.ChecksumIncludesMultipart
    		var cs *hash.Checksum
    		cs = hash.NewChecksumFromData(checksumType, checksumCombined)
    		fi.Checksum = cs.AppendTo(nil, checksumCombined)
    		if opts.EncryptFn != nil {
    			fi.Checksum = opts.EncryptFn("object-checksum", fi.Checksum)
    		}
    	}
    	delete(fi.Metadata, hash.MinIOMultipartChecksum) // Not needed in final object.
    
    	// Save the final object size and modtime.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. docs/site-replication/run-ssec-object-replication.sh

    if [ "${src_obj1_md5}" != "${rep_obj1_md5}" ]; then
    	echo "BUG: MD5 checksum of object 'minio2/test-bucket/encrypted' doesn't match with source. Expected: '${src_obj1_md5}', Found: '${rep_obj1_md5}'"
    	exit_1
    fi
    if [ "${src_obj2_md5}" != "${rep_obj2_md5}" ]; then
    	echo "BUG: MD5 checksum of object 'minio2/test-bucket/defpartsize' doesn't match with source. Expected: '${src_obj2_md5}', Found: '${rep_obj2_md5}'"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationMutationIntegrationTest.groovy

            when:
            buildFile << """
    configurations.compile.withDependencies {
        throw new RuntimeException("Bad user code")
    }
    """
    
            then:
            resolve.prepare()
            fails ":checkDeps"
    
            failure.assertHasCause("Bad user code")
        }
    
        @ToBeFixedForConfigurationCache(because = "task uses Configuration API")
        def "cannot add withDependencies rule after configuration has been used"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:56 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. 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)
Back to top