Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 66 for Auto (0.24 sec)

  1. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       * {@link #ignoreClasses} to exclude generated classes, such as the {@code AutoValue_Foo} classes
       * generated by <a href="https://github.com/google/auto/tree/master/value">AutoValue</a>.
       *
       * @since 19.0
       */
      public static final Predicate<Class<?>> UNDERSCORE_IN_NAME =
          (Class<?> c) -> c.getSimpleName().contains("_");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       * {@link #ignoreClasses} to exclude generated classes, such as the {@code AutoValue_Foo} classes
       * generated by <a href="https://github.com/google/auto/tree/master/value">AutoValue</a>.
       *
       * @since 19.0
       */
      public static final Predicate<Class<?>> UNDERSCORE_IN_NAME =
          (Class<?> c) -> c.getSimpleName().contains("_");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. cmd/bucket-replication.go

    	// WorkerAutoDefault is default number of workers for "auto" mode
    	WorkerAutoDefault = 100
    
    	// MRFWorkerMaxLimit max number of mrf workers per node for "fast" mode
    	MRFWorkerMaxLimit = 8
    
    	// MRFWorkerMinLimit min number of mrf workers per node for "slow" mode
    	MRFWorkerMinLimit = 2
    
    	// MRFWorkerAutoDefault is default number of mrf workers for "auto" mode
    	MRFWorkerAutoDefault = 4
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder_test.go

    			Port:     8080,
    			Protocol: protocol.HTTP,
    		},
    		&model.Port{
    			Name:     "auto",
    			Port:     9090,
    			Protocol: protocol.Unsupported,
    		},
    	}
    	http2ServicePort := model.PortList{
    		&model.Port{
    			Name:     "default",
    			Port:     8080,
    			Protocol: protocol.HTTP2,
    		},
    		&model.Port{
    			Name:     "auto",
    			Port:     9090,
    			Protocol: protocol.Unsupported,
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_builder_test.go

    			},
    		},
    		{
    			name:   "strict",
    			config: strictMode,
    			http: map[int]bool{
    				// Should not see HTTP inspector if we declare ports
    				80: true,
    				82: true,
    				// This is 'auto', but for STRICT we always get requests over TLS so HTTP inspector is not in play
    				81: true,
    				// Even for passthrough, we do not need HTTP inspector because it is handled by TLS inspector
    				1000: true,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //	-buildmode mode
    //		build mode to use. See 'go help buildmode' for more.
    //	-buildvcs
    //		Whether to stamp binaries with version control information
    //		("true", "false", or "auto"). By default ("auto"), version control
    //		information is stamped into a binary if the main package, the main module
    //		containing it, and the current directory are all in the same repository.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/istio_ca.go

    			}
    		}
    	}
    
    	// TODO: if not set, parse Istiod's own token (if present) and get the issuer. The same issuer is used
    	// for all tokens - no need to configure twice. The token may also include cluster info to auto-configure
    	// networking properties.
    	if iss != "" && // issuer set explicitly or extracted from our own JWT
    		k8sInCluster.Get() == "" { // not running in cluster - in cluster use direct call to apiserver
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    	obj config.Config, pos int, enforceRefGrant bool,
    ) (*istio.HTTPRoute, *ConfigError) {
    	// TODO: implement rewrite, timeout, corspolicy, retries
    	vs := &istio.HTTPRoute{}
    	// Auto-name the route. If upstream defines an explicit name, will use it instead
    	// The position within the route is unique
    	vs.Name = obj.Namespace + "." + obj.Name + "." + strconv.Itoa(pos) // format: %s.%s.%d
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_inbound.go

    	chains := make([]*listener.FilterChain, 0, len(opts))
    	for _, opt := range opts {
    		switch opt.Protocol {
    		// Switch on the protocol. Note: we do not need to handle Auto protocol as it will already be split into a TCP and HTTP option.
    		case istionetworking.ListenerProtocolHTTP:
    			chains = append(chains, &listener.FilterChain{
    				FilterChainMatch: cc.ToFilterChainMatch(opt),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. RELEASE.md

            `data_service_ops.distribute`. Users can specify `"AUTO"`, `"ANY"`, or
            `"LOCAL"` (case insensitive). If `"AUTO"`, tf.data service runtime
            decides which workers to read from. If `"ANY"`, TF workers read from any
            tf.data service workers. If `"LOCAL"`, TF workers will only read from
            local in-processs tf.data service workers. `"AUTO"` works well for most
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top