Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,339 for config2 (0.12 sec)

  1. 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)
  2. pkg/test/framework/components/istio/config.go

    		EgressGatewayServiceName:      DefaultEgressGatewayServiceName,
    		EgressGatewayIstioLabel:       DefaultEgressGatewayIstioLabel,
    	}
    )
    
    // Config provide kube-specific Config from flags.
    type Config struct {
    	// The namespace where the Istio components (<=1.1) reside in a typical deployment (default: "istio-system").
    	SystemNamespace string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top