Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 71 for revoked (0.38 sec)

  1. pkg/controller/garbagecollector/garbagecollector_test.go

    	err = expectSyncNotBlocked(fakeDiscoveryClient, &gc.workerLock)
    	if err != nil {
    		t.Fatalf("Expected garbagecollector.Sync to still be running but it is blocked: %v", err)
    	}
    	// Unsyncable monitor removed
    	assertMonitors(t, gc, "pods", "deployments")
    }
    
    func assertMonitors(t *testing.T, gc *GarbageCollector, resources ...string) {
    	t.Helper()
    	expected := sets.NewString(resources...)
    	actual := sets.NewString()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    	// of such pods should not be changed, and there is no need to sync them.
    	// TODO: the logic here does not handle two cases:
    	//   1. If the containers were removed immediately after they died, kubelet
    	//      may fail to generate correct statuses, let alone filtering correctly.
    	//   2. If kubelet restarted before writing the terminated status for a pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/eviction_manager_test.go

    			// same filesystem should have both.
    			if diskGC.imageGCInvoked != tc.expectImageGcCall && diskGC.containerGCInvoked != tc.expectContainerGcCall {
    				t.Fatalf("Manager should have invoked image gc")
    			}
    
    			// verify no pod was killed because image gc was sufficient
    			if podKiller.pod != nil {
    				t.Fatalf("Manager should not have killed a pod, but killed: %v", podKiller.pod.Name)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

    //    compilation placeholder nodes in shape inference graph, which will prevent
    //    us from inferring XlaSendFromHost shape. But in `host_graph`, we already
    //    removed those placeholder nodes.
    // 2) Remove control edges.
    // 3) Prune nodes that are not useful for shape inference.
    Status RewriteShapeInferenceGraph(const string& shape_inference_graph_name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

              # TODO(kubernetes/autoscaler#718): AUTOSCALER_ENV_VARS is a hotfix for cluster autoscaler,
              # which reads the kube-env to determine the shape of a node and was broken by #60020.
              # This should be removed as soon as a more reliable source of information is available!
              local node_labels
              local node_taints
              local autoscaler_env_vars
              node_labels="$(build-linux-node-labels node)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. pkg/registry/batch/job/strategy_test.go

    						},
    					},
    				},
    			},
    			wantErrs: field.ErrorList{
    				{Type: field.ErrorTypeInvalid, Field: "status.conditions"},
    			},
    		},
    		"completionTime can be removed to fix still running job": {
    			enableJobManagedBy: true,
    			job: &batch.Job{
    				ObjectMeta: validObjectMeta,
    				Status: batch.JobStatus{
    					StartTime:      &now,
    					CompletionTime: &now,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_generator.go

    // globalMapPath, these operations depend on plugin implementation.
    // Once TearDownDevice is completed, remove globalMapPath dir.
    // After globalMapPath is removed, fd lock by loopback for the device can
    // be released safely because no one can consume the device at this point.
    // At last, device open status will be checked just in case.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  8. src/database/sql/sql.go

    	// goes to zero. (*DB).mu is not held while calling it.
    	finalClose() error
    }
    
    // addDep notes that x now depends on dep, and x's finalClose won't be
    // called until all of x's dependencies are removed with removeDep.
    func (db *DB) addDep(x finalCloser, dep any) {
    	db.mu.Lock()
    	defer db.mu.Unlock()
    	db.addDepLocked(x, dep)
    }
    
    func (db *DB) addDepLocked(x finalCloser, dep any) {
    	if db.dep == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      // CHECK: device = "/job:localhost/replica:0/task:0/device:GPU:0"
      // CHECK: return %arg0 : tensor<*xf32>
      func.return %0#0 : tensor<*xf32>
    }
    
    // Explicit capture and return of extern values is removed.
    // CHECK-LABEL: testWhileRegionReturnExternValues
    func.func @testWhileRegionReturnExternValues(%arg0 : tensor<*xf32>, %arg1 : tensor<i32>) -> tensor<*xf32> {
      // CHECK: "tf.WhileRegion"(%arg1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    // Remove redundant unpack pack op.
    // If a unpack op is followed by a pack op, we can remove the pack op, if the
    // unpack op is only consumed by the pack op, it will be removed as well.
    // An example illustration is:
    //                  Unpack [5, 8, 9], axis = 1
    //                /       \
    //            value  ...  value [5, 9], 8 values in total
    //              \           /
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top