Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for utcoff (0.13 sec)

  1. src/cmd/link/internal/ld/data.go

    	p.w.ZeroUntil(sval / ptrsize)
    	p.w.Append(prog[4:], nptr)
    }
    
    // cutoff is the maximum data section size permitted by the linker
    // (see issue #9862).
    const cutoff = 2e9 // 2 GB (or so; looks better in errors than 2^31)
    
    // check accumulated size of data sections
    func (state *dodataState) checkdatsize(symn sym.SymKind) {
    	if state.datsize > cutoff {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. src/reflect/value.go

    				}
    				typedmemmove(t,
    					add(methodFrame, mStep.stkOff, "precomputed stack offset"),
    					add(valueFrame, vStep.stkOff, "precomputed stack offset"))
    				continue
    			}
    			// Handle stack -> register translation.
    			for _, mStep := range methodSteps {
    				from := add(valueFrame, vStep.stkOff+mStep.offset, "precomputed stack offset")
    				switch mStep.kind {
    				case abiStepPointer:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	TASKSTATS_VERSION                           = 0xe
    	TCIFLUSH                                    = 0x0
    	TCIOFF                                      = 0x2
    	TCIOFLUSH                                   = 0x2
    	TCION                                       = 0x3
    	TCOFLUSH                                    = 0x1
    	TCOOFF                                      = 0x0
    	TCOON                                       = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	{0x00, 0x00, 0x06, 0x47},                  // Plan 9 arm
    	{0x00, 0x61, 0x73, 0x6D},                  // WASM
    	{0x01, 0xDF},                              // XCOFF 32bit
    	{0x01, 0xF7},                              // XCOFF 64bit
    }
    
    func isObject(s string) bool {
    	f, err := os.Open(s)
    	if err != nil {
    		return false
    	}
    	defer f.Close()
    	buf := make([]byte, 64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    		globrunqputhead(pp.runnext.ptr())
    		pp.runnext = 0
    	}
    
    	// Move all timers to the local P.
    	getg().m.p.ptr().timers.take(&pp.timers)
    
    	// Flush p's write barrier buffer.
    	if gcphase != _GCoff {
    		wbBufFlush1(pp)
    		pp.gcw.dispose()
    	}
    	for i := range pp.sudogbuf {
    		pp.sudogbuf[i] = nil
    	}
    	pp.sudogcache = pp.sudogbuf[:0]
    	pp.pinnerCache = nil
    	for j := range pp.deferpoolbuf {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    js.wpenginepowered.com
    
    // Wix.com, Inc. : https://www.wix.com
    // Submitted by Shahar Talmi <******@****.***>
    wixsite.com
    editorx.io
    
    // XenonCloud GbR: https://xenoncloud.net
    // Submitted by Julian Uphoff <******@****.***>
    half.host
    
    // XnBay Technology : http://www.xnbay.com/
    // Submitted by XnBay Developer <******@****.***>
    xnbay.com
    u2.xnbay.com
    u2-local.xnbay.com
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top