Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 211 for Cfg (0.02 sec)

  1. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    		name          string
    		cfg           *kubeadmapi.ClusterConfiguration
    		isIPv6        bool
    		expectedMask  int
    		expectedError bool
    	}{
    		{
    			name:         "dual ipv4 default mask",
    			cfg:          &kubeadmapi.ClusterConfiguration{},
    			isIPv6:       false,
    			expectedMask: 24,
    		},
    		{
    			name: "dual ipv4 custom mask",
    			cfg: &kubeadmapi.ClusterConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy.go

    		istiodSAN:             ia.cfg.IstiodSAN,
    		clusterID:             ia.secOpts.ClusterID,
    		handlers:              map[string]ResponseHandler{},
    		stopChan:              make(chan struct{}),
    		healthChecker:         health.NewWorkloadHealthChecker(ia.proxyConfig.ReadinessProbe, envoyProbe, ia.cfg.ProxyIPAddresses, ia.cfg.IsIPv6),
    		xdsHeaders:            ia.cfg.XDSHeaders,
    		xdsUdsPath:            ia.cfg.XdsUdsPath,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. cni/pkg/install/cniconfig_test.go

    			PluginLogLevel:     "debug",
    			KubeconfigFilename: kubeconfigFilename,
    		}
    
    		cfg := config.InstallConfig{
    			CNIConfName:        c.specifiedConfName,
    			ChainedCNIPlugin:   c.chainedCNIPlugin,
    			PluginLogLevel:     "debug",
    			KubeconfigFilename: kubeconfigFilename,
    		}
    		test := func(cfg config.InstallConfig) func(t *testing.T) {
    			return func(t *testing.T) {
    				// Create temp directory for files
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

            }
        }
    
        public void exportCsv(final Writer writer) {
            final CsvConfig cfg = new CsvConfig(',', '"', '"');
            cfg.setEscapeDisabled(false);
            cfg.setQuoteDisabled(false);
            @SuppressWarnings("resource")
            final CsvWriter csvWriter = new CsvWriter(writer, cfg);
            try {
                final List<String> list = new ArrayList<>();
                list.add("SessionId");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/controller.go

    	statusController := c.statusController.Load()
    	if statusController == nil {
    		return
    	}
    	for _, cfg := range configs {
    		ws := cfg.Status.(*kstatus.WrappedStatus)
    		if ws.Dirty {
    			res := status.ResourceFromModelConfig(cfg)
    			statusController.EnqueueStatusUpdateResource(ws.Unwrap(), res)
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/componentconfigs/fakeconfig_test.go

    	return cc.configBase.Unmarshal(docmap, &cc.config)
    }
    
    func (cc *clusterConfig) Get() interface{} {
    	return &cc.config
    }
    
    func (cc *clusterConfig) Set(cfg interface{}) {
    	cc.config = *cfg.(*kubeadmapiv1.ClusterConfiguration)
    }
    
    func (cc *clusterConfig) Default(_ *kubeadmapi.ClusterConfiguration, _ *kubeadmapi.APIEndpoint, _ *kubeadmapi.NodeRegistrationOptions) {
    	cc.config.ClusterName = "foo"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:36:00 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry_logging.go

    	if provider.LogFormat != nil {
    		labels = provider.LogFormat.Labels
    	}
    
    	cfg := buildOpenTelemetryAccessLogConfig(logName, hostname, cluster, f, labels)
    
    	return &accesslog.AccessLog{
    		Name:       OtelEnvoyALSName,
    		ConfigType: &accesslog.AccessLog_TypedConfig{TypedConfig: protoconv.MessageToAny(cfg)},
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/serviceentry/controller.go

    func ConvertWorkloadEntry(cfg config.Config) *networking.WorkloadEntry {
    	wle := cfg.Spec.(*networking.WorkloadEntry)
    	if wle == nil {
    		return nil
    	}
    
    	// we will merge labels from metadata with spec, with precedence to the metadata
    	labels := maps.MergeCopy(wle.Labels, cfg.Labels)
    	// shallow copy
    	copied := &networking.WorkloadEntry{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  9. pkg/kube/client.go

    	g, _ := errgroup.WithContext(context.TODO())
    	for _, yaml := range yamls {
    		cfgs := yml.SplitString(yaml)
    		for _, cfg := range cfgs {
    			cfg := cfg
    			g.Go(func() error {
    				return c.ssapplyYAML(cfg, namespace, false)
    			})
    		}
    	}
    	return g.Wait()
    }
    
    func (c *client) ApplyYAMLFilesDryRun(namespace string, yamlFiles ...string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  10. pkg/bootstrap/instance_test.go

    	if err != nil {
    		return nil, err
    	}
    	cfg := &meshconfig.ProxyConfig{}
    
    	err = prototext.Unmarshal(content, cfg)
    	if err != nil {
    		return nil, err
    	}
    
    	// Exported from makefile or env
    	cfg.ConfigPath = filepath.Join(out, "/bootstrap/", base)
    	cfg.CustomConfigFile = filepath.Join(env.IstioSrc, "/tools/packaging/common/envoy_bootstrap.json")
    	if cfg.StatusPort == 0 {
    		cfg.StatusPort = 15020
    	}
    	return cfg, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top