Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 256 for cmconfig (0.41 sec)

  1. pilot/pkg/model/wasm.go

    package model
    
    import (
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	wasm "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3"
    )
    
    // ConstructVMConfig constructs a VM config.
    func ConstructVMConfig(name string) *wasm.PluginConfig_VmConfig {
    	return &wasm.PluginConfig_VmConfig{
    		VmConfig: &wasm.VmConfig{
    			Runtime: "envoy.wasm.runtime.null",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. cni/pkg/util/pluginutil.go

    		err = fmt.Errorf("error reading plugin from CNI config plugin list")
    		return
    	}
    	return
    }
    
    // Marshal the CNI config map and append a new line
    func MarshalCNIConfig(cniConfigMap map[string]any) ([]byte, error) {
    	cniConfig, err := json.MarshalIndent(cniConfigMap, "", "  ")
    	if err != nil {
    		return nil, err
    	}
    	cniConfig = append(cniConfig, "\n"...)
    	return cniConfig, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.json

                    "@type": "type.googleapis.com/envoy.config.core.v3.TypedExtensionConfig",
                    "name": "default.httpbin-rate-limiting",
                    "typedConfig": {
                        "@type": "type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm",
                        "config": {
                            "name": "default.httpbin-rate-limiting",
                            "vmConfig": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. src/net/interface_bsd_test.go

    	} else {
    		ti.name = fmt.Sprintf("vlan%d", vid)
    	}
    	xname, err := exec.LookPath("ifconfig")
    	if err != nil {
    		return err
    	}
    	ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
    		Path: xname,
    		Args: []string{"ifconfig", ti.name, "create"},
    	})
    	ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
    		Path: xname,
    		Args: []string{"ifconfig", ti.name, "destroy"},
    	})
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/testdata/ecds/output.yaml

    ecdsFilters:
    - ecdsFilter:
        '@type': type.googleapis.com/envoy.config.core.v3.TypedExtensionConfig
        name: default.httpbin-rate-limiting
        typedConfig:
          '@type': type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm
          config:
            configuration: {}
            name: default.httpbin-rate-limiting
            vmConfig:
              code:
                local:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 24 08:16:26 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. cmd/cloud-controller-manager/nodeipamcontroller.go

    	if cloud == nil && ccmConfig.ComponentConfig.KubeCloudShared.CIDRAllocatorType == string(ipam.CloudAllocatorType) {
    		return nil, false, errors.New("--cidr-allocator-type is set to 'CloudAllocator' but cloud provider is not configured")
    	}
    
    	// failure: bad cidrs in config
    	clusterCIDRs, dualStack, err := processCIDRs(ccmConfig.ComponentConfig.KubeCloudShared.ClusterCIDR)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 14 19:06:22 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. 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)
  10. tensorflow/c/experimental/ops/gen/cpp/renderers/cpp_config.h

    #include "tensorflow/core/platform/types.h"
    
    namespace tensorflow {
    namespace generator {
    namespace cpp {
    
    struct CppConfig {
      string category;
      string unit;
      std::vector<string> namespaces;
    
      explicit CppConfig() = default;
      explicit CppConfig(const string &category,
                         const string &name_space = "tensorflow::ops");
    };
    
    }  // namespace cpp
    }  // namespace generator
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 00:34:05 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top