Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 172 for wasmv3 (0.3 sec)

  1. src/crypto/rand/rand.go

    //   - On OpenBSD and NetBSD, Reader uses getentropy(2).
    //   - On other Unix-like systems, Reader reads from /dev/urandom.
    //   - On Windows, Reader uses the ProcessPrng API.
    //   - On js/wasm, Reader uses the Web Crypto API.
    //   - On wasip1/wasm, Reader uses random_get from wasi_snapshot_preview1.
    var Reader io.Reader
    
    // Read is a helper function that calls Reader.Read using io.ReadFull.
    // On return, n == len(b) if and only if err == nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:02:21 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/tooltags.txt

    env GORISCV64=
    go list -f '{{context.ToolTags}}'
    stdout 'riscv64.rva20u64'
    
    env GOARCH=386
    env GO386=sse2
    go list -f '{{context.ToolTags}}'
    stdout '386.sse2'
    
    env GOARCH=wasm
    env GOWASM=satconv
    go list -f '{{context.ToolTags}}'
    stdout 'wasm.satconv'
    
    -- go.mod --
    module m
    
    -- p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 07:25:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/hash/maphash/smhasher_test.go

    		h.addB(b[:i])
    	}
    	h.check(t)
    }
    
    // Strings with up to two nonzero bytes all have distinct hashes.
    func TestSmhasherTwoNonzero(t *testing.T) {
    	if runtime.GOARCH == "wasm" {
    		t.Skip("Too slow on wasm")
    	}
    	if testing.Short() {
    		t.Skip("Skipping in short mode")
    	}
    	testenv.ParallelOn64Bit(t)
    	h := newHashSet()
    	for n := 2; n <= 16; n++ {
    		twoNonZero(h, n)
    	}
    	h.check(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/accesslog.go

    	// But end users can certainly configure it on their own via the meshConfig using the %FILTER_STATE% macro.
    	envoyWasmStateToLog = []string{"wasm.upstream_peer", "wasm.upstream_peer_id", "wasm.downstream_peer", "wasm.downstream_peer_id"}
    
    	// accessLogBuilder is used to set accessLog to filters
    	accessLogBuilder = newAccessLogBuilder()
    )
    
    type AccessLogBuilder struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/options/agent.go

    	"os"
    	"path/filepath"
    	"strings"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/bootstrap/platform"
    	istioagent "istio.io/istio/pkg/istio-agent"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/pkg/wasm"
    )
    
    // Similar with ISTIO_META_, which is used to customize the node metadata - this customizes extra header.
    const xdsHeaderPrefix = "XDS_HEADER_"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/os/exec_test.go

    func TestProcessLiteral(t *testing.T) {
    	if runtime.GOOS == "windows" {
    		t.Skip("Process literals do not work on Windows. FindProcess/etc must initialize the process handle")
    	}
    	if runtime.GOARCH == "wasm" {
    		t.Skip("Signals send + notify not fully supported om wasm port")
    	}
    
    	c := make(chan os.Signal, 1)
    	signal.Notify(c, os.Interrupt)
    	defer signal.Stop(c)
    
    	p := &os.Process{Pid: os.Getpid()}
    	if err := p.Signal(os.Interrupt); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 18:08:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/math/floor_noasm.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !386 && !amd64 && !arm64 && !ppc64 && !ppc64le && !riscv64 && !s390x && !wasm
    
    package math
    
    const haveArchFloor = false
    
    func archFloor(x float64) float64 {
    	panic("not implemented")
    }
    
    const haveArchCeil = false
    
    func archCeil(x float64) float64 {
    	panic("not implemented")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 08:34:12 UTC 2024
    - 543 bytes
    - Viewed (0)
  8. pilot/pkg/model/extensions_test.go

    		expected *core.AsyncDataSource
    	}{
    		{
    			url: "file://fake.wasm",
    			wasmPlugin: &extensions.WasmPlugin{
    				Url: "file://fake.wasm",
    			},
    			expected: &core.AsyncDataSource{
    				Specifier: &core.AsyncDataSource_Local{
    					Local: &core.DataSource{
    						Specifier: &core.DataSource_Filename{
    							Filename: "fake.wasm",
    						},
    					},
    				},
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. src/math/floor_asm.go

    // 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.
    
    //go:build 386 || amd64 || arm64 || ppc64 || ppc64le || riscv64 || s390x || wasm
    
    package math
    
    const haveArchFloor = true
    
    func archFloor(x float64) float64
    
    const haveArchCeil = true
    
    func archCeil(x float64) float64
    
    const haveArchTrunc = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 08:34:12 UTC 2024
    - 442 bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/networkfilter.go

    	// Authn
    	filters = extension.PopAppendNetwork(filters, wasm, extensions.PluginPhase_AUTHN)
    
    	// Authz
    	filters = extension.PopAppendNetwork(filters, wasm, extensions.PluginPhase_AUTHZ)
    	filters = append(filters, authzBuilder.BuildTCP()...)
    
    	// Stats
    	filters = extension.PopAppendNetwork(filters, wasm, extensions.PluginPhase_STATS)
    	filters = extension.PopAppendNetwork(filters, wasm, extensions.PluginPhase_UNSPECIFIED_PHASE)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top