Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 136 for strnames (0.32 sec)

  1. android/guava/src/com/google/common/collect/ImmutableSet.java

       *
       * @since 33.2.0 (available since 21.0 in guava-jre)
       */
      @SuppressWarnings({"AndroidJdkLibsChecker", "Java7ApiChecker"})
      @IgnoreJRERequirement // Users will use this only if they're already using streams.
      public static <E> Collector<E, ?, ImmutableSet<E>> toImmutableSet() {
        return CollectCollectors.toImmutableSet();
      }
    
      /**
       * Returns the empty immutable set. Preferred over {@link Collections#emptySet} for code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimaps.java

       *
       * @since 33.2.0 (available since 21.0 in guava-jre)
       */
      @SuppressWarnings({"AndroidJdkLibsChecker", "Java7ApiChecker"})
      @IgnoreJRERequirement // Users will use this only if they're already using streams.
      public static <
              T extends @Nullable Object,
              K extends @Nullable Object,
              V extends @Nullable Object,
              M extends Multimap<K, V>>
          Collector<T, ?, M> toMultimap(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Splitter.java

       * @return a stream over the segments split from the parameter
       * @since 28.2
       */
      public Stream<String> splitToStream(CharSequence sequence) {
        // Can't use Streams.stream() from base
        return StreamSupport.stream(split(sequence).spliterator(), false);
      }
    
      /**
       * Returns a {@code MapSplitter} which splits entries based on this splitter, and splits entries
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/xla_launch_util.cc

          allocate_xla_tensors_(allocate_xla_tensors),
          use_multiple_streams_(use_multiple_streams),
          device_ordinal_(device_ordinal) {
      if (use_multiple_streams_) {
        CHECK(allocate_xla_tensors_) << "To use multiple streams correctly we must "
                                        "be allocating XLA tensors!";
      }
    }
    
    // Fills in `execution_input` with `buffer` for `index`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/Stats.java

       * boxedNumericStream.collect(toStats())}. The numbers will be converted to {@code double} values
       * (which may cause loss of precision).
       *
       * <p>If you have any of the primitive streams {@code DoubleStream}, {@code IntStream}, or {@code
       * LongStream}, you should use the factory method {@link #of} instead.
       *
       * @since 28.2
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "PrefetchCache", argLength: 2, hasSideEffects: true},         // Do prefetch arg0 to cache. arg0=addr, arg1=memory.
    	{name: "PrefetchCacheStreamed", argLength: 2, hasSideEffects: true}, // Do non-temporal or streamed prefetch arg0 to cache. arg0=addr, arg1=memory.
    }
    
    //     kind          controls        successors   implicit exit
    //   ----------------------------------------------------------
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	SubjectKindServiceAccount SubjectKind = "ServiceAccount"
    )
    
    // UserSubject holds detailed information for user-kind subject.
    type UserSubject struct {
    	// `name` is the username that matches, or "*" to match all usernames.
    	// Required.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    }
    
    // GroupSubject holds detailed information for group-kind subject.
    type GroupSubject struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/runtime/framework.go

    	return f, nil
    }
    
    // setInstrumentedPlugins initializes instrumented plugins from current plugins that frameworkImpl has.
    func (f *frameworkImpl) setInstrumentedPlugins() {
    	// Cache metric streams for prefilter and filter plugins.
    	for i, pl := range f.preFilterPlugins {
    		f.preFilterPlugins[i] = &instrumentedPreFilterPlugin{
    			PreFilterPlugin: f.preFilterPlugins[i],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  9. pkg/istio-agent/xds_proxy.go

    // subsystems inside the agent to also communicate with either istiod/envoy (eg dns, sds, etc).
    // The goal here is to consolidate all xds related connections to istiod/envoy into a
    // single tcp connection with multiple gRPC streams.
    // TODO: Right now, the workloadSDS server and gatewaySDS servers are still separate
    // connections. These need to be consolidated.
    // TODO: consolidate/use ADSC struct - a lot of duplication.
    type XdsProxy struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    	f, err := os.Open(filepath.Join(testenv.GOROOT(t), "test", dir))
    	if err != nil {
    		t.Fatal(err)
    	}
    	dirnames, err := f.Readdirnames(-1)
    	f.Close()
    	if err != nil {
    		t.Fatal(err)
    	}
    	names := []string{}
    	for _, name := range dirnames {
    		if !strings.HasPrefix(name, ".") && strings.HasSuffix(name, ".go") && shardMatch(name) {
    			names = append(names, name)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top