Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 337 for Result (0.17 sec)

  1. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

                    .iterator();
        Iterator<Integer> result = Iterators.concat(input);
        assertEquals(1, (int) result.next());
        assertEquals(2, (int) result.next());
        try {
          result.hasNext();
          fail("no exception thrown");
        } catch (NullPointerException e) {
        }
        try {
          result.next();
          fail("no exception thrown");
        } catch (NullPointerException e) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  2. src/html/template/exec_test.go

    		t.Fatal("exec error:", err)
    	}
    	result := b.String()
    	if result != expect {
    		t.Errorf("expected %q got %q", expect, result)
    	}
    	// Then direct to execution.
    	b.Reset()
    	err = tmpl.ExecuteTemplate(&b, "tree", tree)
    	if err != nil {
    		t.Fatal("exec error:", err)
    	}
    	result = b.String()
    	if result != expect {
    		t.Errorf("expected %q got %q", expect, result)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. cmd/iam-store.go

    		}
    	}
    
    	return result
    }
    
    // GetUsersWithMappedPolicies - safely returns the name of access keys with associated policies
    func (store *IAMStoreSys) GetUsersWithMappedPolicies() map[string]string {
    	cache := store.rlock()
    	defer store.runlock()
    
    	result := make(map[string]string)
    	cache.iamUserPolicyMap.Range(func(k string, v MappedPolicy) bool {
    		result[k] = v.Policies
    		return true
    	})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      GTEST_DISALLOW_ASSIGN_(AssertionResult);
    };
    
    // Makes a successful assertion result.
    GTEST_API_ AssertionResult AssertionSuccess();
    
    // Makes a failed assertion result.
    GTEST_API_ AssertionResult AssertionFailure();
    
    // Makes a failed assertion result with the given failure message.
    // Deprecated; use AssertionFailure() << msg.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

                      model_ptr));
    
        // Add the results to the value maps. There are two cases: 1. the result
        // tensor does not have min/max values, the original op result is used
        // directly; 2. the result tensor has some min/max values, a stats op is
        // created, then the result of the stats op is used.
        for (const auto& pair : llvm::enumerate(MaybeWrapInControlNode(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    === Using dependency resolution results
    
    Dependency resolution results can be consumed as task inputs in two ways.
    First by consuming the graph of the resolved metadata using link:{javadocPath}/org/gradle/api/artifacts/result/ResolvedComponentResult.html[ResolvedComponentResult].
    Second by consuming the flat set of the resolved artifacts using link:{javadocPath}/org/gradle/api/artifacts/result/ResolvedArtifactResult.html[ResolvedArtifactResult].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue.go

    	p.lock.RLock()
    	defer p.lock.RUnlock()
    	var result []*v1.Pod
    	for _, pInfo := range p.activeQ.List() {
    		result = append(result, pInfo.(*framework.QueuedPodInfo).Pod)
    	}
    	for _, pInfo := range p.podBackoffQ.List() {
    		result = append(result, pInfo.(*framework.QueuedPodInfo).Pod)
    	}
    	for _, pInfo := range p.unschedulablePods.podInfoMap {
    		result = append(result, pInfo.Pod)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  9. pkg/proxy/endpointschangetracker_test.go

    				}
    			}
    			if len(result.NewlyActiveUDPServices) != len(tc.expectedNewlyActiveUDPServices) {
    				t.Errorf("[%d] expected %d newlyActiveUDPServices, got %d: %v", tci, len(tc.expectedNewlyActiveUDPServices), len(result.NewlyActiveUDPServices), result.NewlyActiveUDPServices)
    			}
    			for svcName := range tc.expectedNewlyActiveUDPServices {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AbstractFuture.java

       * known yet. That result, though not yet known, cannot be overridden by a call to a {@code set*}
       * method, only by a call to {@link #cancel}.
       *
       * <p>Beware of completing a future while holding a lock. Its listeners may do slow work or
       * acquire other locks, risking deadlocks.
       *
       * @param throwable the exception to be used as the failed result
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
Back to top