Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 361 for Amount (0.29 sec)

  1. pkg/kubelet/cm/node_container_manager_linux.go

    // up top level cgroups only.
    func (cm *containerManagerImpl) getNodeAllocatableInternalAbsolute() v1.ResourceList {
    	return cm.getNodeAllocatableAbsoluteImpl(cm.internalCapacity)
    }
    
    // GetNodeAllocatableReservation returns amount of compute or storage resource that have to be reserved on this node from scheduling.
    func (cm *containerManagerImpl) GetNodeAllocatableReservation() v1.ResourceList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. pkg/kubelet/pluginmanager/reconciler/reconciler_test.go

    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/operationexecutor"
    	"k8s.io/kubernetes/pkg/kubelet/pluginmanager/pluginwatcher"
    )
    
    const (
    	// reconcilerLoopSleepDuration is the amount of time the reconciler loop
    	// waits between successive executions
    	reconcilerLoopSleepDuration time.Duration = 1 * time.Nanosecond
    )
    
    var (
    	socketDir         string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:21:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. src/internal/zstd/block.go

    func (r *Reader) compressedBlock(blockSize int) error {
    	if len(r.compressedBuf) >= blockSize {
    		r.compressedBuf = r.compressedBuf[:blockSize]
    	} else {
    		// We know that blockSize <= 128K,
    		// so this won't allocate an enormous amount.
    		need := blockSize - len(r.compressedBuf)
    		r.compressedBuf = append(r.compressedBuf, make([]byte, need)...)
    	}
    
    	if _, err := io.ReadFull(r.r, r.compressedBuf); err != nil {
    		return r.wrapNonEOFError(0, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 17:57:43 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/xml/XmlTransformer.java

                    }
                    try {
                        // some impls support this but not factory.setAttribute("indent-number")
                        transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", String.valueOf(indentAmount));
                    } catch (IllegalArgumentException ignored) {
                        /* unsupported by this transformer */
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:15:53 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  5. pilot/pkg/xds/eds_sh_test.go

    		}
    	}
    }
    
    // initRegistry creates and initializes a memory registry that holds a single
    // service with the provided amount of endpoints. It also creates a service for
    // the ingress with the provided external IP
    func initRegistry(server *xds.FakeDiscoveryServer, networkNum int, gatewaysIP []string, numOfEndpoints int) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. pkg/kubelet/lifecycle/predicate.go

    // GetReason returns the reason of the InsufficientResourceError.
    func (e *InsufficientResourceError) GetReason() string {
    	return fmt.Sprintf("Insufficient %v", e.ResourceName)
    }
    
    // GetInsufficientAmount returns the amount of the insufficient resource of the error.
    func (e *InsufficientResourceError) GetInsufficientAmount() int64 {
    	return e.Requested - (e.Capacity - e.Used)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 19 00:47:50 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Lists.java

       * unspecified amount of padding; you almost certainly mean to call {@link
       * #newArrayListWithCapacity} (see that method for further advice on usage).
       *
       * <p><b>Note:</b> This method will soon be deprecated. Even in the rare case that you do want
       * some amount of padding, it's best if you choose your desired amount explicitly.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/link.go

    //		Encoding:
    //			type = TYPE_SHIFT
    //		On ARM:
    //			offset = (reg&15) | shifttype<<5 | count
    //			shifttype = 0, 1, 2, 3 for <<, >>, ->, @>
    //			count = (reg&15)<<8 | 1<<4 for a register shift count, (n&31)<<7 for an integer constant.
    //		On ARM64:
    //			offset = (reg&31)<<16 | shifttype<<22 | (count&63)<<10
    //			shifttype = 0, 1, 2 for <<, >>, ->
    //
    //	(reg, reg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. src/cmd/trace/pprof.go

    }
    
    // pprofMaxStack is the extent of the deduplication we're willing to do.
    //
    // Because slices aren't comparable and we want to leverage maps for deduplication,
    // we have to choose a fixed constant upper bound on the amount of frames we want
    // to support. In practice this is fine because there's a maximum depth to these
    // stacks anyway.
    const pprofMaxStack = 128
    
    // stackMap is a map of trace.Stack to some value V.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/cache2/Relay.kt

     * from this file as necessary.
     *
     * This class also keeps a small buffer of bytes recently read from upstream. This is intended to
     * save a small amount of file I/O and data copying.
     */
    class Relay private constructor(
      /**
       * Read/write persistence of the upstream source and its metadata. Its layout is as follows:
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top