Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,815 for confv1 (0.16 sec)

  1. pilot/pkg/model/config.go

    	Update(config config.Config) (newRevision string, err error)
    	UpdateStatus(config config.Config) (newRevision string, err error)
    
    	// Patch applies only the modifications made in the PatchFunc rather than doing a full replace. Useful to avoid
    	// read-modify-write conflicts when there are many concurrent-writers to the same resource.
    	Patch(orig config.Config, patchFn config.PatchFunc) (string, error)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. 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)
  3. pkg/test/framework/components/echo/config.go

    // TODO putting this here for now to deal with circular imports, needs to be moved
    type Cluster interface {
    	cluster.Cluster
    
    	CanDeploy(Config) (Config, bool)
    }
    
    // Configurable is and object that has Config.
    type Configurable interface {
    	Config() Config
    
    	// ServiceName is the name of this service within the namespace.
    	ServiceName() string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K 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. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            when:
            def conf1 = dependencyScope("conf1")
            def conf2 = dependencyScope("conf2")
            def conf3 = dependencyScope("conf3", [conf1, conf2])
            resolvable("child1", [conf3])
            resolvable("child2", [conf1])
            resolvable("other")
    
            conf1.getDependencies().add(dependency1)
            conf2.getDependencies().add(dependency2)
            conf3.getDependencies().add(dependency3)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/config.go

    package driver
    
    import (
    	"fmt"
    	"net/url"
    	"reflect"
    	"strconv"
    	"strings"
    	"sync"
    )
    
    // config holds settings for a single named config.
    // The JSON tag name for a field is used both for JSON encoding and as
    // a named variable.
    type config struct {
    	// Filename for file-based output formats, stdout by default.
    	Output string `json:"-"`
    
    	// Display options.
    	CallTree            bool    `json:"call_tree,omitempty"`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/config.go

    )
    
    func init() {
    	install.Install(scheme)
    }
    
    // LoadConfiguration loads the provided configuration.
    func LoadConfiguration(config io.Reader) (*resourcequotaapi.Configuration, error) {
    	// if no config is provided, return a default configuration
    	if config == nil {
    		externalConfig := &resourcequotav1.Configuration{}
    		scheme.Default(externalConfig)
    		internalConfig := &resourcequotaapi.Configuration{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. pkg/credentialprovider/config.go

    )
    
    // DockerConfigJSON represents ~/.docker/config.json file info
    // see https://github.com/docker/docker/pull/12009
    type DockerConfigJSON struct {
    	Auths DockerConfig `json:"auths"`
    	// +optional
    	HTTPHeaders map[string]string `json:"HttpHeaders,omitempty"`
    }
    
    // DockerConfig represents the config file used by the docker CLI.
    // This config that represents the credentials that should be used
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 19 15:11:57 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    		return nil, "", fmt.Errorf("error decoding encryption provider configuration file %q: %w", filepath, err)
    	}
    	config, ok := configObj.(*apiserver.EncryptionConfiguration)
    	if !ok {
    		return nil, "", fmt.Errorf("got unexpected config type: %v", gvk)
    	}
    
    	return config, contentHash, validation.ValidateEncryptionConfiguration(config, reload).ToAggregate()
    }
    
    func loadDataAndHash(filepath string) ([]byte, string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  10. plugin/pkg/admission/podtolerationrestriction/config.go

    )
    
    func init() {
    	install.Install(scheme)
    }
    
    // LoadConfiguration loads the provided configuration.
    func loadConfiguration(config io.Reader) (*internalapi.Configuration, error) {
    	// if no config is provided, return a default configuration
    	if config == nil {
    		externalConfig := &versionedapi.Configuration{}
    		scheme.Default(externalConfig)
    		internalConfig := &internalapi.Configuration{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 08 22:33:50 UTC 2018
    - 2.2K bytes
    - Viewed (0)
Back to top