Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for WebAssembly (0.14 sec)

  1. samples/addons/README.md

    * [Control Plane Dashboard](https://grafana.com/grafana/dashboards/7645) monitors the health and performance of the control plane.
    * [WASM Extension Dashboard](https://grafana.com/grafana/dashboards/13277) provides an overview of mesh wide WebAssembly extension runtime and loading state.
    
    For more information about integrating with Grafana, please see the [Grafana integration page](https://istio.io/docs/ops/integrations/grafana/).
    
    ### Kiali
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. src/internal/poll/fd_wasip1.go

    			fd.Dircookie = 0
    			return 0, nil
    		} else {
    			return 0, syscall.EINVAL
    		}
    	}
    
    	return syscall.Seek(fd.Sysfd, offset, whence)
    }
    
    // https://github.com/WebAssembly/WASI/blob/main/legacy/preview1/docs.md#-dirent-record
    const sizeOfDirent = 24
    
    func direntReclen(buf []byte) (uint64, bool) {
    	namelen, ok := direntNamlen(buf)
    	return sizeOfDirent + namelen, ok
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:14:02 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. src/syscall/js/js.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.
    
    //go:build js && wasm
    
    // Package js gives access to the WebAssembly host environment when using the js/wasm architecture.
    // Its API is based on JavaScript semantics.
    //
    // This package is EXPERIMENTAL. Its current scope is only to allow tests to run, but not yet to provide a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:35:26 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/value.go

    	Block *Block
    
    	// Source position
    	Pos src.XPos
    
    	// Use count. Each appearance in Value.Args and Block.Controls counts once.
    	Uses int32
    
    	// wasm: Value stays on the WebAssembly stack. This value will not get a "register" (WebAssembly variable)
    	// nor a slot on Go stack, and the generation of this value is delayed to its use time.
    	OnWasmStack bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/abi.go

    		}
    		wfs[i].Offset = p.FrameOffset(result)
    	}
    	return wfs
    }
    
    // setupWasmABI calculates the params and results in terms of WebAssembly values for the given function.
    func setupWasmABI(f *ir.Func) {
    	wi := obj.WasmImport{
    		Module: f.WasmImport.Module,
    		Name:   f.WasmImport.Name,
    	}
    	if wi.Module == wasm.GojsModule {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/wasm/ssa.go

    			s.OnWasmStackSkipped++
    			// If a Value is marked OnWasmStack, we don't generate the value and store it to a register now.
    			// Instead, we delay the generation to when the value is used and then directly generate it on the WebAssembly stack.
    			return
    		}
    		ssaGenValueOnStack(s, v, true)
    		if s.OnWasmStackSkipped != 0 {
    			panic("wasm: bad stack")
    		}
    		setReg(s, v.Reg())
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  7. src/cmd/internal/objabi/reloctype.go

    	R_ADDRMIPSTLS
    
    	// R_ADDRCUOFF resolves to a pointer-sized offset from the start of the
    	// symbol's DWARF compile unit.
    	R_ADDRCUOFF
    
    	// R_WASMIMPORT resolves to the index of the WebAssembly function import.
    	R_WASMIMPORT
    
    	// R_XCOFFREF (only used on aix/ppc64) prevents garbage collection by ld
    	// of a symbol. This isn't a real relocation, it can be placed in anywhere
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/func.go

    	// For wrapper functions, WrappedFunc point to the original Func.
    	// Currently only used for go/defer wrappers.
    	WrappedFunc *Func
    
    	// WasmImport is used by the //go:wasmimport directive to store info about
    	// a WebAssembly function import.
    	WasmImport *WasmImport
    }
    
    // WasmImport stores metadata associated with the //go:wasmimport pragma.
    type WasmImport struct {
    	Module string
    	Name   string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/regalloc.go

    			s.nospill |= regMask(1) << r
    		}
    		s.usedSinceBlockStart |= regMask(1) << r
    		return s.regs[r].c
    	}
    
    	var r register
    	// If nospill is set, the value is used immediately, so it can live on the WebAssembly stack.
    	onWasmStack := nospill && s.f.Config.ctxt.Arch.Arch == sys.ArchWasm
    	if !onWasmStack {
    		// Allocate a register.
    		r = s.allocReg(mask, v)
    	}
    
    	// Allocate v to the new register.
    	var c *Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loader/loader.go

    }
    
    // WasmImportSym returns the auxiliary WebAssembly import symbol associated with
    // a given function symbol. The aux sym only exists for Go function stubs that
    // have been annotated with the //go:wasmimport directive.  The aux sym
    // contains the information necessary for the linker to add a WebAssembly
    // import statement.
    // (https://webassembly.github.io/spec/core/syntax/modules.html#imports)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
Back to top