Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 501 for insts (0.61 sec)

  1. pilot/pkg/server/instance_test.go

    			stop := newReclosableChannel()
    			t.Cleanup(stop.Close)
    			inst := server.New()
    			g.Expect(inst.Start(stop.c)).To(BeNil())
    
    			component := c.c.Run
    			go func() {
    				if c.async {
    					if c.wait {
    						inst.RunComponentAsyncAndWait("test", component)
    					} else {
    						inst.RunComponentAsync("test", component)
    					}
    				} else {
    					inst.RunComponent("test", component)
    				}
    			}()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 23:02:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/internal/objfile/disasm.go

    	inst, err := x86asm.Decode(code, arch)
    	var text string
    	size := inst.Len
    	if err != nil || size == 0 || inst.Op == 0 {
    		size = 1
    		text = "?"
    	} else {
    		if gnuAsm {
    			text = fmt.Sprintf("%-36s // %s", x86asm.GoSyntax(inst, pc, lookup), x86asm.GNUSyntax(inst, pc, nil))
    		} else {
    			text = x86asm.GoSyntax(inst, pc, lookup)
    		}
    	}
    	return text, size
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  3. src/go/types/named.go

    	if expanding != nil && expanding.Obj().pkg == obj.pkg {
    		inst.ctxt = expanding.inst.ctxt
    	}
    	typ := &Named{check: check, obj: obj, inst: inst}
    	obj.typ = typ
    	// Ensure that typ is always sanity-checked.
    	if check != nil {
    		check.needsCleanup(typ)
    	}
    	return typ
    }
    
    func (t *Named) cleanup() {
    	assert(t.inst == nil || t.inst.orig.inst == nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. src/runtime/export_debug_amd64_test.go

    func storeRegArgs(dst *sigcontext, src *abi.RegArgs) {
    	dst.rax = uint64(src.Ints[0])
    	dst.rbx = uint64(src.Ints[1])
    	dst.rcx = uint64(src.Ints[2])
    	dst.rdi = uint64(src.Ints[3])
    	dst.rsi = uint64(src.Ints[4])
    	dst.r8 = uint64(src.Ints[5])
    	dst.r9 = uint64(src.Ints[6])
    	dst.r10 = uint64(src.Ints[7])
    	dst.r11 = uint64(src.Ints[8])
    	for i := range src.Floats {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 23 05:38:56 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. src/encoding/gob/decode.go

    			break
    		}
    		if state.fieldnum >= len(engine.instr)-delta { // subtract to compare without overflow
    			error_(errRange)
    		}
    		fieldnum := state.fieldnum + delta
    		instr := &engine.instr[fieldnum]
    		var field reflect.Value
    		if instr.index != nil {
    			// Otherwise the field is unknown to us and instr.op is an ignore op.
    			field = value.FieldByIndex(instr.index)
    			if field.Kind() == reflect.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go

    }
    
    type RtMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	Flags   int32
    	Addrs   int32
    	Pid     int32
    	Seq     int32
    	Errno   int32
    	Use     int32
    	Inits   uint64
    	Rmx     RtMetrics
    }
    
    type RtMetrics struct {
    	Locks     uint64
    	Mtu       uint64
    	Pksent    uint64
    	Expire    uint64
    	Sendpipe  uint64
    	Ssthresh  uint64
    	Rtt       uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. src/syscall/ztypes_darwin_arm64.go

    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Flags     int32
    	Addrs     int32
    	Pid       int32
    	Seq       int32
    	Errno     int32
    	Use       int32
    	Inits     uint32
    	Rmx       RtMetrics
    }
    
    type RtMetrics struct {
    	Locks    uint32
    	Mtu      uint32
    	Hopcount uint32
    	Expire   int32
    	Recvpipe uint32
    	Sendpipe uint32
    	Ssthresh uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  8. misc/wasm/wasm_exec.html

    		}
    
    		const go = new Go();
    		let mod, inst;
    		WebAssembly.instantiateStreaming(fetch("test.wasm"), go.importObject).then((result) => {
    			mod = result.module;
    			inst = result.instance;
    			document.getElementById("runButton").disabled = false;
    		}).catch((err) => {
    			console.error(err);
    		});
    
    		async function run() {
    			console.clear();
    			await go.run(inst);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 02 17:25:11 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/instrumentation-agent/src/main/java/org/gradle/instrumentation/agent/Agent.java

        public static void premain(String agentArgs, Instrumentation inst) {
            doMain(inst);
        }
    
        public static void agentmain(String agentArgs, Instrumentation inst) {
            doMain(inst);
        }
    
        static void doMain(Instrumentation inst) {
            instrumentation = inst;
        }
    
        @SuppressWarnings("unused")  // Used reflectively.
        public static boolean isApplied() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/context_test.go

    	}
    
    	ctxt := NewContext()
    
    	// Update the context with an instantiation of nullaryP.
    	inst := NewSignatureType(nil, nil, nil, nil, nil, false)
    	if got := ctxt.update("", nullaryP, []Type{Typ[Int]}, inst); got != inst {
    		t.Error("bad")
    	}
    
    	// unaryP is not identical to nullaryP, so we should not get inst when
    	// instantiated with identical type arguments.
    	if got := ctxt.lookup("", unaryP, []Type{Typ[Int]}); got != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 17 04:32:02 UTC 2021
    - 2.3K bytes
    - Viewed (0)
Back to top