Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for wasmv3 (0.13 sec)

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

    				name:            "wasm-test-module",
    				tag:             tag,
    				policy:          "IfNotPresent",
    				upstreamVersion: "0.0.2",
    				expectedVersion: "0.0.1",
    			})
    
    			resetWasm(t, "wasm-test-module")
    			applyAndTestWasmWithOCI(t, wasmTestConfigs{
    				desc:            "upstream is upgraded to 0.0.2, but 0.0.1 is already present and policy is default",
    				name:            "wasm-test-module",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. pkg/kube/kclient/client_test.go

    		tracker := assert.NewTracker[string](t)
    		wasm.AddEventHandler(clienttest.TrackerHandler(tracker))
    		go constantlyAccessForRaceDetection(stop, wasm)
    		c.RunAndWait(stop)
    		kube.WaitForCacheSync("test", test.NewStop(t), wasm.HasSynced)
    
    		// List should return empty
    		assert.Equal(t, len(wasm.List("", klabels.Everything())), 0)
    
    		// Now we add the CRD
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. .space/CODEOWNERS

    /libraries/stdlib/wasm/builtins/ "Kotlin Wasm"
    /libraries/stdlib/wasm/internal/ "Kotlin Wasm"
    /libraries/stdlib/wasm/src/generated/wasm/internal/ "Kotlin Wasm"
    
    /libraries/tools/abi-comparator "Kotlin JVM"
    /libraries/tools/atomicfu/ "Kotlin Libraries"
    /libraries/tools/binary-compatibility-validator/ "Kotlin Libraries"
    /libraries/tools/dukat/ "Kotlin Wasm"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (2)
  4. test/codegen/mathbits.go

    	// amd64/v3:"LZCNTQ", -"BSRQ"
    	// s390x:"FLOGR"
    	// arm:"CLZ" arm64:"CLZ"
    	// mips:"CLZ"
    	// wasm:"I64Clz"
    	// ppc64x:"CNTLZD"
    	return bits.LeadingZeros(n)
    }
    
    func LeadingZeros64(n uint64) int {
    	// amd64/v1,amd64/v2:"BSRQ"
    	// amd64/v3:"LZCNTQ", -"BSRQ"
    	// s390x:"FLOGR"
    	// arm:"CLZ" arm64:"CLZ"
    	// mips:"CLZ"
    	// wasm:"I64Clz"
    	// ppc64x:"CNTLZD"
    	return bits.LeadingZeros64(n)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:51:17 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. test/codegen/comparisons.go

    	}
    	// wasm:"I64Eqz"-"I64LeU"
    	if b <= 0 {
    		return 1
    	}
    	// wasm:"I64Eqz"-"I64LeU"
    	if c <= 0 {
    		return 1
    	}
    	// wasm:"I64Eqz"-"I64LeU"
    	if d <= 0 {
    		return 1
    	}
    	return 0
    }
    
    func CmpToOneU_ex1(a uint8, b uint16, c uint32, d uint64) int {
    	// wasm:"I64Eqz"-"I64LtU"
    	if a < 1 {
    		return 1
    	}
    	// wasm:"I64Eqz"-"I64LtU"
    	if b < 1 {
    		return 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. pilot/pkg/model/extensions.go

    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	httpwasm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/wasm/v3"
    	networkwasm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/wasm/v3"
    	wasmextensions "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3"
    	anypb "google.golang.org/protobuf/types/known/anypb"
    	"google.golang.org/protobuf/types/known/durationpb"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. pilot/pkg/xds/ecds_test.go

    			gotSecrets := sets.String{}
    			for _, res := range resources {
    				gotExtensions.Insert(res.Name)
    				ec := &core.TypedExtensionConfig{}
    				res.Resource.UnmarshalTo(ec)
    				wasm := &wasm.Wasm{}
    				ec.TypedConfig.UnmarshalTo(wasm)
    				gotsecret := wasm.GetConfig().GetVmConfig().GetEnvironmentVariables().GetKeyValues()[model.WasmSecretEnv]
    				if gotsecret != "" {
    					gotSecrets.Insert(gotsecret)
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top