Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 85 for Auto (0.35 sec)

  1. 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)
  2. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

        mlir::OpPassManager* pass_manager) {
      // This pass wraps all the tf.FakeQuant ops in a custom op so they are not
      // folded before being converted to tfl.quantize and tfl.dequantize ops.
      auto wrapped_ops = mlir::TFL::AllTfFakeQuantOps();
      pass_manager->addNestedPass<mlir::func::FuncOp>(
          mlir::TFL::CreateRaiseCustomOpsPass(wrapped_ops));
    
      mlir::TF::StandardPipelineOptions standard_pipeline_options;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    // TFL common builders.
    //===----------------------------------------------------------------------===//
    
    def TFL_BroadcastableBinaryBuilder :
      OpBuilder<(ins "Value":$lhs, "Value":$rhs),
      [{
        auto resultType =
          OpTrait::util::getBroadcastedType(lhs.getType(), rhs.getType());
        if (!resultType)
          mlir::emitError($_state.location, "non-broadcastable operands");
        $_state.addOperands({lhs, rhs});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. pkg/kube/util.go

    		co(restConfig)
    	}
    
    	return SetRestDefaults(restConfig), nil
    }
    
    // InClusterConfig returns the rest.Config for in cluster usage.
    // Typically, DefaultRestConfig is used and this is auto detected; usage directly allows explicitly overriding to use in-cluster.
    func InClusterConfig(fns ...func(*rest.Config)) (*rest.Config, error) {
    	config, err := rest.InClusterConfig()
    	if err != nil {
    		return nil, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/runtime/gc_test.go

    	// it each time.
    	for i := 0; i < 100; i++ {
    		runtime.GCTestMoveStackOnNextCall()
    		moveStack1(false)
    	}
    }
    
    //go:noinline
    func moveStack1(x bool) {
    	// Make sure this function doesn't get auto-nosplit.
    	if x {
    		println("x")
    	}
    }
    
    func TestGCTestIsReachable(t *testing.T) {
    	var all, half []unsafe.Pointer
    	var want uint64
    	for i := 0; i < 16; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. 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)
Back to top