Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 167 for insta (0.05 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/plan9x.go

    func GoSyntax(inst Inst, pc uint64, symname func(uint64) (string, uint64), text io.ReaderAt) string {
    	if symname == nil {
    		symname = func(uint64) (string, uint64) { return "", 0 }
    	}
    
    	var args []string
    	for _, a := range inst.Args {
    		if a == nil {
    			break
    		}
    		args = append(args, plan9Arg(&inst, pc, symname, a))
    	}
    
    	op := inst.Op.String()
    
    	switch inst.Op {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 17K bytes
    - Viewed (0)
  2. src/encoding/gob/encode.go

    	defer enc.freeEncoderState(state)
    	state.fieldnum = -1
    	for i := 0; i < len(engine.instr); i++ {
    		instr := &engine.instr[i]
    		if i >= value.NumField() {
    			// encStructTerminator
    			instr.op(instr, state, reflect.Value{})
    			break
    		}
    		field := value.FieldByIndex(instr.index)
    		if instr.indir > 0 {
    			field = encIndirect(field, instr.indir)
    			// TODO: Is field guaranteed valid? If so we could avoid this check.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/named_test.go

    	Node := firstFieldType(Inst)
    	Tree := firstFieldType(Node)
    	if !Identical(Inst, Tree) {
    		t.Fatalf("Not a cycle: got %v, want %v", Tree, Inst)
    	}
    	if Inst != Tree {
    		t.Errorf("Duplicate instances in cycle: %s (%p) -> %s (%p) -> %s (%p)", Inst, Inst, Node, Node, Tree, Tree)
    	}
    }
    
    // TestMethodOrdering is a simple test verifying that the indices of methods of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 21:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

            GetUnregisteredAttrs(inst, op_reg_data, &attrs_to_ignore));
      }
    
      if (inst->hasTrait<mlir::OpTrait::AttrSizedOperandSegments>()) {
        // TODO(b/146937733): Don't use <void> here.
        llvm::StringRef attr_name = mlir::OpTrait::AttrSizedOperandSegments<
            void>::getOperandSegmentSizeAttr();
        attrs_to_ignore.insert(attr_name.data());
      }
    
      if (inst->hasTrait<mlir::OpTrait::AttrSizedResultSegments>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/call.go

    // and x.mode is set to invalid.
    func (check *Checker) funcInst(T *target, pos syntax.Pos, x *operand, inst *syntax.IndexExpr, infer bool) ([]Type, []syntax.Expr) {
    	assert(T != nil || inst != nil)
    
    	var instErrPos poser
    	if inst != nil {
    		instErrPos = inst.Pos()
    		x.expr = inst // if we don't have an index expression, keep the existing expression of x
    	} else {
    		instErrPos = pos
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    func GoSyntax(inst Inst, pc uint64, symname func(uint64) (string, uint64), text io.ReaderAt) string {
    	if symname == nil {
    		symname = func(uint64) (string, uint64) { return "", 0 }
    	}
    
    	var args []string
    	for _, a := range inst.Args {
    		if a == nil {
    			break
    		}
    		args = append(args, plan9Arg(&inst, pc, symname, a))
    	}
    
    	op := inst.Op.String()
    
    	switch inst.Op &^ 15 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RemoteDependencyResolveConsoleIntegrationTest.groovy

            }
        }
    
        byte[] longXml(File file) {
            def instr = new ByteArrayOutputStream()
            instr << file.bytes
            while (instr.size() < 2048) {
                instr << "          ".bytes
            }
            return instr.toByteArray()
        }
    
        byte[] longJar(File file) {
            return longXml(file)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          }
          if (auto custom_op = dyn_cast<mlir::TFL::CustomOp>(inst)) {
            return BuildCustomOperator(inst, custom_op, operands, results);
          }
          if (auto whileOp = dyn_cast<mlir::TFL::WhileOp>(inst)) {
            if (inst->getNumOperands() != inst->getNumResults()) {
              inst->emitOpError(
                  "number of operands and results don't match, only canonical "
                  "TFL While supported");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    	case 0, 0x66, 0x67:
    		// ignore
    	default:
    		prefix += last.String() + " "
    	}
    
    	op := inst.Op.String()
    	if plan9Suffix[inst.Op] {
    		s := inst.DataSize
    		if inst.MemBytes != 0 {
    			s = inst.MemBytes * 8
    		} else if inst.Args[1] == nil { // look for register-only 64-bit instruction, like PUSHQ AX
    			if r, ok := inst.Args[0].(Reg); ok && RAX <= r && r <= R15 {
    				s = 64
    			}
    		}
    		switch s {
    		case 8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
Back to top