Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 432 for Amount (0.15 sec)

  1. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (Cvt64Fto32F ...) => (F32DemoteF64 ...)
    
    (CvtBoolToUint8 ...) => (Copy ...)
    
    (Round32F ...) => (Copy ...)
    (Round64F ...) => (Copy ...)
    
    // Lowering shifts
    // Unsigned shifts need to return 0 if shift amount is >= width of shifted value.
    
    (Lsh64x64 x y) && shiftIsBounded(v) => (I64Shl x y)
    (Lsh64x64 x (I64Const [c])) && uint64(c) < 64 => (I64Shl x (I64Const [c]))
    (Lsh64x64 x (I64Const [c])) && uint64(c) >= 64 => (I64Const [0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. src/runtime/mranges.go

    	return offAddr{a: l.a + bytes}
    }
    
    // sub subtracts a uintptr offset from the offAddr.
    func (l offAddr) sub(bytes uintptr) offAddr {
    	return offAddr{a: l.a - bytes}
    }
    
    // diff returns the amount of bytes in between the
    // two offAddrs.
    func (l1 offAddr) diff(l2 offAddr) uintptr {
    	return l1.a - l2.a
    }
    
    // lessThan returns true if l1 is less than l2 in the offset
    // address space.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/RateLimiter.java

          return doGetRate();
        }
      }
    
      abstract double doGetRate();
    
      /**
       * Acquires a single permit from this {@code RateLimiter}, blocking until the request can be
       * granted. Tells the amount of time slept, if any.
       *
       * <p>This method is equivalent to {@code acquire(1)}.
       *
       * @return time spent sleeping to enforce rate, in seconds; 0.0 if not rate-limited
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/replica_calculator.go

    	return replicaCount, usage, timestamp, err
    }
    
    // getUsageRatioReplicaCount calculates the desired replica count based on usageRatio and ready pods count.
    // For currentReplicas=0 doesn't take into account ready pods count and tolerance to support scaling to zero pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/types.go

    	// the memory manager will assume that only 9Gi is available for allocation.
    	// You can specify a different amount of NUMA node and memory types.
    	// You can omit this parameter at all, but you should be aware that the amount of reserved memory from all NUMA nodes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/pod_container_manager_linux.go

    	// If a pod cgroup exists in even a single subsystem mount
    	// we will attempt to delete it
    	for _, val := range m.subsystems.MountPoints {
    		for _, qosContainerName := range qosContainersList {
    			// get the subsystems QoS cgroup absolute name
    			qcConversion := m.cgroupManager.Name(qosContainerName)
    			qc := path.Join(val, qcConversion)
    			dirInfo, err := os.ReadDir(qc)
    			if err != nil {
    				if os.IsNotExist(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        }
      }
    
      /**
       * This neat test shows that no matter what weights we use in our requests, if we push X amount of
       * permits in a cool state, where X = rate * timeToCoolDown, and we have specified a
       * timeToWarmUp() period, it will cost as the prescribed amount of time. E.g., calling
       * [acquire(5), acquire(1)] takes exactly the same time as [acquire(2), acquire(3), acquire(1)].
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        }
      }
    
      /**
       * This neat test shows that no matter what weights we use in our requests, if we push X amount of
       * permits in a cool state, where X = rate * timeToCoolDown, and we have specified a
       * timeToWarmUp() period, it will cost as the prescribed amount of time. E.g., calling
       * [acquire(5), acquire(1)] takes exactly the same time as [acquire(2), acquire(3), acquire(1)].
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  9. src/runtime/mgclimit.go

    	test bool
    
    	bucket struct {
    		// Invariants:
    		// - fill >= 0
    		// - capacity >= 0
    		// - fill <= capacity
    		fill, capacity uint64
    	}
    	// overflow is the cumulative amount of GC CPU time that we tried to fill the
    	// bucket with but exceeded its capacity.
    	overflow uint64
    
    	// assistTimePool is the accumulated assist time since the last update.
    	assistTimePool atomic.Int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/UnitOfWork.java

        }
    
        /**
         * The result of executing the user code.
         */
        interface WorkOutput {
            /**
             * Whether any significant amount of work has happened while executing the user code.
             * <p>
             * What amounts to "significant work" is up to the type of work implementation.
             */
            WorkResult getDidWork();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top