Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 99 for wasmv3 (0.16 sec)

  1. tests/integration/telemetry/api/dashboard_test.go

    			"container_fs_usage_bytes",
    			// flakes: https://github.com/istio/istio/issues/29871
    			"container_memory_working_set_bytes",
    			"container_cpu_usage_seconds_total",
    		},
    		true,
    	},
    	/* No longer using Wasm by default.
    	{
    		"istio-services-grafana-dashboards",
    		"istio-extension-dashboard.json",
    		[]string{
    			"avg(envoy_wasm_envoy_wasm_runtime_v8_",
    			// flakes: https://github.com/istio/istio/issues/29871
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    	asmArchRISCV64  = asmArch{name: "riscv64", bigEndian: false, stack: "SP", lr: true, retRegs: []string{"X10", "F10"}}
    	asmArchS390X    = asmArch{name: "s390x", bigEndian: true, stack: "R15", lr: true}
    	asmArchWasm     = asmArch{name: "wasm", bigEndian: false, stack: "SP", lr: false}
    	asmArchLoong64  = asmArch{name: "loong64", bigEndian: false, stack: "R3", lr: true}
    
    	arches = []*asmArch{
    		&asmArch386,
    		&asmArchArm,
    		&asmArchArm64,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  3. pilot/pkg/credentials/kube/secrets.go

    var _ credentials.Controller = &CredentialsController{}
    
    func NewCredentialsController(kc kube.Client, handlers []func(name string, namespace string)) *CredentialsController {
    	// We only care about TLS certificates and docker config for Wasm image pulling.
    	// Unfortunately, it is not as simple as selecting type=kubernetes.io/tls and type=kubernetes.io/dockerconfigjson.
    	// Because of legacy reasons and supporting an extra ca.crt, we also support generic types.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. pkg/config/constants/constants.go

    	// ConfigPathDir config directory for storing envoy json config files.
    	ConfigPathDir = "./etc/istio/proxy"
    
    	// IstioDataDir is the directory to store binary data such as envoy core dump, profile, and downloaded Wasm modules.
    	IstioDataDir = "/var/lib/istio/data"
    
    	// BinaryPathFilename envoy binary location
    	BinaryPathFilename = "/usr/local/bin/envoy"
    
    	// ServiceClusterName service cluster name used in xDS calls
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/time/sleep_test.go

    	// the AfterFunc goroutine instead of the runnable channel goroutine.
    	// However, in https://go.dev/issue/65178 this was observed to live-lock
    	// on wasip1/wasm and js/wasm after <10000 runs.
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(1))
    
    	var (
    		wg   sync.WaitGroup
    		stop atomic.Bool
    		c    = make(chan bool, 1)
    	)
    
    	wg.Add(2)
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  6. pkg/istio-agent/agent.go

    	"istio.io/istio/pkg/filewatcher"
    	"istio.io/istio/pkg/istio-agent/grpcxds"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/model"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/wasm"
    	"istio.io/istio/security/pkg/nodeagent/cache"
    )
    
    const (
    	// Location of K8S CA root.
    	k8sCAPath = "./var/run/secrets/kubernetes.io/serviceaccount/ca.crt"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func panicmakeslicelen()
    func panicmakeslicecap()
    func throwinit()
    func panicwrap()
    
    func gopanic(interface{})
    func gorecover(*int32) interface{}
    func goschedguarded()
    
    // Note: these declarations are just for wasm port.
    // Other ports call assembly stubs instead.
    func goPanicIndex(x int, y int)
    func goPanicIndexU(x uint, y int)
    func goPanicSliceAlen(x int, y int)
    func goPanicSliceAlenU(x uint, y int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. src/net/net_fake.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.
    
    // Fake networking for js/wasm and wasip1/wasm.
    // It is intended to allow tests of other package to pass.
    
    //go:build js || wasip1
    
    package net
    
    import (
    	"context"
    	"errors"
    	"io"
    	"os"
    	"sync"
    	"sync/atomic"
    	"syscall"
    	"time"
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. src/os/os_unix_test.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_test
    
    import (
    	"internal/testenv"
    	"io"
    	. "os"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"syscall"
    	"testing"
    	"time"
    )
    
    func init() {
    	isReadonlyError = func(err error) bool { return err == syscall.EROFS }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:32:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/config.go

    		c.gpRegMask = gpRegMaskRISCV64
    		c.fpRegMask = fpRegMaskRISCV64
    		c.intParamRegs = paramIntRegRISCV64
    		c.floatParamRegs = paramFloatRegRISCV64
    		c.FPReg = framepointerRegRISCV64
    		c.hasGReg = true
    	case "wasm":
    		c.PtrSize = 8
    		c.RegSize = 8
    		c.lowerBlock = rewriteBlockWasm
    		c.lowerValue = rewriteValueWasm
    		c.registers = registersWasm[:]
    		c.gpRegMask = gpRegMaskWasm
    		c.fpRegMask = fpRegMaskWasm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top