Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for maxKey (0.2 sec)

  1. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), const TCP_MAXBURST = 4
    pkg syscall (netbsd-arm64-cgo), const TCP_MAXBURST ideal-int
    pkg syscall (netbsd-arm64-cgo), const TCP_MAXSEG = 2
    pkg syscall (netbsd-arm64-cgo), const TCP_MAXSEG ideal-int
    pkg syscall (netbsd-arm64-cgo), const TCP_MAXWIN = 65535
    pkg syscall (netbsd-arm64-cgo), const TCP_MAXWIN ideal-int
    pkg syscall (netbsd-arm64-cgo), const TCP_MAX_WINSHIFT = 14
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. api/go1.txt

    pkg syscall (windows-386), const KEY_WRITE ideal-int
    pkg syscall (windows-386), const LANG_ENGLISH ideal-int
    pkg syscall (windows-386), const MAXLEN_IFDESCR ideal-int
    pkg syscall (windows-386), const MAXLEN_PHYSADDR ideal-int
    pkg syscall (windows-386), const MAX_ADAPTER_ADDRESS_LENGTH ideal-int
    pkg syscall (windows-386), const MAX_ADAPTER_DESCRIPTION_LENGTH ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. api/go1.1.txt

    pkg syscall (windows-386), const KEY_WOW64_64KEY = 256
    pkg syscall (windows-386), const KEY_WRITE = 131078
    pkg syscall (windows-386), const LANG_ENGLISH = 9
    pkg syscall (windows-386), const MAXLEN_IFDESCR = 256
    pkg syscall (windows-386), const MAXLEN_PHYSADDR = 8
    pkg syscall (windows-386), const MAX_ADAPTER_ADDRESS_LENGTH = 8
    pkg syscall (windows-386), const MAX_ADAPTER_DESCRIPTION_LENGTH = 128
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top