Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 103 for spill (0.06 sec)

  1. pkg/kubelet/kubelet.go

    	// running, and not all running pods are in the podManager - for instance, force deleting a pod
    	// from the apiserver will remove it from the podManager, but the pod may still be terminating and
    	// tracked by the podWorkers. Components that need to know the actual consumed resources of the
    	// node or are driven by podWorkers and the sync*Pod methods (status, volume, stats) should also
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. src/net/http/server.go

    		// closing their TCP connection after sending a pipelined
    		// request won't cancel the context, but we'll catch that on any
    		// write failure (in checkConnErrorWriter.Write).
    		// If the server never writes, yes, there are still contrived
    		// server & client behaviors where this fails to ever cancel the
    		// context, but that's kinda why HTTP/1.x pipelining died
    		// anyway.
    	}
    	if ne, ok := err.(net.Error); ok && cr.aborted && ne.Timeout() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    	// allocations.
    	var flushCC contextCounter
    	for i := 0; ; i++ {
    		live := initialCC.Read()
    		if live == 0 {
    			break
    		}
    		if i >= 100 {
    			t.Fatalf("%d Contexts still not finalized after %d GC cycles.", live, i)
    		}
    		doPosts(&flushCC)
    		runtime.GC()
    	}
    }
    
    // This used to crash; https://golang.org/issue/3266
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

    termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    				// we want to capture it in the metric. The more likely scenario is that a static pod with a predefined
    				// UID is updated, which causes pod config to deliver DELETE -> ADD while the old pod is still shutting
    				// down and the pod worker to ignore the ADD. The HandlePodCleanups method then is responsible for syncing
    				// that pod to the pod worker so that it restarts.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        //
        // RefineDynamicShapes returns ok only when it produces full static shapes.
        // It may partially succeed by producing RankedTensor shapes with dynamic
        // dimensions. Such info is still useful for the downstream. We don't need
        // to abort here.
        // TODO(b/316639984): improve RefineDynamicShapes return values to include
        // these info.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

      /** A reference to a value. */
      interface ValueReference<K, V> {
        /** Returns the value. Does not block or throw exceptions. */
        @CheckForNull
        V get();
    
        /**
         * Waits for a value that may still be loading. Unlike get(), this method can block (in the case
         * of FutureValueReference).
         *
         * @throws ExecutionException if the loading thread throws an exception
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LocalCache.java

      /** A reference to a value. */
      interface ValueReference<K, V> {
        /** Returns the value. Does not block or throw exceptions. */
        @CheckForNull
        V get();
    
        /**
         * Waits for a value that may still be loading. Unlike get(), this method can block (in the case
         * of FutureValueReference).
         *
         * @throws ExecutionException if the loading thread throws an exception
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  9. src/crypto/sha512/sha512_test.go

    	},
    	{
    		"05ffa71bb02e855de1aaee1777b3bdbaf7507646f19c4c6aa29933d0",
    		"Even if I could be Shakespeare, I think I should still choose to be Faraday. - A. Huxley",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_node_status_test.go

    	actions = kubeClient.Actions()
    	assert.Len(t, actions, 5)
    	assert.IsType(t, core.GetActionImpl{}, actions[4])
    
    	// Update node status again when something is changed.
    	// Report node status even if it is still within the duration of nodeStatusReportFrequency.
    	clock.Step(10 * time.Second)
    	var newMemoryCapacity int64 = 40e9
    	oldMachineInfo, err := kubelet.GetCachedMachineInfo()
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
Back to top