Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for existed (0.23 sec)

  1. pkg/kubelet/kubelet_test.go

    	for i := range pods {
    		assert.True(t, dirExists(kl.getPodDir(pods[i].UID)), "Expected directory to exist for pod %d", i)
    	}
    
    	// Pod 1 has been deleted and no longer exists.
    	kl.podManager.SetPods([]*v1.Pod{pods[0]})
    	kl.HandlePodCleanups(ctx)
    	assert.True(t, dirExists(kl.getPodDir(pods[0].UID)), "Expected directory to exist for pod 0")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        Splits an island with multiple ops into multiple islands (one per op). Does
        not create any control dependencies between new islands, and does not
        propagate control dependencies that potentially existed between the old
        islands into the new islands. Maintains existing data dependencies between
        ops wrapped by the new islands.
    
        Example: original program:
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    			// grabbed it and is about to send on it.
    			if !deleted {
    				// TODO(bradfitz): rather than this best effort select, we
    				// should probably start a goroutine to read from req. This best
    				// effort select existed before the change to check 'deleted'.
    				// But if we know for sure it wasn't deleted and a sender is
    				// outstanding, we should probably block on req (in a new
    				// goroutine) to get the connection back.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager_test.go

    			wantPodStatus: v1.PodStatus{
    				Phase:   v1.PodFailed,
    				Reason:  "Evicted",
    				Message: "The node was low on resource: memory. Threshold quantity: 2Gi, available: 1500Mi. ",
    			},
    		},
    		"eviction due to memory pressure; image fs": {
    			wantPodStatus: v1.PodStatus{
    				Phase:   v1.PodFailed,
    				Reason:  "Evicted",
    				Message: "The node was low on resource: memory. Threshold quantity: 2Gi, available: 1500Mi. ",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "operator": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/garbagecollector_test.go

    	// rc1 should already be in the cache, no request should be sent. rc1 should be promoted in the UIDCache
    	gc.attemptToDeleteItem(context.TODO(), podToGCNode(rc1Pod2))
    	// after this call, rc2 should be evicted from the UIDCache
    	gc.attemptToDeleteItem(context.TODO(), podToGCNode(rc3Pod1))
    	// check cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    				StartTime:  start,
    			})
    		}
    
    		// After an evicted pod is synced, all dead containers in the pod can be removed.
    		// TODO: this is questionable - status read is async and during eviction we already
    		// expect to not have some container info. The pod worker knows whether a pod has
    		// been evicted, so if this is about minimizing the time to react to an eviction we
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__policy__v1_openapi.json

    get policy means that running pods (status.phase=\"Running\"), but not yet healthy can be evicted only if the guarded application is not disrupted (status.currentHealthy is at least equal to status.desiredHealthy). Healthy pods will be subject to the PDB for eviction.\n\nAlwaysAllow policy means that all running pods (status.phase=\"Running\"), but not yet healthy are considered disrupted and can be evicted regardless of whether the criteria in a PDB is met. This means perspective running pods of...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  9. tests/integration/pilot/common/routing.go

    				opts: echo.CallOptions{
    					Port:  echo.Port{ServicePort: e.port, Protocol: protocol.HTTP},
    					Count: 1,
    					// Failed requests will go to non-existent port which hangs forever
    					// Set a low timeout to fail faster
    					Timeout: time.Millisecond * 500,
    					Address: t.Apps.External.All[0].Address(),
    					HTTP: echo.HTTP{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    // same time. Each will execute its own stop, and the stops will
    // be serialized.
    //
    // This is also used by routines that do stack dumps. If the system is
    // in panic or being exited, this may not reliably stop all
    // goroutines.
    //
    // Returns the STW context. When starting the world, this context must be
    // passed to startTheWorld.
    func stopTheWorld(reason stwReason) worldStop {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top