Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 378 for wasmv3 (0.17 sec)

  1. src/runtime/internal/wasitest/nonblock_test.go

    // output order wouldn't match.
    
    type fifo struct {
    	file *os.File
    	path string
    }
    
    func TestNonblock(t *testing.T) {
    	if target != "wasip1/wasm" {
    		t.Skip()
    	}
    
    	switch os.Getenv("GOWASIRUNTIME") {
    	case "wasmer":
    		t.Skip("wasmer does not support non-blocking I/O")
    	}
    
    	for _, mode := range []string{"os.OpenFile", "os.NewFile"} {
    		t.Run(mode, func(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 29 15:35:27 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. releasenotes/notes/reliable-wasm-remote-load.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: extensibility
    issue:
      - 29989
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 09 20:31:49 UTC 2021
    - 162 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.js-wasm.txt

    golang.org/******@****.***-wasm
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.js-wasm"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/sh
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 290 bytes
    - Viewed (0)
  6. src/cmd/internal/obj/wasm/wasmobj.go

    				loadOffset := f.Offset + 8
    
    				// We're reading the value from the Go stack onto the WASM stack and leaving it there
    				// for CALL to pick them up.
    				switch f.Type {
    				case obj.WasmI32:
    					p = appendp(p, AI32Load, constAddr(loadOffset))
    				case obj.WasmI64:
    					p = appendp(p, AI64Load, constAddr(loadOffset))
    				case obj.WasmF32:
    					p = appendp(p, AF32Load, constAddr(loadOffset))
    				case obj.WasmF64:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    Keith Randall <******@****.***> 1676485312 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K 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. releasenotes/notes/wasm-secret.yaml

    Pengyuan Bian <******@****.***> 1648841272 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 01 19:27:52 UTC 2022
    - 186 bytes
    - Viewed (0)
  10. tests/integration/telemetry/api/testdata/wasm-filter.yaml

    zirain <******@****.***> 1666116203 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 475 bytes
    - Viewed (0)
Back to top