Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 80 for revoked (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

           resource is written later.
    
        Assumption of this pass:
         . Compound resource operations have already been decomposed.
         . Dead functions have already been removed, as resource arguments in dead
           functions can cause the pass to fail.
      }];
    
      let constructor = "TF::CreatePromoteResourcesToArgsPass()";
    
    let options = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. 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)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // 3LDs
    act.edu.au
    catholic.edu.au
    // eq.edu.au - Removed at the request of the Queensland Department of Education
    nsw.edu.au
    nt.edu.au
    qld.edu.au
    sa.edu.au
    tas.edu.au
    vic.edu.au
    wa.edu.au
    // act.gov.au  Bug 984824 - Removed at request of Greg Tankard
    // nsw.gov.au  Bug 547985 - Removed at request of <******@****.***>
    // nt.gov.au  Bug 940478 - Removed at request of Greg Connors <******@****.***>
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top