Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for little32 (0.23 sec)

  1. src/runtime/malloc.go

    		procBrk := sbrk0()
    
    		// If we ask for the end of the data segment but the
    		// operating system requires a little more space
    		// before we can start allocating, it will give out a
    		// slightly higher pointer. Except QEMU, which is
    		// buggy, as usual: it won't adjust the pointer
    		// upward. So adjust it upward a little bit ourselves:
    		// 1/4 MB to get away from the running binary image.
    		p := firstmoduledata.end
    		if p < procBrk {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    // runtime from type metadata for all larger objects. Objects without
    // pointers have neither a bitmap nor associated type metadata.
    //
    // Bits in all cases correspond to words in little-endian order.
    //
    // For small objects, if s is the mspan for the span starting at "start",
    // then s.heapBits() returns a slice containing the bitmap for the whole span.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. .bazelrc

    # On windows, we still link everything into a single DLL.
    build:windows --config=monolithic
    
    # On linux, we dynamically link small amount of kernels
    build:linux --config=dynamic_kernels
    
    # Make sure to include as little of windows.h as possible
    build:windows --copt=-DWIN32_LEAN_AND_MEAN
    build:windows --host_copt=-DWIN32_LEAN_AND_MEAN
    build:windows --copt=-DNOGDI
    build:windows --host_copt=-DNOGDI
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server.go

    			if !ok || s.Code() != codes.Unimplemented {
    				// We could introduce a backoff delay or jitter, but this is largely catching cases
    				// where the runtime is still starting up and we request too early.
    				// Give it a little more time.
    				time.Sleep(time.Second * 2)
    				continue
    			}
    			// CRI implementation doesn't support RuntimeConfig, fallback
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    	// Handle tasks. Tasks are interesting because:
    	// - There's no Begin event required to reference a task.
    	// - End for a particular task ID can appear multiple times.
    	// As a result, there's very little to validate. The only
    	// thing we have to be sure of is that a task didn't begin
    	// after it had already begun. Task IDs are allowed to be
    	// reused, so we don't care about a Begin after an End.
    	id := TaskID(ev.args[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug.go

    //
    // It is important to know that the set representation used for
    // startState, endState, and merges can share data for two sets where
    // one is a small delta from the other.  Doing this does require a
    // little care in how sets are updated, both in mergePredecessors, and
    // using its result.
    func (state *debugState) mergePredecessors(b *Block, blockLocs []*BlockDebug, previousBlock *Block, forLocationLists bool) (abt.T, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    	deleteTicket()
    	testResumeState("GetFreshSessionTicket", false)
    	for i := 0; i < 13; i++ {
    		d += 12 * time.Hour
    		testResumeState("OldSessionTicket", true)
    	}
    	// Expire it (now a little more than 7 days) and make sure a full
    	// handshake occurs for TLS 1.2. Resumption should still occur for
    	// TLS 1.3 since the client should be using a fresh ticket sent over
    	// by the server.
    	d += 12 * time.Hour
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    			expected: [][]candidate{
    				{
    					// Even though the DefaultPreemptionArgs constraints suggest that the
    					// minimum number of candidates is 2, we get three candidates here
    					// because we're okay with being a little over (in production, if a
    					// non-PDB violating candidate isn't found close to the offset, the
    					// number of additional candidates returned will be at most
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/cgo/gcc.go

    			C:     tr,
    		}
    	case *dwarf.TypedefType:
    		// C has much more relaxed rules than Go for
    		// implicit type conversions. When the parameter
    		// is type T defined as *X, simulate a little of the
    		// laxness of C by making the argument *X instead of T.
    		if ptr, ok := base(dt.Type).(*dwarf.PtrType); ok {
    			// Unless the typedef happens to point to void* since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top