Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 99 for wasmv3 (0.5 sec)

  1. src/crypto/tls/boring_test.go

    		if !isBoringSignatureScheme(sigHash) {
    			t.Errorf("client offered disallowed signature-and-hash %v", sigHash)
    		}
    	}
    }
    
    func TestBoringCertAlgs(t *testing.T) {
    	// NaCl, arm and wasm time out generating keys. Nothing in this test is architecture-specific, so just don't bother on those.
    	if runtime.GOOS == "nacl" || runtime.GOARCH == "arm" || runtime.GOOS == "js" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. src/os/file_unix.go

    // Copyright 2009 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 unix || (js && wasm) || wasip1
    
    package os
    
    import (
    	"internal/poll"
    	"internal/syscall/unix"
    	"io/fs"
    	"runtime"
    	"sync/atomic"
    	"syscall"
    	_ "unsafe" // for go:linkname
    )
    
    const _UTIME_OMIT = unix.UTIME_OMIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/internal/testenv/testenv.go

    	}
    }
    
    // CPUIsSlow reports whether the CPU running the test is suspected to be slow.
    func CPUIsSlow() bool {
    	switch runtime.GOARCH {
    	case "arm", "mips", "mipsle", "mips64", "mips64le", "wasm":
    		return true
    	}
    	return false
    }
    
    // SkipIfShortAndSlow skips t if -short is set and the CPU running the test is
    // suspected to be slow.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cfg/cfg.go

    		return "GOMIPS64", GOMIPS64, goMIPS64Changed
    	case "ppc64", "ppc64le":
    		return "GOPPC64", GOPPC64, goPPC64Changed
    	case "riscv64":
    		return "GORISCV64", GORISCV64, goRISCV64Changed
    	case "wasm":
    		return "GOWASM", GOWASM, goWASMChanged
    	}
    	return "", "", false
    }
    
    // envOr returns Getenv(key) if set, or else def.
    func envOr(key, def string) string {
    	val := Getenv(key)
    	if val == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/value.go

    	Args []*Value
    
    	// Containing basic block
    	Block *Block
    
    	// Source position
    	Pos src.XPos
    
    	// Use count. Each appearance in Value.Args and Block.Controls counts once.
    	Uses int32
    
    	// wasm: Value stays on the WebAssembly stack. This value will not get a "register" (WebAssembly variable)
    	// nor a slot on Go stack, and the generation of this value is delayed to its use time.
    	OnWasmStack bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. src/runtime/symtab.go

    			if off >= sect.vaddr && off < sect.end || (i == len(md.textsectmap)-1 && off == sect.end) {
    				res = sect.baseaddr + off - sect.vaddr
    				break
    			}
    		}
    		if res > md.etext && GOARCH != "wasm" { // on wasm, functions do not live in the same address space as the linear memory
    			println("runtime: textAddr", hex(res), "out of range", hex(md.text), "-", hex(md.etext))
    			throw("runtime: text offset out of range")
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. pkg/bootstrap/config.go

    	lightstepAccessTokenBase = "lightstep_access_token.txt"
    
    	// required stats are used by readiness checks.
    	requiredEnvoyStatsMatcherInclusionPrefixes = "cluster_manager,listener_manager,server,cluster.xds-grpc,wasm"
    
    	rbacEnvoyStatsMatcherInclusionSuffix = "rbac.allowed,rbac.denied,shadow_allowed,shadow_denied"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. src/runtime/extern.go

    	enable this functionality if your program is a setuid binary as it introduces a security
    	risk in that scenario. Currently not supported on Windows, plan9 or js/wasm. Setting this
    	option for some applications can produce large traces, so use with care.
    
    	panicnil: setting panicnil=1 disables the runtime error when calling panic with nil
    	interface value or an untyped nil.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  9. src/runtime/metrics_test.go

    			isGC: true,
    			fn: func(t *testing.T) {
    				runtime.GC()
    			},
    		},
    		{
    			name: "runtime.GOMAXPROCS",
    			fn: func(t *testing.T) {
    				if runtime.GOARCH == "wasm" {
    					t.Skip("GOMAXPROCS >1 not supported on wasm")
    				}
    
    				n := runtime.GOMAXPROCS(0)
    				defer runtime.GOMAXPROCS(n)
    
    				runtime.GOMAXPROCS(n + 1)
    			},
    		},
    		{
    			name: "runtime.GoroutineProfile",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/gc.go

    	}
    	if a.buildID != "" {
    		defaultGcFlags = append(defaultGcFlags, "-buildid", a.buildID)
    	}
    	if p.Internal.OmitDebug || cfg.Goos == "plan9" || cfg.Goarch == "wasm" {
    		defaultGcFlags = append(defaultGcFlags, "-dwarf=false")
    	}
    	if strings.HasPrefix(ToolchainVersion, "go1") && !strings.Contains(os.Args[0], "go_bootstrap") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top