Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 498 for digests (0.17 sec)

  1. src/cmd/internal/notsha256/sha256block_generic.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build purego || (!amd64 && !386 && !ppc64le && !ppc64)
    
    package notsha256
    
    func block(dig *digest, p []byte) {
    	blockGeneric(dig, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 300 bytes
    - Viewed (0)
  2. .github/workflows/sigbuild-docker-presubmit.yml

                
                Re-apply the `build and push to gcr.io for staging` label to rebuild and push again. This comment will only be posted once.
          -
            name: Print image digest
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 18:43:43 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. src/crypto/md5/md5block_generic.go

    // license that can be found in the LICENSE file.
    
    //go:build (!amd64 && !386 && !arm && !ppc64le && !ppc64 && !s390x && !arm64) || purego
    
    package md5
    
    const haveAsm = false
    
    func block(dig *digest, p []byte) {
    	blockGeneric(dig, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 345 bytes
    - Viewed (0)
  4. src/crypto/sha512/sha512block_generic.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (!amd64 && !arm64 && !ppc64 && !ppc64le && !riscv64 && !s390x) || purego
    
    package sha512
    
    func block(dig *digest, p []byte) {
    	blockGeneric(dig, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 321 bytes
    - Viewed (0)
  5. src/compress/gzip/gzip.go

    			if z.err != nil {
    				return 0, z.err
    			}
    		}
    		if z.compressor == nil {
    			z.compressor, _ = flate.NewWriter(z.w, z.level)
    		}
    	}
    	z.size += uint32(len(p))
    	z.digest = crc32.Update(z.digest, crc32.IEEETable, p)
    	n, z.err = z.compressor.Write(p)
    	return n, z.err
    }
    
    // Flush flushes any pending compressed data to the underlying writer.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/strconv/itoa.go

    // as the second result value.
    func formatBits(dst []byte, u uint64, base int, neg, append_ bool) (d []byte, s string) {
    	if base < 2 || base > len(digits) {
    		panic("strconv: illegal AppendInt/FormatInt base")
    	}
    	// 2 <= base && base <= len(digits)
    
    	var a [64 + 1]byte // +1 for sign of 64bit value in base 2
    	i := len(a)
    
    	if neg {
    		u = -u
    	}
    
    	// convert bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbTransport.java

            request.flags2 |= flags2;
            request.useUnicode = useUnicode;
            request.response = response; /* needed by sign */
            if (request.digest == null)
                request.digest = digest; /* for sign called in encode */
    
            try {
                if (response == null) {
                    doSend0( request );
                    return;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 31.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/workerApi/md5NoIsolation/groovy/buildSrc/src/main/java/GenerateMD5.java

    import org.apache.commons.codec.digest.DigestUtils;
    import org.apache.commons.io.FileUtils;
    import org.gradle.workers.WorkAction;
    
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.InputStream;
    
    public abstract class GenerateMD5 implements WorkAction<MD5WorkParameters> { // <1>
        @Override
        public void execute() {
            try {
                File sourceFile = getParameters().getSourceFile().getAsFile().get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 930 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/workerApi/md5ProcessIsolation/groovy/buildSrc/src/main/java/GenerateMD5.java

    import org.apache.commons.codec.digest.DigestUtils;
    import org.apache.commons.io.FileUtils;
    import org.gradle.workers.WorkAction;
    
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.InputStream;
    
    public abstract class GenerateMD5 implements WorkAction<MD5WorkParameters> {
        @Override
        public void execute() {
            try {
                File sourceFile = getParameters().getSourceFile().getAsFile().get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 923 bytes
    - Viewed (0)
  10. src/math/big/decimal.go

    		x.mant[w] = byte(d + '0')
    		w++
    		n = n*10 + ch - '0'
    	}
    
    	// write extra digits that still fit
    	for n > 0 && w < len(x.mant) {
    		d := n >> s
    		n &= mask
    		x.mant[w] = byte(d + '0')
    		w++
    		n = n * 10
    	}
    	x.mant = x.mant[:w] // the number may be shorter (e.g. 1024 >> 10)
    
    	// append additional digits that didn't fit
    	for n > 0 {
    		d := n >> s
    		n &= mask
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 22:45:29 UTC 2020
    - 6.6K bytes
    - Viewed (0)
Back to top