Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 155 for Tresults (0.27 sec)

  1. src/math/all_test.go

    	-5.0106036182710749e+00,
    	9.6362937071984173e+00,
    	2.9263772392439646e+00,
    	5.2290834314593066e+00,
    	2.7279399104360102e+00,
    	1.8253080916808550e+00,
    	-8.6859247685756013e+00,
    }
    
    // The expected results below were computed by the high precision calculators
    // at https://keisan.casio.com/.  More exact input values (array vf[], above)
    // were obtained by printing them with "%.26f".  The answers were calculated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // far.
      int increment_death_test_count() {
        return result_.increment_death_test_count();
      }
    
      // Creates the test object, runs it, records its result, and then
      // deletes it.
      void Run();
    
      static void ClearTestResult(TestInfo* test_info) {
        test_info->result_.Clear();
      }
    
      // These fields are immutable properties of the test.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    requested benchmark results or verbose logging. After the package
    tests for all of the listed packages finish, and their output is
    printed, go test prints a final 'FAIL' status if any package test
    has failed.
    
    In package list mode only, go test caches successful package test
    results to avoid unnecessary repeated running of tests. When the
    result of a test can be recovered from the cache, go test will
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // far.
      int increment_death_test_count() {
        return result_.increment_death_test_count();
      }
    
      // Creates the test object, runs it, records its result, and then
      // deletes it.
      void Run();
    
      static void ClearTestResult(TestInfo* test_info) {
        test_info->result_.Clear();
      }
    
      // These fields are immutable properties of the test.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  5. src/go/types/api_test.go

    		{"mResult", lookup("t").(*Named).Method(0).Signature().Results().At(0)},
    
    		// Interface methods
    		{"interfaceMethod", lookup("i").Underlying().(*Interface).Method(0)},
    
    		// Function type fields
    		{"ftParam", lookup("ft").Underlying().(*Signature).Params().At(0)},
    		{"ftResult", lookup("ft").Underlying().(*Signature).Results().At(0)},
    
    		// Function fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_test.cc

      TF_Operation** return_opers;
      int num_return_opers;
      TF_ImportGraphDefResultsReturnOperations(results, &num_return_opers,
                                               &return_opers);
      ASSERT_EQ(1, num_return_opers);
      EXPECT_EQ(scalar2, return_opers[0]);  // not remapped
    
      TF_DeleteImportGraphDefResults(results);
    
      // Import again, with control dependencies, into the same graph.
      TF_DeleteImportGraphDefOptions(opts);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // the requested amount of items (up to zero items) in the event all requested objects are
      // filtered out and clients should only use the presence of the continue field to determine whether
      // more results are available. Servers may choose not to support the limit argument and will return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // the requested amount of items (up to zero items) in the event all requested objects are
      // filtered out and clients should only use the presence of the continue field to determine whether
      // more results are available. Servers may choose not to support the limit argument and will return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Sets.java

        @Override
        public NavigableSet<E> descendingSet() {
          UnmodifiableNavigableSet<E> result = descendingSet;
          if (result == null) {
            result = descendingSet = new UnmodifiableNavigableSet<>(delegate.descendingSet());
            result.descendingSet = this;
          }
          return result;
        }
    
        @Override
        public Iterator<E> descendingIterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller.go

    	var results []string
    	isNodeRunning := make(map[string]bool, len(runningNodesList))
    	for _, node := range runningNodesList {
    		isNodeRunning[node.Name] = true
    	}
    
    	for n, pods := range nodeToDaemonPods {
    		if isNodeRunning[n] {
    			continue
    		}
    		for _, pod := range pods {
    			if len(pod.Spec.NodeName) == 0 {
    				results = append(results, pod.Name)
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top