Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,334 for config2 (0.12 sec)

  1. pkg/test/framework/config/config.go

    var (
    	configFilePath string
    	parsed         atomic.Bool
    )
    
    func init() {
    	flag.StringVar(&configFilePath, "istio.test.config", "", "Path to test framework config file")
    }
    
    type Value interface {
    	flag.Value
    	// SetConfig will receive either a Map or a []Map
    	SetConfig(any) error
    }
    
    func Parsed() bool {
    	return flag.Parsed() && parsed.Load()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. 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)
  3. internal/config/identity/plugin/config.go

    )
    
    var (
    	// DefaultKVS - default config for AuthN plugin config
    	DefaultKVS = config.KVS{
    		config.KV{
    			Key:   URL,
    			Value: "",
    		},
    		config.KV{
    			Key:   AuthToken,
    			Value: "",
    		},
    		config.KV{
    			Key:   RolePolicy,
    			Value: "",
    		},
    		config.KV{
    			Key:   RoleID,
    			Value: "",
    		},
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/admission/config.go

    	quotainstall "k8s.io/kubernetes/pkg/quota/v1/install"
    )
    
    // Config holds the configuration needed to for initialize the admission plugins
    type Config struct {
    	LoopbackClientConfig *rest.Config
    	ExternalInformers    externalinformers.SharedInformerFactory
    }
    
    // New sets up the plugins and admission start hooks needed for admission
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    }
    
    // ConfigForResource is a Config specialized to a particular `schema.GroupResource`
    type ConfigForResource struct {
    	// Config is the resource-independent configuration
    	Config
    
    	// GroupResource is the relevant one
    	GroupResource schema.GroupResource
    }
    
    // ForResource specializes to the given resource
    func (config *Config) ForResource(resource schema.GroupResource) *ConfigForResource {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/config.go

    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/types"
    	"cmd/internal/obj"
    	"cmd/internal/src"
    	"internal/buildcfg"
    )
    
    // A Config holds readonly compilation information.
    // It is created once, early during compilation,
    // and shared across all compilations.
    type Config struct {
    	arch           string // "amd64", etc.
    	PtrSize        int64  // 4 or 8; copy of cmd/internal/sys.Arch.PtrSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. plugin/pkg/admission/imagepolicy/config.go

    }
    
    func normalizeWebhookConfig(config *imagePolicyWebhookConfig) (err error) {
    	config.RetryBackoff, err = normalizeConfigDuration("backoff", time.Millisecond, config.RetryBackoff, minRetryBackoff, maxRetryBackoff, defaultRetryBackoff)
    	if err != nil {
    		return err
    	}
    	config.AllowTTL, err = normalizeConfigDuration("allow cache", time.Second, config.AllowTTL, minAllowTTL, maxAllowTTL, defaultAllowTTL)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 25 04:07:36 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. docs_src/settings/app03/config.py

    from pydantic_settings import BaseSettings
    
    
    class Settings(BaseSettings):
        app_name: str = "Awesome API"
        admin_email: str
        items_per_user: int = 50
    
        class Config:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 204 bytes
    - Viewed (0)
  9. pkg/kubeapiserver/authenticator/config.go

    		if err != nil {
    			return nil, nil, nil, nil, err
    		}
    		tokenAuthenticators = append(tokenAuthenticators, authenticator.WrapAudienceAgnosticToken(config.APIAudiences, tokenAuth))
    	}
    	if len(config.ServiceAccountKeyFiles) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. pkg/credentialprovider/plugin/config.go

    	kubeletconfig "k8s.io/kubernetes/pkg/kubelet/apis/config"
    )
    
    // readCredentialProviderConfigFile receives a path to a config file and decodes it
    // into the internal CredentialProviderConfig type.
    func readCredentialProviderConfigFile(configPath string) (*kubeletconfig.CredentialProviderConfig, error) {
    	if configPath == "" {
    		return nil, fmt.Errorf("credential provider config path is empty")
    	}
    
    	data, err := os.ReadFile(configPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top