Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,108 for Amount (0.11 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. guava-tests/test/com/google/common/util/concurrent/ExecutionListTest.java

        list.add(new MockRunnable(countDownLatch), exec);
        assertEquals(3L, countDownLatch.getCount());
    
        list.execute();
    
        // Verify that all of the runnables execute in a reasonable amount of time.
        assertTrue(countDownLatch.await(1L, TimeUnit.SECONDS));
      }
    
      public void testExecute_idempotent() {
        final AtomicInteger runCalled = new AtomicInteger();
        list.add(
            new Runnable() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/api/internal/project/ant/BasicAntBuilder.java

            Object value = super.doInvokeMethod(methodName, name, args);
            // Discard the node so it can be garbage collected. Some Ant tasks cache a potentially large amount of state
            // in fields.
            try {
                nodeField.set(this, null);
                children.clear();
            } catch (IllegalAccessException e) {
                throw new RuntimeException(e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/ir/FakeQuantSupport.h

    // that FakeQuant* operators mix multiple concerns specific to how TFLite
    // originally implemented quantization. As such, utilities here enforce
    // opinions taken by that codebase (vs providing any amount of genericity).
    //
    // Specifically, it combines the following concerns, each of which would be
    // independent variables in a more generic setup:
    //   - numBits and isSigned imply storage data type (uint8, int8, int16)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:52:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered.go

    	buffer chan *auditinternal.Event
    	// Maximum number of events in a batch sent to the delegate backend.
    	maxBatchSize int
    	// Amount of time to wait after sending a batch to the delegate backend before sending another one.
    	//
    	// Receiving maxBatchSize events will always trigger sending a batch, regardless of the amount of time passed.
    	maxBatchWait time.Duration
    
    	// Whether the delegate backend should be called asynchronously.
    	asyncDelegate bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.1K bytes
    - Viewed (0)
Back to top