Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 93 of 93 for Canonicalize (0.97 sec)

  1. cmd/erasure-multipart.go

    			invp := InvalidPart{
    				PartNumber: part.PartNumber,
    				GotETag:    part.ETag,
    			}
    			return oi, invp
    		}
    		expPart := currentFI.Parts[partIdx]
    
    		// ensure that part ETag is canonicalized to strip off extraneous quotes
    		part.ETag = canonicalizeETag(part.ETag)
    		expETag := tryDecryptETag(objectEncryptionKey, expPart.ETag, kind == crypto.S3)
    		if expETag != part.ETag {
    			invp := InvalidPart{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    }
    
    // Parse parses and returns a go.mod file.
    //
    // file is the name of the file, used in positions and errors.
    //
    // data is the content of the file.
    //
    // fix is an optional function that canonicalizes module versions.
    // If fix is nil, all module versions must be canonical ([module.CanonicalVersion]
    // must return the same string).
    func Parse(file string, data []byte, fix VersionFixer) (*File, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  3. src/net/netip/netip.go

    	// operations on 64-bit registers, which is much faster than
    	// bytewise processing.
    	addr uint128
    
    	// Details about the address, wrapped up together and canonicalized.
    	z unique.Handle[addrDetail]
    }
    
    // addrDetail represents the details of an Addr, like address family and IPv6 zone.
    type addrDetail struct {
    	IsV6   bool   // IPv4 is false, IPv6 is true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top