Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for maxKey (0.3 sec)

  1. src/archive/tar/common.go

    				format.mustNotBe(FormatPAX)
    			} else {
    				paxHdrs[paxKey] = strconv.FormatInt(n, 10)
    			}
    		}
    		if v, ok := h.PAXRecords[paxKey]; ok && v == strconv.FormatInt(n, 10) {
    			paxHdrs[paxKey] = v
    		}
    	}
    	verifyTime := func(ts time.Time, size int, name, paxKey string) {
    		if ts.IsZero() {
    			return // Always okay
    		}
    		if !fitsInBase256(size, ts.Unix()) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  2. api/go1.16.txt

    pkg syscall (darwin-arm64), const TCP_MAXHLEN ideal-int
    pkg syscall (darwin-arm64), const TCP_MAXOLEN = 40
    pkg syscall (darwin-arm64), const TCP_MAXOLEN ideal-int
    pkg syscall (darwin-arm64), const TCP_MAXSEG = 2
    pkg syscall (darwin-arm64), const TCP_MAXSEG ideal-int
    pkg syscall (darwin-arm64), const TCP_MAXWIN = 65535
    pkg syscall (darwin-arm64), const TCP_MAXWIN ideal-int
    pkg syscall (darwin-arm64), const TCP_MAX_SACK = 4
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  3. api/go1.14.txt

    pkg syscall (freebsd-arm64), const TCP_MAXOLEN = 40
    pkg syscall (freebsd-arm64), const TCP_MAXOLEN ideal-int
    pkg syscall (freebsd-arm64), const TCP_MAXSEG = 2
    pkg syscall (freebsd-arm64), const TCP_MAXSEG ideal-int
    pkg syscall (freebsd-arm64), const TCP_MAXWIN = 65535
    pkg syscall (freebsd-arm64), const TCP_MAXWIN ideal-int
    pkg syscall (freebsd-arm64), const TCP_MD5SIG = 16
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  4. src/archive/zip/reader.go

    		switch fieldTag {
    		case zip64ExtraID:
    			f.zip64 = true
    
    			// update directory values from the zip64 extra block.
    			// They should only be consulted if the sizes read earlier
    			// are maxed out.
    			// See golang.org/issue/13367.
    			if needUSize {
    				needUSize = false
    				if len(fieldBuf) < 8 {
    					return ErrFormat
    				}
    				f.UncompressedSize64 = fieldBuf.uint64()
    			}
    			if needCSize {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 27.7K bytes
    - Viewed (0)
  5. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const TCP_MAXOLEN = 40 #53466
    pkg syscall (freebsd-riscv64), const TCP_MAXOLEN ideal-int #53466
    pkg syscall (freebsd-riscv64), const TCP_MAXSEG = 2 #53466
    pkg syscall (freebsd-riscv64), const TCP_MAXSEG ideal-int #53466
    pkg syscall (freebsd-riscv64), const TCP_MAXWIN = 65535 #53466
    pkg syscall (freebsd-riscv64), const TCP_MAXWIN ideal-int #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/parse.go

    	} else {
    		p.registerListARM(a)
    	}
    }
    
    func (p *Parser) registerListARM(a *obj.Addr) {
    	// One range per loop.
    	var maxReg int
    	var bits uint16
    	var arrangement int64
    	switch p.arch.Family {
    	case sys.ARM:
    		maxReg = 16
    	case sys.ARM64:
    		maxReg = 32
    	default:
    		p.errorf("unexpected register list")
    	}
    	firstReg := -1
    	nextReg := -1
    	regCnt := 0
    ListLoop:
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  7. src/bytes/bytes.go

    			// r is 2 to 4 bytes
    			if len(chars) == width {
    				if chars == string(r) {
    					return i
    				}
    				continue
    			}
    			// Use bytealg.IndexString for performance if available.
    			if bytealg.MaxLen >= width {
    				if bytealg.IndexString(chars, string(r)) >= 0 {
    					return i
    				}
    				continue
    			}
    		}
    		for _, ch := range chars {
    			if r == ch {
    				return i
    			}
    		}
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Feb 19 19:51:15 GMT 2024
    - 33.8K bytes
    - Viewed (0)
Back to top