Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 130 for CheckM (0.25 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          return getDone(future);
        }
      }
    
      private static class MyException extends Exception {}
    
      // Class hierarchy for generics sanity checks
      private static class Foo {}
    
      private static class FooChild extends Foo {}
    
      private static class Bar {}
    
      private static class BarChild extends Bar {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          return getDone(future);
        }
      }
    
      private static class MyException extends Exception {}
    
      // Class hierarchy for generics sanity checks
      private static class Foo {}
    
      private static class FooChild extends Foo {}
    
      private static class Bar {}
    
      private static class BarChild extends Bar {}
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // binary. Only a high-confidence subset of the default go vet checks are
    // used. That subset is: atomic, bool, buildtags, directive, errorsas,
    // ifaceassert, nilfunc, printf, and stringintconv. You can see
    // the documentation for these and other vet tests via "go doc cmd/vet".
    // To disable the running of go vet, use the -vet=off flag. To run all
    // checks, use the -vet=all flag.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    func TestHeaderToWire(t *testing.T) {
    	tests := []struct {
    		name    string
    		handler func(ResponseWriter, *Request)
    		check   func(got, logs string) error
    	}{
    		{
    			name: "write without Header",
    			handler: func(rw ResponseWriter, r *Request) {
    				rw.Write([]byte("hello world"))
    			},
    			check: func(got, logs string) error {
    				if !strings.Contains(got, "Content-Length:") {
    					return errors.New("no content-length")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top