Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 101 for wasmv3 (0.53 sec)

The limit of a search time was exceeded. The partial result might be displayed.

  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/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)
  3. src/cmd/dist/build.go

    	"linux/sparc64":   true,
    	"android/386":     true,
    	"android/amd64":   true,
    	"android/arm":     true,
    	"android/arm64":   true,
    	"ios/arm64":       true,
    	"ios/amd64":       true,
    	"js/wasm":         false,
    	"wasip1/wasm":     false,
    	"netbsd/386":      true,
    	"netbsd/amd64":    true,
    	"netbsd/arm":      true,
    	"netbsd/arm64":    true,
    	"openbsd/386":     true,
    	"openbsd/amd64":   true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K 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/runtime/proc.go

    }
    
    // startTemplateThread starts the template thread if it is not already
    // running.
    //
    // The calling thread must itself be in a known-good state.
    func startTemplateThread() {
    	if GOARCH == "wasm" { // no threads on wasm yet
    		return
    	}
    
    	// Disable preemption to guarantee that the template thread will be
    	// created before a park once haveTemplateThread is set.
    	mp := acquirem()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K 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/crypto/tls/handshake_server_test.go

    	}
    	if err != context.Canceled {
    		t.Errorf("Unexpected server handshake error: %v", err)
    	}
    	if runtime.GOARCH == "wasm" {
    		t.Skip("conn.Close does not error as expected when called multiple times on WASM")
    	}
    	err = conn.Close()
    	if err == nil {
    		t.Error("Server connection was not closed when the context was canceled")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top