Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for strnames (0.24 sec)

  1. manifests/charts/base/crds/crd-all.gen.yaml

                                        rule: duration(self) >= duration('1ms')
                                    maxConcurrentStreams:
                                      description: The maximum number of concurrent streams
                                        allowed for a peer on one HTTP/2 connection.
                                      format: int32
                                      type: integer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cmd/metacache-set.go

    	// if disk did not return any result, but also haven't errored
    	// the entry will be empty and errs will
    	partial func(entries metaCacheEntries, errs []error)
    
    	// finished will be called when all streams have finished and
    	// more than one disk returned an error.
    	// Will not be called if everything operates as expected.
    	finished func(errs []error)
    }
    
    // listPathRaw will list a path on the provided drives.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    	cc.nextStreamID += 2
    	cc.streams[cs.ID] = cs
    	if cs.ID == 0 {
    		panic("assigned stream ID 0")
    	}
    }
    
    func (cc *http2ClientConn) forgetStreamID(id uint32) {
    	cc.mu.Lock()
    	slen := len(cc.streams)
    	delete(cc.streams, id)
    	if len(cc.streams) != slen-1 {
    		panic("forgetting unknown stream id")
    	}
    	cc.lastActive = time.Now()
    	if len(cc.streams) == 0 && cc.idleTimer != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top