Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 120 for CheckM (0.31 sec)

  1. pkg/apis/apps/validation/validation_test.go

    		t.Run(testName, func(t *testing.T) {
    			// ResourceVersion is required for updates.
    			successCase.old.ObjectMeta.ResourceVersion = "1"
    			successCase.update.ObjectMeta.ResourceVersion = "2"
    			// Check test setup
    			if successCase.expectedErrNum > 0 {
    				t.Errorf("%q has incorrect test setup with expectedErrNum %d, expected no error", testName, successCase.expectedErrNum)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/eviction_manager_test.go

    		t.Fatalf("Manager expects no error but got %v", err)
    	}
    
    	// we should have memory pressure
    	if !manager.IsUnderMemoryPressure() {
    		t.Errorf("Manager should report memory pressure")
    	}
    
    	// check the right pod was killed
    	if podKiller.pod != podToEvict {
    		t.Errorf("Manager chose to kill pod: %v, but should have chosen %v", podKiller.pod.Name, podToEvict.Name)
    	}
    	observedGracePeriod = *podKiller.gracePeriodOverride
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status_test.go

    	// Should report kubelet not ready if the runtime check is out of date
    	clock.SetTime(time.Now().Add(-maxWaitForContainerRuntime))
    	kubelet.updateRuntimeUp()
    	checkNodeStatus(v1.ConditionFalse, "KubeletNotReady")
    
    	// Should report kubelet not ready if the runtime check failed
    	fakeRuntime := testKubelet.fakeRuntime
    	// Inject error into fake runtime status check, node should be NotReady
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def TPUValidateInputsPass : Pass<"tf-tpu-validate-inputs", "ModuleOp"> {
      let summary = "Validates inputs to the TPU TF/XLA bridge";
    
      let description = [{
        This pass checks that the IR has valid input to TPU TF/XLA bridge.
        It checks the relations of multiple ops. Properties of single ops are
        checked by the 'verify' method of ops.
      }];
    
      let constructor = "TFTPU::CreateTPUValidateInputsPass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			q.Activate(logger, map[string]*v1.Pod{"test_pod": tt.qPodInfoToActivate.PodInfo.Pod})
    
    			// Check the result after activation by the length of activeQ
    			if wantLen := len(tt.want); q.activeQ.Len() != wantLen {
    				t.Errorf("length compare: want %v, got %v", wantLen, q.activeQ.Len())
    			}
    
    			// Check if the specific pod exists in activeQ
    			for _, want := range tt.want {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  6. pkg/controller/nodelifecycle/node_lifecycle_controller_test.go

    		expectedPodStatusUpdates  int
    	}{
    		// Node created long time ago, with status updated by kubelet exceeds grace period.
    		// First monitorNodeHealth check will update pod status to NotReady.
    		// Second monitorNodeHealth check will do no updates (no retry).
    		{
    			desc: "successful pod status update, no retry required",
    			fakeNodeHandler: &testutil.FakeNodeHandler{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 03:26:45 UTC 2024
    - 119K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    		t.Errorf("tr.ProxyConnectHeader = %v; want %v", tr.ProxyConnectHeader, h)
    	}
    }
    
    // TestTransportGzipRecursive sends a gzip quine and checks that the
    // client gets the same value back. This is more cute than anything,
    // but checks that we don't recurse forever, and checks that
    // Content-Encoding is removed.
    func TestTransportGzipRecursive(t *testing.T) { run(t, testTransportGzipRecursive) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    	durHr, _ := time.ParseDuration("-1.5h")
    	checks := []durationCheck{
    		{
    			duration: 30 * time.Minute,
    			isValid:  true,
    		},
    		{
    			duration: durMin,
    			isValid:  false,
    		},
    		{
    			duration: durHr,
    			isValid:  false,
    		},
    	}
    
    	for _, check := range checks {
    		if got := ValidateMaxServerConnectionAge(check.duration); (got == nil) != check.isValid {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. tensorflow/c/c_api.cc

            return;
          }
          // We have a convoluted scheme here: Using the C++ graph construction API
          // to add potentially many nodes to the graph without running the checks
          // (such as uniqueness of the names of nodes) we run with other functions
          // that add a node to the graph (like TF_FinishOperation).
          if (!g->name_map.insert(std::make_pair(n->name(), n)).second) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                                  kXlaHasHostTransferAttrName, ": ",
                                  n->DebugString());
        }
      }
      return absl::OkStatus();
    }
    
    // Cheap check to tell whether FunctionDef contains a lifted argument.
    bool HasLiftedArgs(const FunctionDef& function_def) {
      return absl::c_any_of(function_def.node_def(), [](const NodeDef& node_def) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top