Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 326 for Cfg (0.02 sec)

  1. tools/istio-iptables/pkg/capture/run.go

    		}
    		cfg.ruleBuilder.AppendRule(iptableslog.JumpInbound, constants.PREROUTING, table, "-p", constants.TCP,
    			"-j", constants.ISTIOINBOUND)
    
    		if cfg.cfg.InboundPortsInclude == "*" {
    			// Apply any user-specified port exclusions.
    			if cfg.cfg.InboundPortsExclude != "" {
    				for _, port := range split(cfg.cfg.InboundPortsExclude) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  2. internal/config/api/api.go

    	if err != nil {
    		return cfg, err
    	}
    
    	cfg.RequestsMax = requestsMax
    	if requestsMax < 0 {
    		return cfg, errors.New("invalid API max requests value")
    	}
    
    	requestsDeadline, err := time.ParseDuration(env.Get(EnvAPIRequestsDeadline, kvs.GetWithDefault(apiRequestsDeadline, DefaultKVS)))
    	if err != nil {
    		return cfg, err
    	}
    	cfg.RequestsDeadline = requestsDeadline
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/kube.go

    	}
    
    	if cfg.GatewayValues != "" {
    		i.gatewayIOP.file = filepath.Join(workDir, "custom_gateways.yaml")
    		_, err = initIOPFile(cfg, i.gatewayIOP.file, cfg.GatewayValues)
    		if err != nil {
    			return iopFiles{}, err
    		}
    	}
    	if cfg.EastWestGatewayValues != "" {
    		i.eastwestIOP.file = filepath.Join(workDir, "eastwest.yaml")
    		_, err = initIOPFile(cfg, i.eastwestIOP.file, cfg.EastWestGatewayValues)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/etcd/local.go

    		{Name: "data-dir", Value: cfg.Etcd.Local.DataDir},
    		{Name: "cert-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdServerCertName)},
    		{Name: "key-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdServerKeyName)},
    		{Name: "trusted-ca-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdCACertName)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  5. src/cmd/go/internal/envcmd/env.go

    		{Name: "GOOS", Value: cfg.Goos, Changed: cfg.Goos != runtime.GOOS},
    		{Name: "GOPATH", Value: cfg.BuildContext.GOPATH, Changed: cfg.GOPATHChanged},
    		{Name: "GOPRIVATE", Value: cfg.GOPRIVATE},
    		{Name: "GOPROXY", Value: cfg.GOPROXY, Changed: cfg.GOPROXYChanged},
    		{Name: "GOROOT", Value: cfg.GOROOT},
    		{Name: "GOSUMDB", Value: cfg.GOSUMDB, Changed: cfg.GOSUMDBChanged},
    		{Name: "GOTMPDIR", Value: cfg.Getenv("GOTMPDIR")},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/crdclient/client_test.go

    			if _, err := store.(*Client).Patch(*cfg, func(cfg config.Config) (config.Config, types.PatchType) {
    				cfg.Annotations["fizz"] = "buzz"
    				patchedCfg = cfg
    				return cfg, types.JSONPatchType
    			}); err != nil {
    				t.Errorf("unexpected err in Patch: %v", err)
    			}
    			// validate it is updated
    			retry.UntilSuccessOrFail(t, func() error {
    				cfg := store.Get(r.GroupVersionKind(), configName, configMeta.Namespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. pkg/test/framework/components/cluster/kube/factory.go

    	cfg, err := validConfig(origCfg)
    	if err != nil {
    		return nil, err
    	}
    
    	kubeconfigPath := cfg.Meta.String(kubeconfigMetaKey)
    	kubeconfigPath, err = file.NormalizePath(kubeconfigPath)
    	if err != nil {
    		return nil, err
    	}
    
    	var client istioKube.CLIClient
    	if len(cfg.HTTPProxy) > 0 {
    		proxyURL, err := url.Parse(cfg.HTTPProxy)
    		if err != nil {
    			return nil, err
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. internal/config/ilm/ilm.go

    func LookupConfig(kvs config.KVS) (cfg Config, err error) {
    	cfg = Config{
    		TransitionWorkers: 100,
    		ExpirationWorkers: 100,
    	}
    
    	if err = config.CheckValidKeys(config.ILMSubSys, kvs, DefaultKVS); err != nil {
    		return cfg, err
    	}
    
    	tw, err := strconv.Atoi(env.Get(EnvILMTransitionWorkers, kvs.GetWithDefault(transitionWorkers, DefaultKVS)))
    	if err != nil {
    		return cfg, err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. cmd/admin-handlers-config-kv.go

    		return
    	}
    
    	cfg, err := readServerConfig(ctx, objectAPI, nil)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	if err = cfg.DelFrom(bytes.NewReader(kvBytes)); err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	if err = validateConfig(ctx, cfg, subSys); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. cni/pkg/iptables/iptables_test.go

    	tt := struct {
    		name   string
    		config func(cfg *Config)
    	}{
    		"default",
    		func(cfg *Config) {
    			cfg.RedirectDNS = true
    		},
    	}
    
    	probeSNATipv4 := netip.MustParseAddr("169.254.7.127")
    	probeSNATipv6 := netip.MustParseAddr("e9ac:1e77:90ca:399f:4d6d:ece2:2f9b:3164")
    
    	cfg := constructTestConfig()
    	tt.config(cfg)
    	ext := &dep.DependenciesStub{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 20:16:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top