Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,108 for Amount (0.19 sec)

  1. pkg/kubelet/winstats/perfcounter_nodestats.go

    	// 2. On Linux node, total physical memory is read from MemTotal in /proc/meminfo.
    	// GlobalMemoryStatusEx returns the amount of physical memory that is available
    	// for the operating system to use. The amount returned by GlobalMemoryStatusEx
    	// is closer in parity with Linux
    	// https://www.kernel.org/doc/Documentation/filesystems/proc.txt
    	var statex MemoryStatusEx
    	statex.Length = uint32(unsafe.Sizeof(statex))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pkg/kubelet/util/ioutils/ioutils.go

    // The underlying implementation is a *LimitedWriter.
    func LimitWriter(w io.Writer, n int64) io.Writer { return &LimitedWriter{w, n} }
    
    // A LimitedWriter writes to W but limits the amount of
    // data returned to just N bytes. Each call to Write
    // updates N to reflect the new amount remaining.
    // Write returns EOF when N <= 0 or when the underlying W returns EOF.
    type LimitedWriter struct {
    	W io.Writer // underlying writer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 12:00:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MemoryManager.java

         */
        void removeMemoryHolder(MemoryHolder holder);
    
        /**
         * Request an amount of free system memory.
         *
         * Attempt to free as much memory as possible to get {@literal memoryAmountBytes}
         * of free memory available on the system.
         *
         * @param memoryAmountBytes The requested amount of memory in bytes. If negative, {@literal 0} is assumed.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/quantization/numerical_utils.cc

    //
    // Args:
    //   double_multiplier: The double-precision floating-point multiplier.
    //
    // Returns:
    //   A quantized multiplier, represented as a pair of integers: the quantized
    //   multiplier and the shift amount. The shift amount is the number of bits
    //   that the quantized multiplier should be shifted to the right before being
    //   used.
    QuantizedMultiplier QuantizeMultiplier(double double_multiplier) {
      if (double_multiplier < 1e-6) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 19:57:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/functional/src/main/java/org/gradle/internal/time/TimestampSuppliers.java

     *
     * @since 8.0
     */
    public class TimestampSuppliers {
        /**
         * Returns a supplier that calculates a timestamp exactly the given amount of time
         * prior to the current time, or 0 if the amount of time extends beyond the epoch.
         */
        public static Supplier<Long> inThePast(int value, TimeUnit timeUnit) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/helpers_linux.go

    	// CFS quota is measured in two values:
    	//  - cfs_period_us=100ms (the amount of time to measure usage across)
    	//  - cfs_quota=20ms (the amount of cpu time allowed to be used across a period)
    	// so in the above example, you are limited to 20% of a single CPU
    	// for multi-cpu environments, you just scale equivalent amounts
    	// see https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt for details
    	if milliCPU == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/ResultSpecification.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance
    
    import org.gradle.performance.measure.Amount
    import org.gradle.performance.measure.Duration
    import org.gradle.performance.measure.MeasuredOperation
    import org.gradle.performance.results.BuildDisplayInfo
    import org.gradle.performance.results.CrossBuildPerformanceResults
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/config/types.go

    	SecondaryNodeEvictionRate float32
    	// nodeStartupGracePeriod is the amount of time which we allow starting a node to
    	// be unresponsive before marking it unhealthy.
    	NodeStartupGracePeriod metav1.Duration
    	// NodeMonitorGracePeriod is the amount of time which we allow a running node to be
    	// unresponsive before marking it unhealthy. Must be N times more than kubelet's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 18:14:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/arm64error.s

    	MOVWU	(R5)(R4.UXTW<<3), R10                            // ERROR "invalid index shift amount"
    	MOVWU	(R5)(R4<<1), R10                                 // ERROR "invalid index shift amount"
    	MOVB	(R5)(R4.SXTW<<5), R10                            // ERROR "invalid index shift amount"
    	MOVH	R5, (R6)(R2<<3)                                  // ERROR "invalid index shift amount"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/container_manager.go

    	// GetNodeAllocatableReservation returns the amount of compute resources that have to be reserved from scheduling.
    	GetNodeAllocatableReservation() v1.ResourceList
    
    	// GetCapacity returns the amount of compute resources tracked by container manager available on the node.
    	GetCapacity(localStorageCapacityIsolation bool) v1.ResourceList
    
    	// GetDevicePluginResourceCapacity returns the node capacity (amount of total device plugin resources),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top