Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for INS (0.17 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    	wantNoneReg(ctxt, ins, "rd", ins.rd)
    	wantIntReg(ctxt, ins, "rs1", ins.rs1)
    	wantIntReg(ctxt, ins, "rs2", ins.rs2)
    	wantNoneReg(ctxt, ins, "rs3", ins.rs3)
    }
    
    func validateU(ctxt *obj.Link, ins *instruction) {
    	wantImmI(ctxt, ins, ins.imm, 20)
    	wantIntReg(ctxt, ins, "rd", ins.rd)
    	wantNoneReg(ctxt, ins, "rs1", ins.rs1)
    	wantNoneReg(ctxt, ins, "rs2", ins.rs2)
    	wantNoneReg(ctxt, ins, "rs3", ins.rs3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let summary = "Constant tensor op";
    
      let arguments = (ins
        ElementsAttr:$value
      );
    
      let results = (outs
        TF_Tensor:$output
      );
    
      TF_DerivedResultTypeAttr dtype = TF_DerivedResultTypeAttr<0>;
    
      let builders = [
        OpBuilder<(ins "Attribute":$value)>,
        OpBuilder<(ins "Type":$type, "Attribute":$value)>,
      ];
    
      let hasFolder = 1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				}
    				this.get_container().html("<ul><li class='jstree-last jstree-leaf'><ins>&#160;</ins><a class='jstree-loading' href='#'><ins class='jstree-icon'>&#160;</ins>" + this._get_string("loading") + "</a></li></ul>");
    				this.data.core.li_height = this.get_container_ul().find("li.jstree-closed, li.jstree-leaf").eq(0).height() || 18;
    
    				this.get_container()
    					.delegate("li > ins", "click.jstree", $.proxy(function (event) {
    							var trgt = $(event.target);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

            int ins = ICONST_0;
            if (long.class == primitiveType) {
                ins = LCONST_0;
            } else if (double.class == primitiveType) {
                ins = DCONST_0;
            } else if (float.class == primitiveType) {
                ins = FCONST_0;
            }
            methodVisitor.visitInsn(ins);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  5. src/net/dnsclient_unix_test.go

    				Answers:   answers,
    			}, nil
    		},
    	}
    
    	r := Resolver{PreferGo: true, Dial: fake.DialContext}
    	ins := []string{lookup, absDomainName(lookup), strings.ToLower(lookup), strings.ToUpper(lookup)}
    	for _, in := range ins {
    		_, res, err := r.goLookupIPCNAMEOrder(context.Background(), "ip", in, mode, nil)
    		if err != nil {
    			t.Errorf("expected err == nil, but got error: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          return {types.ModuleType}
        if hasattr(value, '__module__'):
          if isinstance(value, dtypes.DType):
            return {TFRTypes.ATTR}
    
          # All the imported operations, which are not autograph built-ins, are
          # considered to be TF raw ops.
          # TODO(fengliuai): refine the condition that we only match TensorFlow
          # ops here.
          return {TFRTypes.TF_RAW_OP}
        # TODO(mdan): Is ATTR equivalent to string?
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api_test.go

    		{`package t2; type _ func()`, `func()`, `type`},
    		{`package t3; type _ func(int)`, `int`, `type`},
    		{`package t3; type _ func(...int)`, `...int`, `type`},
    
    		// built-ins
    		{`package b0; var _ = len("")`, `len`, `builtin`},
    		{`package b1; var _ = (len)("")`, `(len)`, `builtin`},
    
    		// constants
    		{`package c0; var _ = 42`, `42`, `const`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    		{`package t2; type _ func()`, `func()`, `type`},
    		{`package t3; type _ func(int)`, `int`, `type`},
    		{`package t3; type _ func(...int)`, `...int`, `type`},
    
    		// built-ins
    		{`package b0; var _ = len("")`, `len`, `builtin`},
    		{`package b1; var _ = (len)("")`, `(len)`, `builtin`},
    
    		// constants
    		{`package c0; var _ = 42`, `42`, `const`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top