Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,134 for confv1 (0.15 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

    // (`absl::string_view`) so its lifetime is bound to the input `config`.
    inline std::optional<absl::string_view> GetReportFilePath(
        const QuantizationConfig& config ABSL_ATTRIBUTE_LIFETIME_BOUND) {
      return config.has_report_file_path()
                 ? std::make_optional<absl::string_view>(config.report_file_path())
                 : std::nullopt;
    }
    
    }  // namespace stablehlo::quantization
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pkg/test/framework/config.go

    	"istio.io/istio/pkg/test/framework/resource/config"
    	"istio.io/istio/pkg/test/framework/resource/config/apply"
    	"istio.io/istio/pkg/test/framework/resource/config/cleanup"
    	"istio.io/istio/pkg/test/scopes"
    	"istio.io/istio/pkg/test/util/file"
    	"istio.io/istio/pkg/test/util/tmpl"
    	"istio.io/istio/pkg/test/util/yml"
    )
    
    var _ config.Factory = &configFactory{}
    
    type configFactory struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. pkg/scheduler/apis/config/testing/config.go

    package testing
    
    import (
    	"testing"
    
    	"k8s.io/component-base/config/v1alpha1"
    	v1 "k8s.io/kube-scheduler/config/v1"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config/scheme"
    )
    
    // V1ToInternalWithDefaults creates a v1 default configuration.
    func V1ToInternalWithDefaults(t *testing.T, versionedCfg v1.KubeSchedulerConfiguration) *config.KubeSchedulerConfiguration {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 17 05:27:21 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/config.go

    			keys = append(keys, k)
    		}
    		sort.Strings(keys)
    		for _, k := range keys {
    			config.DefaultSecurity = append(config.DefaultSecurity, map[string][]string{k: {}})
    		}
    		if config.CommonResponses == nil {
    			config.CommonResponses = map[int]*spec3.Response{}
    		}
    		if _, exists := config.CommonResponses[http.StatusUnauthorized]; !exists {
    			config.CommonResponses[http.StatusUnauthorized] = &spec3.Response{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  5. pkg/kube/util_test.go

    func TestSanitizeKubeConfig(t *testing.T) {
    	cases := []struct {
    		name      string
    		config    api.Config
    		allowlist sets.String
    		want      api.Config
    		wantErr   bool
    	}{
    		{
    			name:    "empty",
    			config:  api.Config{},
    			want:    api.Config{},
    			wantErr: false,
    		},
    		{
    			name: "exec",
    			config: api.Config{
    				AuthInfos: map[string]*api.AuthInfo{
    					"default": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. docs/distributed/CONFIG.md

    > NOTE: MinIO environmental variables still take precedence over the `config.yaml` file, however `config.yaml` is preferred over MinIO internal config KV settings via `mc admin config set alias/ <sub-system>`.
    
    ### TODO
    
    In subsequent releases we are planning to extend this to provide things like
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/kubelet/config.go

    )
    
    // WriteConfigToDisk writes the kubelet config object down to a file
    // Used at "kubeadm init" and "kubeadm upgrade" time
    func WriteConfigToDisk(cfg *kubeadmapi.ClusterConfiguration, kubeletDir, patchesDir string, output io.Writer) error {
    	kubeletCfg, ok := cfg.ComponentConfigs[componentconfigs.KubeletGroup]
    	if !ok {
    		return errors.New("no kubelet component config found")
    	}
    
    	if err := kubeletCfg.Mutate(); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. internal/config/policy/opa/config.go

    }
    
    // Enabled returns if opa is enabled.
    func Enabled(kvs config.KVS) bool {
    	return kvs.Get(URL) != ""
    }
    
    // LookupConfig lookup Opa from config, override with any ENVs.
    func LookupConfig(kv config.KVS, transport *http.Transport, closeRespFn func(io.ReadCloser)) (Args, error) {
    	args := Args{}
    
    	if err := config.CheckValidKeys(config.PolicyOPASubSys, kv, DefaultKVS); err != nil {
    		return args, err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/config.go

    		return bytes.NewBuffer(content), nil
    	}
    	// there is no special config at all
    	return nil, nil
    }
    
    // ConfigFor returns a reader for the specified plugin.
    // If no specific configuration is present, we return a nil reader.
    func (p configProvider) ConfigFor(pluginName string) (io.Reader, error) {
    	// there is no config, so there is no potential config
    	if p.config == nil {
    		return nil, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. cmd/kube-apiserver/app/config.go

    	generatedopenapi "k8s.io/kubernetes/pkg/generated/openapi"
    )
    
    type Config struct {
    	Options options.CompletedOptions
    
    	Aggregator    *aggregatorapiserver.Config
    	KubeAPIs      *controlplane.Config
    	ApiExtensions *apiextensionsapiserver.Config
    
    	ExtraConfig
    }
    
    type ExtraConfig struct {
    }
    
    type completedConfig struct {
    	Options options.CompletedOptions
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top