Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 566 for checkPub (0.13 sec)

  1. src/crypto/sha512/sha512.go

    }
    
    const (
    	// Size is the size, in bytes, of a SHA-512 checksum.
    	Size = 64
    
    	// Size224 is the size, in bytes, of a SHA-512/224 checksum.
    	Size224 = 28
    
    	// Size256 is the size, in bytes, of a SHA-512/256 checksum.
    	Size256 = 32
    
    	// Size384 is the size, in bytes, of a SHA-384 checksum.
    	Size384 = 48
    
    	// BlockSize is the block size, in bytes, of the SHA-512/224,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/ChecksumEntry.java

            return result;
        }
    
        ChecksumKind getChecksumKind() {
            return checksumKind;
        }
    
        public String getChecksum() {
            return checksum;
        }
    
        public void setChecksum(String checksum) {
            this.checksum = checksum;
        }
    
        @Override
        int getOrder() {
            return checksumKind.ordinal();
        }
    
        @Override
        public boolean equals(Object o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. src/crypto/sha256/sha256.go

    	}
    
    	return digest
    }
    
    // Sum256 returns the SHA256 checksum of the data.
    func Sum256(data []byte) [Size]byte {
    	if boring.Enabled {
    		return boring.SHA256(data)
    	}
    	var d digest
    	d.Reset()
    	d.Write(data)
    	return d.checkSum()
    }
    
    // Sum224 returns the SHA224 checksum of the data.
    func Sum224(data []byte) [Size224]byte {
    	if boring.Enabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/RemoteSourceDependencyIntegrationTest.groovy

                    }
                }
            """
            repoB.createBranch('release')
            repoB.checkout('release')
            repoB.commit('version 1.2')
            repoB.createLightWeightTag('1.2')
            repoC.createBranch('release')
            repoC.checkout('release')
            repoC.commit('version 1.2')
            repoC.createLightWeightTag('1.2')
            createDirs("a", "b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. cmd/bitrot.go

    			hash.Write(msg)
    			sum = hash.Sum(sum[:0])
    			msg = append(msg, sum...)
    			hash.Reset()
    		}
    		if !bytes.Equal(sum, checksum) {
    			logger.Fatal(errSelfTestFailure, fmt.Sprintf("bitrot: %v selftest checksum mismatch: got %x - want %x", algorithm, sum, checksum))
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/hash/crc64/crc64.go

    }
    
    // Checksum returns the CRC-64 checksum of data
    // using the polynomial represented by the [Table].
    func Checksum(data []byte, tab *Table) uint64 { return update(0, tab, data) }
    
    // tableSum returns the ISO checksum of table t.
    func tableSum(t *Table) uint64 {
    	var a [2048]byte
    	b := a[:0]
    	if t != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. internal/etag/reader.go

    	r.md5.Write(p[:n])
    
    	if err == io.EOF && len(r.checksum) != 0 {
    		if etag := r.ETag(); !Equal(etag, r.checksum) {
    			return n, VerifyError{
    				Expected: r.checksum,
    				Computed: etag,
    			}
    		}
    	}
    	return n, err
    }
    
    // ETag returns the ETag of all the content read
    // so far. Reading more content changes the MD5
    // checksum. Therefore, calling ETag multiple
    // times may return different results.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. internal/http/headers.go

    	MinIOServerStatus = "x-minio-server-status"
    
    	// Content Checksums
    	AmzChecksumAlgo   = "x-amz-checksum-algorithm"
    	AmzChecksumCRC32  = "x-amz-checksum-crc32"
    	AmzChecksumCRC32C = "x-amz-checksum-crc32c"
    	AmzChecksumSHA1   = "x-amz-checksum-sha1"
    	AmzChecksumSHA256 = "x-amz-checksum-sha256"
    	AmzChecksumMode   = "x-amz-checksum-mode"
    
    	// Delete special flag to force delete a bucket or a prefix
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriteDependencyVerificationFile.java

            for (String checksum : checksums) {
                if (!SUPPORTED_CHECKSUMS.contains(checksum)) {
                    // we cannot throw an exception at this stage because this happens too early
                    // in the build and the user feedback isn't great ("cannot create service blah!")
                    LOGGER.warn("Invalid checksum type: '" + checksum + "'. You must choose one or more in " + SUPPORTED_CHECKSUMS);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  10. .github/workflows/codeql-analysis.yml

        steps:
        - name: Checkout repository
          uses: actions/checkout@v2
          with:
            # We must fetch at least the immediate parents so that if this is
            # a pull request then we can checkout the head.
            fetch-depth: 2
    
        # If this run was triggered by a pull request event, then checkout
        # the head of the pull request instead of the merge commit.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Oct 02 13:22:07 UTC 2020
    - 2.5K bytes
    - Viewed (0)
Back to top