Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 172 for wasmv3 (0.25 sec)

  1. pkg/istio-agent/xds_proxy.go

    	initialHealthRequest      *discovery.DiscoveryRequest
    	initialDeltaHealthRequest *discovery.DeltaDiscoveryRequest
    	connectedMutex            sync.RWMutex
    
    	// Wasm cache and ecds channel are used to replace wasm remote load with local file.
    	wasmCache wasm.Cache
    
    	// ecds version and nonce uses atomic only to prevent race in testing.
    	// In reality there should not be race as istiod will only have one
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. src/syscall/dirent.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 syscall
    
    import (
    	"internal/byteorder"
    	"internal/goarch"
    	"runtime"
    	"unsafe"
    )
    
    // readInt returns the size-bytes unsigned integer in native byte order at offset off.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:13:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_waypoint.go

    	pre = append(pre, authzCustomBuilder.BuildHTTP(cls)...)
    	pre = extension.PopAppendHTTP(pre, wasm, extensions.PluginPhase_AUTHN)
    	pre = append(pre, authnBuilder.BuildHTTP(cls)...)
    	pre = extension.PopAppendHTTP(pre, wasm, extensions.PluginPhase_AUTHZ)
    	pre = append(pre, authzBuilder.BuildHTTP(cls)...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. src/os/user/listgroups_unix_test.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 ((darwin || dragonfly || freebsd || (js && wasm) || wasip1 || (!android && linux) || netbsd || openbsd || solaris) && ((!cgo && !darwin) || osusergo)) || aix || illumos
    
    package user
    
    import (
    	"fmt"
    	"slices"
    	"strings"
    	"testing"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/runtime/hash64.go

    // Hashing algorithm inspired by
    // wyhash: https://github.com/wangyi-fudan/wyhash
    
    //go:build amd64 || arm64 || loong64 || mips64 || mips64le || ppc64 || ppc64le || riscv64 || s390x || wasm
    
    package runtime
    
    import (
    	"runtime/internal/math"
    	"unsafe"
    )
    
    const (
    	m5 = 0x1d8e4e27c47d124f
    )
    
    func memhashFallback(p unsafe.Pointer, seed, s uintptr) uintptr {
    	var a, b uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 17:39:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. test/codegen/shift.go

    		// riscv64:"SLL",-"AND",-"SLTIU"
    		// s390x:-"RISBGZ",-"AND",-"LOCGR"
    		// wasm:-"Select",-".*LtU"
    		// arm64:"LSL",-"CSEL"
    		return v << s
    	}
    	panic("shift too large")
    }
    
    func rshGuarded64U(v uint64, s uint) uint64 {
    	if s < 64 {
    		// riscv64:"SRL\t",-"AND",-"SLTIU"
    		// s390x:-"RISBGZ",-"AND",-"LOCGR"
    		// wasm:-"Select",-".*LtU"
    		// arm64:"LSR",-"CSEL"
    		return v >> s
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:53:43 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/os/exec_posix.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 || windows
    
    package os
    
    import (
    	"internal/itoa"
    	"internal/syscall/execenv"
    	"runtime"
    	"syscall"
    )
    
    // The only signal values guaranteed to be present in the os package on all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  8. CODEOWNERS

    /pkg/fuzz/                                                       @istio/wg-test-and-release-maintainers
    /pkg/tracing/                                                    @istio/wg-policies-and-telemetry-maintainers
    /pkg/wasm/                                                       @istio/wg-policies-and-telemetry-maintainers
    /pkg/webhooks/                                                   @istio/wg-environments-maintainers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 19:22:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/sizes.go

    	"mips":     {4, 4},
    	"mipsle":   {4, 4},
    	"mips64":   {8, 8},
    	"mips64le": {8, 8},
    	"ppc64":    {8, 8},
    	"ppc64le":  {8, 8},
    	"riscv64":  {8, 8},
    	"s390x":    {8, 8},
    	"sparc64":  {8, 8},
    	"wasm":     {8, 8},
    	// When adding more architectures here,
    	// update the doc string of SizesFor below.
    }
    
    // SizesFor returns the Sizes used by a compiler for an architecture.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. Makefile.core.mk

    	@envvarlinter istioctl pilot security
    
    # Allow-list:
    # (k8s) some Machinery, utils, klog
    # (proto) Istio API non-CRDs, MeshConfig and ProxyConfig
    # (proto) Envoy TLS proto for SDS
    # (proto) Envoy Wasm filters for wasm xDS proxy
    # (proto) xDS discovery service for xDS proxy
    # (proto) SDS secret and contrib QAT and cryptomb
    .PHONY: check-agent-deps
    check-agent-deps:
    	@go list -f '{{ join .Deps "\n" }}' -tags=agent \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top