Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 378 for wasmv3 (0.17 sec)

  1. test/abi/more_intstar_input.go

    // run
    
    //go:build !wasm
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // wasm is excluded because the compiler chatter about register abi pragma ends up
    // on stdout, and causes the expected output to not match.
    
    package main
    
    var sink int
    
    //go:registerparams
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 976 bytes
    - Viewed (0)
  2. test/abi/named_return_stuff.go

    // run
    
    //go:build !wasm
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // wasm is excluded because the compiler chatter about register abi pragma ends up
    // on stdout, and causes the expected output to not match.
    
    package main
    
    import (
    	"fmt"
    )
    
    var sink *string
    
    var y int
    
    //go:registerparams
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/os/sys_js.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build js && wasm
    
    package os
    
    // supportsCloseOnExec reports whether the platform supports the
    // O_CLOEXEC flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 313 bytes
    - Viewed (0)
  4. src/syscall/js/export_test.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build js && wasm
    
    package js
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 22:38:00 UTC 2021
    - 211 bytes
    - Viewed (0)
  5. src/internal/poll/fd_poll_js.go

    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build js && wasm
    
    package poll
    
    import (
    	"syscall"
    	"time"
    )
    
    type pollDesc struct {
    	fd      *FD
    	closing bool
    }
    
    func (pd *pollDesc) init(fd *FD) error { pd.fd = fd; return nil }
    
    func (pd *pollDesc) close() {}
    
    func (pd *pollDesc) evict() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:12:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. src/testing/run_example_wasm.go

    )
    
    // TODO(@musiol, @odeke-em): unify this code back into
    // example.go when js/wasm gets an os.Pipe implementation.
    func runExample(eg InternalExample) (ok bool) {
    	if chatty.on {
    		fmt.Printf("%s=== RUN   %s\n", chatty.prefix(), eg.Name)
    	}
    
    	// Capture stdout to temporary file. We're not using
    	// os.Pipe because it is not supported on js/wasm.
    	stdout := os.Stdout
    	f := createTempFile(eg.Name)
    	os.Stdout = f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/internal/syscall/unix/fcntl_js.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build js && wasm
    
    package unix
    
    import "syscall"
    
    func Fcntl(fd int, cmd int, arg int) (int, error) {
    	return 0, syscall.ENOSYS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 26 17:59:52 UTC 2023
    - 295 bytes
    - Viewed (0)
  8. src/internal/syscall/unix/nonblocking_js.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build js && wasm
    
    package unix
    
    func IsNonblock(fd int) (nonblocking bool, err error) {
    	return false, nil
    }
    
    func HasNonblockFlag(flag int) bool {
    	return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:12:04 UTC 2023
    - 329 bytes
    - Viewed (0)
  9. .idea/dictionaries/skuzmich.xml

    <component name="ProjectDictionaryState">
      <dictionary name="skuzmich">
        <words>
          <w>anyref</w>
          <w>dataref</w>
          <w>ushr</w>
          <w>wasi</w>
          <w>wasm</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 29 19:25:23 UTC 2022
    - 221 bytes
    - Viewed (0)
  10. samples/wasm_modules/header_injector/Dockerfile

    FROM scratch
    ARG WASM_BINARY
    WORKDIR /
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 24 21:22:06 UTC 2022
    - 70 bytes
    - Viewed (0)
Back to top