Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for wasmv3 (0.12 sec)

  1. kotlin-js-store/yarn.lock

        "@webassemblyjs/helper-wasm-bytecode" "1.11.6"
        "@webassemblyjs/helper-wasm-section" "1.11.6"
        "@webassemblyjs/wasm-gen" "1.11.6"
        "@webassemblyjs/wasm-opt" "1.11.6"
        "@webassemblyjs/wasm-parser" "1.11.6"
        "@webassemblyjs/wast-printer" "1.11.6"
    
    "@webassemblyjs/wasm-gen@1.11.6":
      version "1.11.6"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    			wellknown.HTTPRoleBasedAccessControl,
    			wellknown.HTTPExternalAuthorization,
    			"extenstions.istio.io/wasmplugin/istio-system.wasm-authn",
    			"extenstions.istio.io/wasmplugin/istio-system.wasm-authz",
    			wellknown.HTTPRoleBasedAccessControl,
    			"extenstions.istio.io/wasmplugin/istio-system.wasm-stats",
    			wellknown.HTTPGRPCStats,
    			xdsfilters.Fault.Name,
    			xdsfilters.Cors.Name,
    			xds.StatsFilterName,
    			wellknown.Router,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    			opt.networkFilters = extension.PopAppendNetwork(opt.networkFilters, wasm, extensions.PluginPhase_AUTHN)
    			opt.networkFilters = extension.PopAppendNetwork(opt.networkFilters, wasm, extensions.PluginPhase_AUTHZ)
    			opt.networkFilters = extension.PopAppendNetwork(opt.networkFilters, wasm, extensions.PluginPhase_STATS)
    			opt.networkFilters = extension.PopAppendNetwork(opt.networkFilters, wasm, extensions.PluginPhase_UNSPECIFIED_PHASE)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar_test.go

    			{kind.WasmPlugin, "wasm", "default"}: true,
    		}},
    		{"WasmPlugin in different ns from workload", []string{"*/*"}, map[ConfigKey]bool{
    			{kind.WasmPlugin, "wasm", "ns1"}: false,
    		}},
    		{"WasmPlugin in the root namespace", []string{"*/*"}, map[ConfigKey]bool{
    			{kind.WasmPlugin, "wasm", constants.IstioSystemNamespace}: true,
    		}},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pilot/pkg/model/push_context_test.go

    			Spec: &extensions.WasmPlugin{
    				Phase:    extensions.PluginPhase_AUTHN,
    				Priority: &wrapperspb.Int32Value{Value: 10},
    				Url:      "file:///etc/istio/filters/authn.wasm",
    				PluginConfig: &structpb.Struct{
    					Fields: map[string]*structpb.Value{
    						"test": {
    							Kind: &structpb.Value_StringValue{StringValue: "test"},
    						},
    					},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    		"ppc64":   {"GOPPC64", "power8", "power9", "power10"},
    		"ppc64le": {"GOPPC64", "power8", "power9", "power10"},
    		"ppc64x":  {}, // A pseudo-arch representing both ppc64 and ppc64le
    		"s390x":   {},
    		"wasm":    {},
    		"riscv64": {"GORISCV64", "rva20u64", "rva22u64"},
    	}
    )
    
    // wantedAsmOpcode is a single asmcheck check
    type wantedAsmOpcode struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_client_test.go

    	}
    	if err != context.Canceled {
    		t.Errorf("Unexpected client handshake error: %v", err)
    	}
    	if runtime.GOARCH == "wasm" {
    		t.Skip("conn.Close does not error as expected when called multiple times on WASM")
    	}
    	err = cli.Close()
    	if err == nil {
    		t.Error("Client connection was not closed when the context was canceled")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    	// sidecarIndex stores sidecar resources
    	sidecarIndex sidecarIndex
    
    	// envoy filters for each namespace including global config namespace
    	envoyFiltersByNamespace map[string][]*EnvoyFilterWrapper
    
    	// wasm plugins for each namespace including global config namespace
    	wasmPluginsByNamespace map[string][]*WasmPluginWrapper
    
    	// AuthnPolicies contains Authn policies by namespace.
    	AuthnPolicies *AuthenticationPolicies `json:"-"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top