Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for original (0.17 sec)

  1. src/go/doc/reader.go

    		switch {
    		case m.Decl == nil:
    			// exclude conflict entry
    		case allMethods, m.Level == 0, !token.IsExported(removeStar(m.Orig)):
    			// forced inclusion, method not embedded, or method
    			// embedded but original receiver type not exported
    			list[i] = m
    			i++
    		}
    	}
    	list = list[0:i]
    	slices.SortFunc(list, func(a, b *Func) int {
    		return strings.Compare(a.Name, b.Name)
    	})
    	return list
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. src/archive/tar/reader.go

    }
    
    // mergePAX merges paxHdrs into hdr for all relevant fields of Header.
    func mergePAX(hdr *Header, paxHdrs map[string]string) (err error) {
    	for k, v := range paxHdrs {
    		if v == "" {
    			continue // Keep the original USTAR value
    		}
    		var id64 int64
    		switch k {
    		case paxPath:
    			hdr.Name = v
    		case paxLinkpath:
    			hdr.Linkname = v
    		case paxUname:
    			hdr.Uname = v
    		case paxGname:
    			hdr.Gname = v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  3. src/image/jpeg/reader.go

    	// we assume that it is YCbCrK. This matches libjpeg's jdapimin.c.
    	if d.adobeTransform != adobeTransformUnknown {
    		// Convert the YCbCr part of the YCbCrK to RGB, invert the RGB to get
    		// CMY, and patch in the original K. The RGB to CMY inversion cancels
    		// out the 'Adobe inversion' described in the applyBlack doc comment
    		// above, so in practice, only the fourth channel (black) is inverted.
    		bounds := d.img3.Bounds()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
Back to top