Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 177 for wasmv3 (0.18 sec)

  1. pkg/wasm/cache.go

    	// sha256 scheme prefix
    	sha256SchemePrefix = "sha256:"
    )
    
    // Cache models a Wasm module cache.
    type Cache interface {
    	Get(url string, opts GetOptions) (string, error)
    	Cleanup()
    }
    
    // LocalFileCache for downloaded Wasm modules. Currently it stores the Wasm module as local file.
    type LocalFileCache struct {
    	// Map from Wasm module checksum to cache entry.
    	modules map[moduleKey]*cacheEntry
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/link.go

    	// Offset holds the frame-pointer-relative locations for Go's stack-based
    	// ABI. This is used by the src/cmd/internal/wasm package to map WASM
    	// import parameters to the Go stack in a wrapper function.
    	Offset int64
    }
    
    type WasmFieldType byte
    
    const (
    	WasmI32 WasmFieldType = iota
    	WasmI64
    	WasmF32
    	WasmF64
    	WasmPtr
    )
    
    type InlMark struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/cases/map.go

    			c.isMidWord = false
    		}
    
    		// As we save the state of the transformer, it is safe to call
    		// checkpoint after any successful write.
    		if !(c.isMidWord && wasMid) {
    			c.checkpoint()
    		}
    
    		if !c.next() {
    			break
    		}
    		if wasMid && c.info.isMid() {
    			c.isMidWord = false
    		}
    	}
    	return c.ret()
    }
    
    func (t *titleCaser) Span(src []byte, atEOF bool) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. pkg/wasm/cache_test.go

    			},
    			initialCachedChecksums: map[string]*checksumEntry{},
    			fetchURL:               ts.URL + "/invalid-wasm-header",
    			getOptions: GetOptions{
    				Checksum:       invalidHTTPDataCheckSum,
    				RequestTimeout: time.Second * 10,
    			},
    			wantCachedModules: map[moduleKey]*cacheEntry{
    				{name: ts.URL, checksum: httpDataCheckSum}: {modulePath: httpDataCheckSum + ".wasm"},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. pkg/wasm/convert.go

    // if `resource` is a wasm config loading a wasm module from the remote site.
    // It returns `nil` for both the typed extension config and wasm config if it is not for the remote wasm or has an error.
    func tryUnmarshal(resource *anypb.Any) (*core.TypedExtensionConfig, *httpwasm.Wasm, *networkwasm.Wasm, error) {
    	ec := &core.TypedExtensionConfig{}
    	wasmHTTPFilterConfig := &httpwasm.Wasm{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. 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)
  7. pilot/pkg/networking/core/extension/wasmplugin_test.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"
    	wasmextension "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3"
    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    	"google.golang.org/protobuf/types/known/anypb"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. 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)
  9. pilot/cmd/pilot-agent/options/options.go

    		"allow agent pull wasm plugin from insecure registries or https server, for example: 'localhost:5000,docker-registry:5000'").Get()
    
    	wasmModuleExpiry = env.Register("WASM_MODULE_EXPIRY", wasm.DefaultModuleExpiry,
    		"cache expiration duration for a wasm module.").Get()
    
    	wasmPurgeInterval = env.Register("WASM_PURGE_INTERVAL", wasm.DefaultPurgeInterval,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/extension/wasmplugin.go

    	wasmextensions "github.com/envoyproxy/go-control-plane/envoy/extensions/wasm/v3"
    	"google.golang.org/protobuf/types/known/durationpb"
    
    	extensions "istio.io/api/extensions/v1alpha1"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/config/xds"
    	"istio.io/istio/pkg/util/sets"
    	_ "istio.io/istio/pkg/wasm" // include for registering wasm logging scope
    )
    
    var defaultConfigSource = &core.ConfigSource{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top