Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 432 for Amount (0.15 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    // controller is responsible for managing the attach/detach operations for
    // this node, and therefore the volume manager should not
    //
    // loopSleepDuration - the amount of time the reconciler loop sleeps between
    // successive executions
    //
    // waitForAttachTimeout - the amount of time the Mount function will wait for
    // the volume to be attached
    //
    // nodeName - the Name for this node, used by Attach and Detach methods
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/memorymanager/policy_static.go

    			if totalAllocatableSize[resourceName] < requestedSize {
    				return
    			}
    		}
    
    		// set the minimum amount of NUMA nodes that can satisfy the container resources requests
    		if mask.Count() < minAffinitySize {
    			minAffinitySize = mask.Count()
    		}
    
    		// the node already in group with another node, it can not be used for the single NUMA node allocation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/concepts.md

    And multiple processes normally **don't share any memory**. This means that each running process has its own things, variables, and memory. And if you are consuming a large amount of memory in your code, **each process** will consume an equivalent amount of memory.
    
    ### Server Memory
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. pkg/kubelet/metrics/collectors/resource_metrics_test.go

    				container_start_time_seconds{container="container_b",namespace="namespace_a",pod="pod_a"} 1.6243961583020916e+09
            		# HELP container_swap_usage_bytes [ALPHA] Current amount of the container swap usage in bytes. Reported only on non-windows systems
            		# TYPE container_swap_usage_bytes gauge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.3K bytes
    - Viewed (1)
  5. src/runtime/metrics/description.go

    		Kind:        KindFloat64Histogram,
    		Cumulative:  true,
    	},
    	{
    		Name:        "/gc/scan/globals:bytes",
    		Description: "The total amount of global variable space that is scannable.",
    		Kind:        KindUint64,
    	},
    	{
    		Name:        "/gc/scan/heap:bytes",
    		Description: "The total amount of heap space that is scannable.",
    		Kind:        KindUint64,
    	},
    	{
    		Name:        "/gc/scan/stack:bytes",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/TestThread.java

      }
    
      /**
       * Sends the given method call to this thread.
       *
       * @throws TimeoutException if this thread does not accept the request within a reasonable amount
       *     of time
       */
      private void sendRequest(String methodName, Object... arguments) throws Exception {
        if (!requestQueue.offer(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/TestThread.java

      }
    
      /**
       * Sends the given method call to this thread.
       *
       * @throws TimeoutException if this thread does not accept the request within a reasonable amount
       *     of time
       */
      private void sendRequest(String methodName, Object... arguments) throws Exception {
        if (!requestQueue.offer(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. hack/golangci.yaml

    # golangci-lint is used in Kubernetes with different configurations that
    # enable an increasing amount of checks:
    # - golangci.yaml is the most permissive configuration. All existing code
    #   passed.
    # - golangci-strict.yaml adds checks that all new code in pull requests
    #   must pass.
    # - golangci-hints.yaml adds checks for code patterns where developer
    #   and reviewer may decide whether findings should get addressed before
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    type Timeouts struct {
    	// ControlPlaneComponentHealthCheck is the amount of time to wait for a control plane
    	// component, such as the API server, to be healthy during "kubeadm init" and "kubeadm join".
    	// Default: 4m
    	// +optional
    	ControlPlaneComponentHealthCheck *metav1.Duration `json:"controlPlaneComponentHealthCheck,omitempty"`
    
    	// KubeletHealthCheck is the amount of time to wait for the kubelet to be healthy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	fs.DurationVar(&s.LivezGracePeriod, "livez-grace-period", s.LivezGracePeriod, ""+
    		"This option represents the maximum amount of time it should take for apiserver to complete its startup sequence "+
    		"and become live. From apiserver's start time to when this amount of time has elapsed, /livez will assume "+
    		"that unfinished post-start hooks will complete successfully and therefore return true.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top