Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 378 for wasmv3 (0.46 sec)

  1. pkg/istio-agent/xds_proxy_delta_test.go

    	wasm := &wasm.Wasm{
    		Config: &wasmv3.PluginConfig{
    			Vm: &wasmv3.PluginConfig_VmConfig{
    				VmConfig: &wasmv3.VmConfig{
    					Code: &core.AsyncDataSource{Specifier: &core.AsyncDataSource_Local{
    						Local: &core.DataSource{
    							Specifier: &core.DataSource_Filename{
    								Filename: "test",
    							},
    						},
    					}},
    				},
    			},
    		},
    	}
    	wantEcdsConfig := &core.TypedExtensionConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. pkg/istio-agent/xds_proxy_test.go

    		t.Errorf("xds proxy ecds wasm conversion number of received resource got %v want 1", len(gotResp.Resources))
    	}
    	gotEcdsConfig := &core.TypedExtensionConfig{}
    	if err := gotResp.Resources[0].UnmarshalTo(gotEcdsConfig); err != nil {
    		t.Fatalf("wasm config conversion output %v failed to unmarshal", gotResp.Resources[0])
    	}
    	wasm := &wasm.Wasm{
    		Config: &wasmv3.PluginConfig{
    			Vm: &wasmv3.PluginConfig_VmConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. pkg/model/wasm.go

    	"istio.io/istio/pkg/wellknown"
    )
    
    const (
    	// name of environment variable at Wasm VM, which will carry the Wasm image pull secret.
    	WasmSecretEnv = "ISTIO_META_WASM_IMAGE_PULL_SECRET"
    	// name of environment variable at Wasm VM, which will carry the Wasm image pull policy.
    	WasmPolicyEnv = "ISTIO_META_WASM_IMAGE_PULL_POLICY"
    	// name of environment variable at Wasm VM, which will carry the resource version of WasmPlugin.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. pilot/pkg/model/wasm.go

    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",
    			Code: &core.AsyncDataSource{Specifier: &core.AsyncDataSource_Local{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/abi.go

    	ir.CurFunc = savedcurfn
    }
    
    // CreateWasmImportWrapper creates a wrapper for imported WASM functions to
    // adapt them to the Go calling convention. The body for this function is
    // generated in cmd/internal/obj/wasm/wasmobj.go
    func CreateWasmImportWrapper(fn *ir.Func) bool {
    	if fn.WasmImport == nil {
    		return false
    	}
    	if buildcfg.GOARCH != "wasm" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. releasenotes/notes/wasm-extension-dashboard.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 25843
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 26 17:22:57 UTC 2020
    - 150 bytes
    - Viewed (0)
  7. releasenotes/notes/wasm-decompress.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 08 20:04:00 UTC 2022
    - 181 bytes
    - Viewed (0)
  8. releasenotes/notes/wasm-download-fallback.yaml

    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
        **Improved** When Wasm module downloading fails and fail_open is true, a RBAC filter allowing all the traffics is passed to Envoy instead of the original Wasm filter.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 02 21:41:25 UTC 2022
    - 453 bytes
    - Viewed (0)
  9. releasenotes/notes/wasm-multilayer.yaml

    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
        **Improved** WasmPlugin images (docker and OCI standard image) to support more than one layer as per spec changes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 12 20:20:52 UTC 2022
    - 261 bytes
    - Viewed (0)
  10. misc/wasm/go_wasip1_wasm_exec

    		;;
    	"wasmer")
    		exec wasmer run --dir=/ --env PWD="$PWD" --env PATH="$PATH" ${GOWASIRUNTIMEARGS:-} "$1" -- "${@:2}"
    		;;
    	"wazero")
    		exec wazero run -mount /:/ -env-inherit -cachedir "${TMPDIR:-/tmp}"/wazero ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}"
    		;;
    	"wasmtime" | "")
    		exec wasmtime run --dir=/ --env PWD="$PWD" --env PATH="$PATH" -W max-wasm-stack=1048576 ${GOWASIRUNTIMEARGS:-} "$1" "${@:2}"
    		;;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 17:09:10 UTC 2024
    - 797 bytes
    - Viewed (0)
Back to top