Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for cmconfig (0.19 sec)

  1. 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)
  2. pkg/wasm/convert_test.go

    						Value: messageToStruct(t, &wasm.Wasm{
    							Config: &v3.PluginConfig{
    								Vm: &v3.PluginConfig_VmConfig{
    									VmConfig: &v3.VmConfig{
    										Code: &core.AsyncDataSource{},
    									},
    								},
    							},
    						}),
    					},
    				),
    			})},
    			wantNack: true,
    		},
    		{
    			name: "empty wasm in typed extension config",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. pilot/pkg/model/extensions_test.go

    	cases := []struct {
    		desc     string
    		vm       *extensions.VmConfig
    		policy   extensions.PullPolicy
    		expected *wasmextensions.PluginConfig_VmConfig
    	}{
    		{
    			desc:   "Build VMConfig without a base VMConfig",
    			vm:     nil,
    			policy: extensions.PullPolicy_UNSPECIFIED_POLICY,
    			expected: &wasmextensions.PluginConfig_VmConfig{
    				VmConfig: &wasmextensions.VmConfig{
    					Runtime: defaultRuntime,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/hns_test.go

    	t.Skip("Skipping failing test on Windows.")
    	hns := hns{hcn: newHcnImpl()}
    	Network := mustTestNetwork(t)
    
    	ipConfig := &hcn.IpConfig{
    		IpAddress: epIpAddress,
    	}
    	Endpoint := &hcn.HostComputeEndpoint{
    		IpConfigurations: []hcn.IpConfig{*ipConfig},
    		MacAddress:       epMacAddress,
    		SchemaVersion: hcn.SchemaVersion{
    			Major: 2,
    			Minor: 0,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. pilot/pkg/model/extensions.go

    	cfg := &wasmextensions.PluginConfig_VmConfig{
    		VmConfig: &wasmextensions.VmConfig{
    			Runtime: defaultRuntime,
    			Code:    datasource,
    			EnvironmentVariables: &wasmextensions.EnvironmentVariables{
    				KeyValues: map[string]string{},
    			},
    		},
    	}
    
    	if wasmPlugin.ImagePullSecret != "" {
    		cfg.VmConfig.EnvironmentVariables.KeyValues[WasmSecretEnv] = wasmPlugin.ImagePullSecret
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. tests/integration/helm/upgrade/util.go

    			nsConfig.Get(helmtest.CniReleaseName), overrideValuesFile, helmtest.Timeout)
    		if err != nil {
    			ctx.Fatalf("failed to upgrade istio %s chart", helmtest.CniReleaseName)
    		}
    	}
    
    	if isAmbient {
    		// Upgrade ztunnel chart
    		err = h.UpgradeChart(helmtest.ZtunnelReleaseName, filepath.Join(helmtest.ManifestsChartPath, helmtest.ZtunnelChartsDir),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. istioctl/pkg/workload/workload_test.go

    // Each subdirectory contains two input files: workloadgroup.yaml and meshconfig.yaml that are used
    // to generate golden outputs from the VM command.
    func TestWorkloadEntryConfigure(t *testing.T) {
    	noClusterID := "failed to automatically determine the --clusterID"
    	files, err := os.ReadDir("testdata/vmconfig")
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_traffic_policy.go

    }
    
    // applyRoundRobinLoadBalancer will set the LbPolicy and create an LbConfig for ROUND_ROBIN if used in LoadBalancerSettings
    func applyRoundRobinLoadBalancer(c *cluster.Cluster, loadbalancer *networking.LoadBalancerSettings) {
    	c.LbPolicy = cluster.Cluster_ROUND_ROBIN
    
    	if loadbalancer.GetWarmupDurationSecs() != nil {
    		c.LbConfig = &cluster.Cluster_RoundRobinLbConfig_{
    			RoundRobinLbConfig: &cluster.Cluster_RoundRobinLbConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/table_test.go

    		scheme.AddKnownTypes(metav1.SchemeGroupVersion, &metav1.Table{}, &metav1.TableOptions{})
    
    		crConfig := *config
    		crConfig.GroupVersion = &gv
    		crConfig.APIPath = "/apis"
    		crConfig.NegotiatedSerializer = codecs.WithoutConversion()
    		crRestClient, err := rest.RESTClientFor(&crConfig)
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// metav1beta1 table
    		{
    			ret, err := crRestClient.Get().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 18.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

    import org.codelibs.fess.es.config.cbean.ElevateWordCB;
    import org.codelibs.fess.es.config.exbhv.ElevateWordBhv;
    import org.codelibs.fess.es.config.exbhv.ElevateWordToLabelBhv;
    import org.codelibs.fess.es.config.exbhv.LabelTypeBhv;
    import org.codelibs.fess.es.config.exentity.ElevateWord;
    import org.codelibs.fess.es.config.exentity.ElevateWordToLabel;
    import org.codelibs.fess.es.config.exentity.LabelType;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top