Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for room (0.09 sec)

  1. src/runtime/mheap.go

    	// and is otherwise unrelated to h.curArena.base.
    	end := h.curArena.base + ask
    	nBase := alignUp(end, physPageSize)
    	if nBase > h.curArena.end || /* overflow */ end < h.curArena.base {
    		// Not enough room in the current arena. Allocate more
    		// arena space. This may not be contiguous with the
    		// current arena, so we have to request the full ask.
    		av, asize := h.sysAlloc(ask, &h.arenaHints, true)
    		if av == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/lib.go

    	// text size is smaller than TrampLimit, we won't need to insert trampolines.
    	// It is pretty close to the offset range of a direct CALL machine instruction.
    	// We leave some room for extra stuff like PLT stubs.
    	TrampLimit uint64
    
    	// Empty spaces between codeblocks will be padded with this value.
    	// For example an architecture might want to pad with a trap instruction to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			Status:  metav1.StatusFailure,
    			Message: err.Error(),
    			Reason:  metav1.StatusReasonInternalError,
    			Code:    http.StatusInternalServerError,
    		}
    	}
    
    	// Create a watcher with room for a single event, populate it, and close the channel
    	watcher := &errWatcher{result: make(chan watch.Event, 1)}
    	watcher.result <- errEvent
    	close(watcher.result)
    
    	return watcher
    }
    
    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. src/crypto/tls/conn.go

    			payloadBytes -= c.out.mac.Size()
    		case cipher.AEAD:
    			payloadBytes -= ciph.Overhead()
    		case cbcMode:
    			blockSize := ciph.BlockSize()
    			// The payload must fit in a multiple of blockSize, with
    			// room for at least one padding byte.
    			payloadBytes = (payloadBytes & ^(blockSize - 1)) - 1
    			// The MAC is appended before padding so affects the
    			// payload size directly.
    			payloadBytes -= c.out.mac.Size()
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/time/time_test.go

    	// divisors of Second
    	f1 := func(ti int64, tns int32, logdi int32) bool {
    		d := Duration(1)
    		a, b := uint(logdi%9), (logdi>>16)%9
    		d <<= a
    		for i := 0; i < int(b); i++ {
    			d *= 5
    		}
    
    		// Make room for unix ↔ internal conversion.
    		// We don't care about behavior too close to ± 2^63 Unix seconds.
    		// It is full of wraparounds but will never happen in a reasonable program.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  6. src/time/time.go

    			// print nanoseconds
    			prec = 0
    			buf[w] = 'n'
    		case u < uint64(Millisecond):
    			// print microseconds
    			prec = 3
    			// U+00B5 'µ' micro sign == 0xC2 0xB5
    			w-- // Need room for two bytes.
    			copy(buf[w:], "µ")
    		default:
    			// print milliseconds
    			prec = 6
    			buf[w] = 'm'
    		}
    		w, u = fmtFrac(buf[:w], u, prec)
    		w = fmtInt(buf[:w], u)
    	} else {
    		w--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. src/runtime/mgcscavenge.go

    		// Tuned loosely via Ziegler-Nichols process.
    		kp: 0.3375,
    		ti: 3.2e6,
    		tt: 1e9, // 1 second reset time.
    
    		// These ranges seem wide, but we want to give the controller plenty of
    		// room to hunt for the optimal value.
    		min: 0.001,  // 1:1000
    		max: 1000.0, // 1000:1
    	}
    	s.sleepRatio = startingScavSleepRatio
    
    	// Install real functions if stubs aren't present.
    	if s.scavenge == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

          navigates directly to section anchors.
         */
    	#content h2[id],
    	#content h3[id],
    	#content h4[id],
    	#content h5[id] {
    		padding-top: 60px;
    	}
    
    	#content h2[id] {
    		/* Little extra room above h2s */
    		margin-top: -1em;
    	}
    
    	#content h3[id],
    	#content h4[id],
    	#content h5[id] {
    		margin-top: -60px;
    	}
    
    	.site-header__navigation {
    		flex-direction: row;
    	}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. src/runtime/pprof/pprof_test.go

    			t.Fatalf("profile did not contain nanoseconds sample")
    		}
    		total := int64(0)
    		for _, s := range p.Sample {
    			total += s.Value[i]
    		}
    		// Want d to be at least N*D, but give some wiggle-room to avoid
    		// a test flaking. Set an upper-bound proportional to the total
    		// wall time spent in blockMutexN. Generally speaking, the total
    		// contention time could be arbitrarily high when considering
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  10. src/runtime/asm_amd64.s

    	MOVQ	DX, SP
    	RET
    
    // asmcgocall_landingpad calls AX with BX as argument.
    // Must be called on the system stack.
    TEXT ·asmcgocall_landingpad(SB),NOSPLIT,$0-0
    #ifdef GOOS_windows
    	// Make sure we have enough room for 4 stack-backed fast-call
    	// registers as per Windows amd64 calling convention.
    	ADJSP	$32
    	// On Windows, asmcgocall_landingpad acts as landing pad for exceptions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
Back to top