Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 117 for ErrRange (0.15 sec)

  1. src/runtime/signal_unix.go

    		// causes a memory fault. Don't turn that into a panic.
    		flags = _SigThrow
    	}
    	if !c.sigFromUser() && flags&_SigPanic != 0 {
    		// The signal is going to cause a panic.
    		// Arrange the stack so that it looks like the point
    		// where the signal occurred made a call to the
    		// function sigpanic. Then set the PC to sigpanic.
    
    		// Have to pass arguments out of band since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. src/runtime/time.go

    		// unlock above, and then a t.stop or t.modify changes the timer
    		// and returns. At that point, the send needs not to happen after all.
    		// The way we arrange for it not to happen is that t.stop and t.modify
    		// both increment t.seq while holding both t.mu and t.sendLock.
    		// We copied the seq value above while holding t.mu.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			if !watcher.nonblockingAdd(event) {
    				c.blockedWatchers = append(c.blockedWatchers, watcher)
    			}
    		}
    
    		if len(c.blockedWatchers) > 0 {
    			// dispatchEvent is called very often, so arrange
    			// to reuse timers instead of constantly allocating.
    			startTime := time.Now()
    			timeout := c.dispatchTimeoutBudget.takeAvailable()
    			c.timer.Reset(timeout)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. doc/asm.html

    executing the pseudo-instruction <code>GO_RESULTS_INITIALIZED</code>.
    This instruction records that the results are now initialized
    and should be scanned during stack movement and garbage collection.
    It is typically easier to arrange that assembly functions do not
    return pointers or do not contain call instructions;
    no assembly functions in the standard library use
    <code>GO_RESULTS_INITIALIZED</code>.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  5. src/runtime/asm_386.s

    	MOVL	AX, 0(SP)
    	MOVL	BX, 4(SP)
    	JMP	runtime·rt0_go(SB)
    
    // _rt0_386_lib is common startup code for most 386 systems when
    // using -buildmode=c-archive or -buildmode=c-shared. The linker will
    // arrange to invoke this function as a global constructor (for
    // c-archive) or when the shared library is loaded (for c-shared).
    // We expect argc and argv to be passed on the stack following the
    // usual C ABI.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais2.go

    	if len(tmp) < numLMS {
    		// TestSAIS/forcealloc reaches this code.
    		n := maxID
    		if n < numLMS/2 {
    			n = numLMS / 2
    		}
    		tmp = make([]int64, n)
    	}
    
    	// sais_64 requires that the caller arrange to clear dst,
    	// because in general the caller may know dst is
    	// freshly-allocated and already cleared. But this one is not.
    	clear(dst)
    	sais_64(text, maxID, dst, tmp)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    TEXT main(SB),NOSPLIT,$-8
    	JMP	runtime·rt0_go(SB)
    
    // _rt0_amd64_lib is common startup code for most amd64 systems when
    // using -buildmode=c-archive or -buildmode=c-shared. The linker will
    // arrange to invoke this function as a global constructor (for
    // c-archive) or when the shared library is loaded (for c-shared).
    // We expect argc and argv to be passed in the usual C ABI registers
    // DI and SI.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    		})
    	}
    
    	// Lock the main goroutine onto this, the main OS thread,
    	// during initialization. Most programs won't care, but a few
    	// do require certain calls to be made by the main thread.
    	// Those can arrange for main.main to run in the main thread
    	// by calling runtime.LockOSThread during initialization
    	// to preserve the lock.
    	lockOSThread()
    
    	if mp != &m0 {
    		throw("runtime.main not on m0")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. src/testing/testing.go

    	p := c.parent
    	p.mu.Lock()
    	defer p.mu.Unlock()
    
    	c.mu.Lock()
    	defer c.mu.Unlock()
    
    	if len(c.output) > 0 {
    		// Add the current c.output to the print,
    		// and then arrange for the print to replace c.output.
    		// (This displays the logged output after the --- FAIL line.)
    		format += "%s"
    		args = append(args[:len(args):len(args)], c.output)
    		c.output = c.output[:0]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. api/go1.txt

    pkg strconv, type NumError struct
    pkg strconv, type NumError struct, Err error
    pkg strconv, type NumError struct, Func string
    pkg strconv, type NumError struct, Num string
    pkg strconv, var ErrRange error
    pkg strconv, var ErrSyntax error
    pkg strings, func Contains(string, string) bool
    pkg strings, func ContainsAny(string, string) bool
    pkg strings, func ContainsRune(string, int32) bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top