Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,815 for confv1 (0.71 sec)

  1. internal/config/policy/plugin/config.go

    	EnvPolicyPluginEnableHTTP2 = "MINIO_POLICY_PLUGIN_ENABLE_HTTP2"
    )
    
    // DefaultKVS - default config for Authz plugin config
    var (
    	DefaultKVS = config.KVS{
    		config.KV{
    			Key:   URL,
    			Value: "",
    		},
    		config.KV{
    			Key:   AuthToken,
    			Value: "",
    		},
    		config.KV{
    			Key:   EnableHTTP2,
    			Value: "off",
    		},
    	}
    )
    
    // Args for general purpose policy engine configuration.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. pilot/cmd/pilot-agent/config/config.go

    // limitations under the License.
    
    package config
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    	"strconv"
    	"strings"
    
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	"istio.io/api/annotation"
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pilot/pkg/util/network"
    	"istio.io/istio/pkg/bootstrap"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/validation/agent"
    	"istio.io/istio/pkg/env"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.cc

      const QuantizationSpecs& previous_specs = config.specs();
      new_specs.mutable_specs()->Add(previous_specs.specs().begin(),
                                     previous_specs.specs().end());
    
      config.clear_weight_only_ptq_preset();
      config.mutable_specs()->Swap(&new_specs);
    }
    
    }  // namespace
    
    QuantizationConfig ExpandPresets(const QuantizationConfig& config) {
      QuantizationConfig new_config = config;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/config/config.go

    // package config provides methods for loading and querying a
    // telemetry upload config file.
    package config
    
    import (
    	"encoding/json"
    	"os"
    	"strings"
    
    	"golang.org/x/telemetry/internal/telemetry"
    )
    
    // Config is a wrapper around telemetry.UploadConfig that provides some
    // convenience methods for checking the contents of a report.
    type Config struct {
    	*telemetry.UploadConfig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. pkg/test/framework/components/cluster/config.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package cluster
    
    import (
    	"istio.io/istio/pkg/test/framework/config"
    )
    
    type Config struct {
    	Name               string     `yaml:"clusterName,omitempty"`
    	Network            string     `yaml:"network,omitempty"`
    	HTTPProxy          string     `yaml:"httpProxy,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. cmd/kube-scheduler/app/config/config.go

    	kubeschedulerconfig "k8s.io/kubernetes/pkg/scheduler/apis/config"
    )
    
    // Config has all the context to run a Scheduler
    type Config struct {
    	// ComponentConfig is the scheduler server's configuration object.
    	ComponentConfig kubeschedulerconfig.KubeSchedulerConfiguration
    
    	// LoopbackClientConfig is a config for a privileged loopback connection
    	LoopbackClientConfig *restclient.Config
    
    	Authentication apiserver.AuthenticationInfo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 09:38:49 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. internal/config/config.go

    	for _, kv := range kvs {
    		if kv.Key == key {
    			return kv.Value, true
    		}
    	}
    	return "", false
    }
    
    // Config - MinIO server config structure.
    type Config map[string]map[string]KVS
    
    // DelFrom - deletes all keys in the input reader.
    func (c Config) DelFrom(r io.Reader) error {
    	scanner := bufio.NewScanner(r)
    	for scanner.Scan() {
    		// Skip any empty lines, or comment like characters
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/config.go

    		return nil, nil, err
    	}
    	if requestHeaderConfig != nil {
    		config.ClusterAuthenticationInfo.RequestHeaderCA = requestHeaderConfig.CAContentProvider
    		config.ClusterAuthenticationInfo.RequestHeaderAllowedNames = requestHeaderConfig.AllowedClientNames
    		config.ClusterAuthenticationInfo.RequestHeaderExtraHeaderPrefixes = requestHeaderConfig.ExtraHeaderPrefixes
    		config.ClusterAuthenticationInfo.RequestHeaderGroupHeaders = requestHeaderConfig.GroupHeaders
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. internal/logger/config.go

    		},
    		config.KV{
    			Key:   KafkaClientTLSKey,
    			Value: "",
    		},
    		config.KV{
    			Key:   KafkaTLSClientAuth,
    			Value: "0",
    		},
    		config.KV{
    			Key:   KafkaSASL,
    			Value: config.EnableOff,
    		},
    		config.KV{
    			Key:   KafkaTLS,
    			Value: config.EnableOff,
    		},
    		config.KV{
    			Key:   KafkaTLSSkipVerify,
    			Value: config.EnableOff,
    		},
    		config.KV{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. pkg/kubeapiserver/authorizer/config.go

    // based on the authorizationMode or an error.
    // stopCh is used to shut down config reload goroutines when the server is shutting down.
    func (config Config) New(ctx context.Context, serverID string) (authorizer.Authorizer, authorizer.RuleResolver, error) {
    	if len(config.AuthorizationConfiguration.Authorizers) == 0 {
    		return nil, nil, fmt.Errorf("at least one authorization mode must be passed")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top