Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for vm_config (0.18 sec)

  1. istioctl/pkg/authz/testdata/configdump.yaml

                  "name": "istio.metadata_exchange",
                  "typed_config": {
                   "@type": "type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm",
                   "config": {
                    "vm_config": {
                     "runtime": "envoy.wasm.runtime.null",
                     "code": {
                      "local": {
                       "inline_string": "envoy.wasm.metadata_exchange"
                      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  2. src/main/webapp/js/admin/bootstrap.min.js.map

         const nextElementInterval = parseInt(nextElement.getAttribute('data-interval'), 10)\n      if (nextElementInterval) {\n        this._config.defaultInterval = this._config.defaultInterval || this._config.interval\n        this._config.interval = nextElementInterval\n      } else {\n        this._config.interval = this._config.defaultInterval || this._config.interval\n      }\n\n      const transitionDuration = Util.getTransitionDurationFromElement(activeElement)\n\n      $(activeElement)\n  ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  3. src/main/webapp/js/bootstrap.min.js.map

         const nextElementInterval = parseInt(nextElement.getAttribute('data-interval'), 10)\n      if (nextElementInterval) {\n        this._config.defaultInterval = this._config.defaultInterval || this._config.interval\n        this._config.interval = nextElementInterval\n      } else {\n        this._config.interval = this._config.defaultInterval || this._config.interval\n      }\n\n      const transitionDuration = Util.getTransitionDurationFromElement(activeElement)\n\n      $(activeElement)\n  ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      if [[ -z "${flags}" ]]; then
        local -r km_config="${KUBE_HOME}/node-problem-detector/config/kernel-monitor.json"
        # TODO(random-liu): Handle this for alternative container runtime.
        local -r dm_config="${KUBE_HOME}/node-problem-detector/config/docker-monitor.json"
        local -r sm_config="${KUBE_HOME}/node-problem-detector/config/systemd-monitor.json"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    			"invalid vm config - invalid env name",
    			&extensions.WasmPlugin{
    				Url: "test.com/test",
    				VmConfig: &extensions.VmConfig{
    					Env: []*extensions.EnvVar{
    						{
    							Name:      "",
    							ValueFrom: extensions.EnvValueSource_HOST,
    						},
    					},
    				},
    			},
    			"spec.vmConfig.env invalid", "",
    		},
    		{
    			"invalid vm config - duplicate env",
    			&extensions.WasmPlugin{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    		}
    	}
    	return nil
    }
    
    func validateWasmPluginVMConfig(vm *extensions.VmConfig) error {
    	if vm == nil || len(vm.Env) == 0 {
    		return nil
    	}
    
    	keys := sets.New[string]()
    	for _, env := range vm.Env {
    		if env == nil {
    			continue
    		}
    
    		if env.Name == "" {
    			return fmt.Errorf("spec.vmConfig.env invalid")
    		}
    
    		if keys.InsertContains(env.Name) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    			return fmt.Errorf("finding %s: %w", name, err)
    		}
    		gofiles = append(gofiles, file)
    	}
    	a.Package.CompiledGoFiles = gofiles
    	return nil
    }
    
    // vetConfig is the configuration passed to vet describing a single package.
    type vetConfig struct {
    	ID           string   // package ID (example: "fmt [fmt.test]")
    	Compiler     string   // compiler name (gc, gccgo)
    	Dir          string   // directory containing package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. src/debug/elf/elf.go

    	DT_GNU_HASH     DynTag = 0x6ffffef5
    	DT_TLSDESC_PLT  DynTag = 0x6ffffef6
    	DT_TLSDESC_GOT  DynTag = 0x6ffffef7
    	DT_GNU_CONFLICT DynTag = 0x6ffffef8
    	DT_GNU_LIBLIST  DynTag = 0x6ffffef9
    	DT_CONFIG       DynTag = 0x6ffffefa
    	DT_DEPAUDIT     DynTag = 0x6ffffefb
    	DT_AUDIT        DynTag = 0x6ffffefc
    	DT_PLTPAD       DynTag = 0x6ffffefd
    	DT_MOVETAB      DynTag = 0x6ffffefe
    	DT_SYMINFO      DynTag = 0x6ffffeff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    oci] rule: 'isURL(self) ? (url(self).getScheme() in ['''', ''http'', ''https'', ''oci'', ''file'']) : (isURL(''http://'' + self) && url(''http://'' +self).getScheme() in ['''', ''http'', ''https'', ''oci'', ''file''])' verificationKey: type: string vmConfig: description: Configuration for a Wasm VM. properties: env: description: Specifies environment variables to be injected to this VM. items: properties: name: description: Name of the environment variable. maxLength: 256 minLength: 1 type: string value:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top