Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 112 for BarTest (0.19 sec)

  1. staging/src/k8s.io/api/storage/v1beta1/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: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K 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. guava/src/com/google/common/io/Files.java

       *
       * @param file the file to read from
       * @return a byte array containing all the bytes from file
       * @throws IllegalArgumentException if the file is bigger than the largest possible byte array
       *     (2^31 - 1)
       * @throws IOException if an I/O error occurs
       */
      public static byte[] toByteArray(File file) throws IOException {
        return asByteSource(file).read();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    	return a.sortAvailableCPUs()
    }
    
    // Sorts the provided list of NUMA nodes/sockets/cores/cpus referenced in 'ids'
    // by the number of available CPUs contained within them (smallest to largest).
    // The 'getCPU()' parameter defines the function that should be called to
    // retrieve the list of available CPUs for the type being referenced. If two
    // NUMA nodes/sockets/cores/cpus have the same number of available CPUs, they
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    === Optimize repository order
    
    When Gradle resolves dependencies, it searches through each repository in the declared order.
    To reduce the time spent searching for dependencies, declare the repository hosting
    the largest number of your dependencies first. This minimizes the number of network requests
    required to resolve all dependencies.
    
    === Minimize repository count
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. src/runtime/mpagealloc.go

    // into memory as needed. The leaf summaries of the tree correspond to a bitmap chunk.
    //
    // The root level (referred to as L0 and index 0 in pageAlloc.summary) has each
    // summary represent the largest section of address space (16 GiB on 64-bit systems),
    // with each subsequent level representing successively smaller subsections until we
    // reach the finest granularity at the leaves, a chunk.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/math/big/int.go

    		z.neg = false
    		return z
    	}
    
    	// ^x == -x-1 == -(x+1)
    	z.abs = z.abs.add(x.abs, natOne)
    	z.neg = true // z cannot be zero if x is positive
    	return z
    }
    
    // Sqrt sets z to ⌊√x⌋, the largest integer such that z² ≤ x, and returns z.
    // It panics if x is negative.
    func (z *Int) Sqrt(x *Int) *Int {
    	if x.neg {
    		panic("square root of negative number")
    	}
    	z.neg = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top