Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for result (0.27 sec)

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * </ul>
       *
       * <p>Example usage:
       *
       * <pre>{@code
       * // Result.getRowsClosingFuture() returns a ClosingFuture.
       * ClosingFuture<List<Row>> rowsFuture =
       *     queryFuture.transformAsync((closer, result) -> result.getRowsClosingFuture(), executor);
       *
       * // Result.writeRowsToOutputStreamFuture() returns a ListenableFuture that resolves to the
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Maps.java

        public BiMap<V, K> inverse() {
          BiMap<V, K> result = inverse;
          return (result == null)
              ? inverse = new UnmodifiableBiMap<>(delegate.inverse(), this)
              : result;
        }
    
        @Override
        public Set<V> values() {
          Set<V> result = values;
          return (result == null) ? values = Collections.unmodifiableSet(delegate.values()) : result;
        }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_search_result_select_sort = "{labels.search_result_select_sort}";
    
        /** The key of the message: -- Results per page -- */
        public static final String LABELS_search_result_select_num = "{labels.search_result_select_num}";
    
        /** The key of the message: Score */
        public static final String LABELS_search_result_sort_score_desc = "{labels.search_result_sort_score_desc}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    	if GlobalKMS == nil {
    		return []madmin.KMS{}
    	}
    
    	results := GlobalKMS.Verify(ctx)
    
    	stats := []madmin.KMS{}
    	for _, result := range results {
    		stats = append(stats, madmin.KMS{
    			Status:   result.Status,
    			Endpoint: result.Endpoint,
    			Encrypt:  result.Encrypt,
    			Decrypt:  result.Decrypt,
    			Version:  result.Version,
    		})
    	}
    
    	return stats
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  5. doc/go1.17_spec.html

    <p>
    A function type denotes the set of all functions with the same parameter
    and result types. The value of an uninitialized variable of function type
    is <code>nil</code>.
    </p>
    
    <pre class="ebnf">
    FunctionType   = "func" Signature .
    Signature      = Parameters [ Result ] .
    Result         = Parameters | Type .
    Parameters     = "(" [ ParameterList [ "," ] ] ")" .
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.cc

      DCHECK(tf_results->return_nodes.empty());
      tf_results->return_nodes.resize(results.return_nodes.size());
      for (int i = 0; i < results.return_nodes.size(); ++i) {
        tf_results->return_nodes[i] = ToOperation(results.return_nodes[i]);
      }
    
      // Populate missing unused map keys
      DCHECK(tf_results->missing_unused_key_names.empty());
      DCHECK(tf_results->missing_unused_key_indexes.empty());
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        List<CacheBuilder<Object, Object>> result = new ArrayList<>();
        Iterables.addAll(result, allKeyValueStrengthMakers());
        for (CacheBuilder<Object, Object> builder : allKeyValueStrengthMakers()) {
          result.add(builder.maximumSize(SMALL_MAX_SIZE));
        }
        for (CacheBuilder<Object, Object> builder : allKeyValueStrengthMakers()) {
          result.add(builder.expireAfterAccess(99999, SECONDS));
        }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        List<CacheBuilder<Object, Object>> result = new ArrayList<>();
        Iterables.addAll(result, allKeyValueStrengthMakers());
        for (CacheBuilder<Object, Object> builder : allKeyValueStrengthMakers()) {
          result.add(builder.maximumSize(SMALL_MAX_SIZE));
        }
        for (CacheBuilder<Object, Object> builder : allKeyValueStrengthMakers()) {
          result.add(builder.expireAfterAccess(99999, SECONDS));
        }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
  9. cmd/object-handlers_test.go

    			// testing whether the copy was successful.
    			var results ListPartsInfo
    			results, err = obj.ListObjectParts(context.Background(), testCase.bucketName, testObject, testCase.uploadID, 0, 1, ObjectOptions{})
    			if err != nil {
    				t.Fatalf("Test %d: %s: Failed to look for copied object part: <ERROR> %s", i+1, instanceType, err)
    			}
    			if len(results.Parts) != 1 {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  10. cmd/site-replication.go

    			go func() {
    				defer wg.Done()
    				result := madmin.SiteNetPerfNodeResult{}
    				cli, err := globalSiteReplicationSys.getAdminClient(ctx, info.DeploymentID)
    				if err != nil {
    					result.Error = err.Error()
    				} else {
    					result = siteNetperf(ctx, duration)
    					result.Endpoint = cli.GetEndpointURL().String()
    				}
    				resultsMu.Lock()
    				results.NodeResults = append(results.NodeResults, result)
    				resultsMu.Unlock()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
Back to top