Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 444 for small8 (0.25 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt

      require(millis != 0L || duration <= 0L) { "$name too small" }
      return millis.toInt()
    }
    
    internal fun checkDuration(
      name: String,
      duration: Duration,
    ): Int {
      check(!duration.isNegative()) { "$name < 0" }
      val millis = duration.inWholeMilliseconds
      require(millis <= Integer.MAX_VALUE) { "$name too large" }
      require(millis != 0L || !duration.isPositive()) { "$name too small" }
      return millis.toInt()
    }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. pkg/registry/core/service/portallocator/allocator_test.go

    		},
    		{
    			name: "very small node port range",
    			args: args{
    				pr: net.PortRange{
    					Base: 30000,
    					Size: 10,
    				},
    			},
    			want: 0,
    		},
    		{
    			name: "small node port range (lower boundary)",
    			args: args{
    				pr: net.PortRange{
    					Base: 30000,
    					Size: 16,
    				},
    			},
    			want: 0,
    		},
    		{
    			name: "small node port range",
    			args: args{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    //  1. If the two cores belong to different sockets, the core in the socket with the smaller amount of
    //     free CPUs appears first.
    //  2. If the two cores belong to the same socket but different NUMA nodes, the core in the NUMA node
    //     with the smaller amount of free CPUs appears first.
    //  3. If the two cores belong to the same NUMA node and socket, the core with the smaller amount of
    //     free CPUs appears first.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/obj9.go

    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  5. src/math/big/nat.go

    	i := len(z)
    	for i > 0 && z[i-1] == 0 {
    		i--
    	}
    	return z[0:i]
    }
    
    func (z nat) make(n int) nat {
    	if n <= cap(z) {
    		return z[:n] // reuse z
    	}
    	if n == 1 {
    		// Most nats start small and stay that way; don't over-allocate.
    		return make(nat, 1)
    	}
    	// Choosing a good value for e has significant performance impact
    	// because it increases the chance that a value can be reused.
    	const e = 4 // extra capacity
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  6. src/net/textproto/reader.go

    // It is called by the mime/multipart package.
    func readMIMEHeader(r *Reader, maxMemory, maxHeaders int64) (MIMEHeader, error) {
    	// Avoid lots of small slice allocations later by allocating one
    	// large one ahead of time which we'll cut up into smaller
    	// slices. If this isn't big enough later, we allocate small ones.
    	var strs []string
    	hint := r.upcomingHeaderKeys()
    	if hint > 0 {
    		if hint > 1000 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. src/runtime/mcache.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // Per-thread (in Go, per-P) cache for small objects.
    // This includes a small object cache and local allocation stats.
    // No locking needed because it is per-thread (per-P).
    //
    // mcaches are allocated from non-GC'd memory, so any heap pointers
    // must be specially handled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    		amount.Neg(amount)
    	}
    
    	// This rounds non-zero values up to the minimum representable value, under the theory that
    	// if you want some resources, you should get some resources, even if you asked for way too small
    	// of an amount.  Arguably, this should be inf.RoundHalfUp (normal rounding), but that would have
    	// the side effect of rounding values < .5n to zero.
    	if v, ok := amount.Unscaled(); v != int64(0) || !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        [Pure, CoreRT_TypedAttributeTrait,
         TFRT_CostFunctionInterface, TFRT_FixedCost<1>]> {
      let summary = "Copy the CPU fallback tensor if it is small";
    
      let description = [{
        This kernel performs deep copy on the input tensor if it is small, to avoid
        atomic contention on its refcount.
    
        Note that this kernel always create a new AsyncValue for each result to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. internal/auth/credentials.go

    // the given io.Reader. If random is nil, crypto/rand.Reader is used.
    // If length <= 0, the access key length is chosen automatically.
    //
    // GenerateAccessKey returns an error if length is too small for a valid
    // access key.
    func GenerateAccessKey(length int, random io.Reader) (string, error) {
    	if random == nil {
    		random = rand.Reader
    	}
    	if length <= 0 {
    		length = accessKeyMaxLen
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top