Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for BarTest (0.2 sec)

  1. staging/src/k8s.io/api/storage/v1/types.go

    	// for a GetCapacityRequest with topology and parameters that match the
    	// previous fields.
    	//
    	// This is defined since CSI spec 1.4.0 as the largest size
    	// that may be used in a
    	// CreateVolumeRequest.capacity_range.required_bytes field to
    	// create a volume with the same parameters as those in
    	// GetCapacityRequest. The corresponding value in the Kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. src/runtime/mstats.go

    	// address space for which the physical memory has been
    	// returned to the OS after it became unused (see HeapReleased
    	// for a measure of the latter).
    	//
    	// HeapSys estimates the largest size the heap has had.
    	HeapSys uint64
    
    	// HeapIdle is bytes in idle (unused) spans.
    	//
    	// Idle spans have no objects in them. These spans could be
    	// (and may already have been) returned to the OS, or they can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. src/runtime/mgcsweep.go

    //   sweepone, which looks at all the mcentral lists.
    //
    // * The span reclaimer looks for spans that contain no marked objects
    //   and frees whole spans. This is a separate algorithm because
    //   freeing whole spans is the hardest task for the object reclaimer,
    //   but is critical when allocating new spans. The entry point for
    //   this is mheap_.reclaim and it's driven by a sequential scan of
    //   the page marks bitmap in the heap arenas.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. src/math/big/nat.go

    				addVW(z[j:], z[j:], c)
    			}
    		}
    	}
    }
    
    // karatsubaLen computes an approximation to the maximum k <= n such that
    // k = p<<i for a number p <= threshold and an i >= 0. Thus, the
    // result is the largest number that can be divided repeatedly by 2 before
    // becoming about the value of threshold.
    func karatsubaLen(n, threshold int) int {
    	i := uint(0)
    	for n > threshold {
    		n >>= 1
    		i++
    	}
    	return n << i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    			// Changes to either Spec or Status are relevant.  The
    			// concern is that we might, in some future release, want
    			// different behavior than is implemented now. One of the
    			// hardest questions is how does an operator roll out the
    			// new release in a cluster with multiple kube-apiservers
    			// --- in a way that works no matter what servers crash
    			// and restart when. If this handler reacts only to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		// TODO: If vector registers are managed by regalloc
    		// mark these as clobbered.
    		//
    		// Bytes not moved by this loop are moved
    		// with a combination of the following instructions,
    		// starting with the largest sizes and generating as
    		// many as needed, using the appropriate offset value.
    		//	MOVD  n(R4),R14
    		//	MOVD  R14,n(R3)
    		//	MOVW  n1(R4),R14
    		//	MOVW  R14,n1(R3)
    		//	MOVH  n2(R4),R14
    		//	MOVH  R14,n2(R3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  7. src/internal/trace/internal/oldtrace/parser.go

    	// up with the correct number, but it doesn't matter, because EvBatch has
    	// custom logic for parsing.
    	//
    	// Note that because we're adding 1, inlineArgs == 3 describes the largest
    	// number of logical arguments that isn't length-prefixed, even though the
    	// value 3 on the wire indicates length-prefixing. For us, that becomes narg
    	// == 4.
    	narg := b>>6 + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top