Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 177 for wasmv3 (0.3 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. 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)
  5. 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)
  6. tests/integration/telemetry/api/testdata/bad-wasm-envoy-filter-fail-open.yaml

    apiVersion: extensions.istio.io/v1alpha1
    kind: WasmPlugin
    metadata:
      name: bad-filter-config-failopen
    spec:
      url: https://bad-url.wasm
      sha256: f2ca1bb6c7e907d06dafe4687e579fce76b37e4e93b7605022da52e6ccc26fd2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 00:53:57 UTC 2024
    - 239 bytes
    - Viewed (0)
  7. releasenotes/notes/wasm-cache-with-tag-stripped-url.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
        **Improved** Use tag-stripped URL + checksum as a Wasm module cachekey, and the tagged URL is separately cached. 
        This may increase the chance of cache hit (e.g., trying to find the same image with both of the tagged and digest URLs.)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 23 08:37:23 UTC 2024
    - 402 bytes
    - Viewed (0)
  8. src/cmd/link/internal/wasm/asm.go

    	}
    }
    
    func fieldsToTypes(fields []obj.WasmField) []byte {
    	b := make([]byte, len(fields))
    	for i, f := range fields {
    		switch f.Type {
    		case obj.WasmI32, obj.WasmPtr:
    			b[i] = I32
    		case obj.WasmI64:
    			b[i] = I64
    		case obj.WasmF32:
    			b[i] = F32
    		case obj.WasmF64:
    			b[i] = F64
    		default:
    			panic(fmt.Sprintf("fieldsToTypes: unknown field type: %d", f.Type))
    		}
    	}
    	return b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  9. tests/integration/ambient/testdata/wasm-filter.yaml

    Adil Mohamed M P <******@****.***> 1717448525 +0530
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 513 bytes
    - Viewed (0)
  10. pkg/wasm/convert_test.go

    					t.Errorf("wasm config conversion output index %d got %v want %v", i, ec, c.wantOutput[i])
    				}
    			}
    			if c.wantErr && gotErr == nil {
    				t.Error("wasm config conversion fails to raise an error")
    			} else if !c.wantErr && gotErr != nil {
    				t.Errorf("wasm config conversion got unexpected error: %v", gotErr)
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top