Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for in_arg (0.13 sec)

  1. tensorflow/cc/framework/cc_op_gen.cc

      strings::StrAppend(&body, "  ", return_on_error, "\n");
    
      for (int i = 0; i < op_info.graph_op_def.input_arg_size(); ++i) {
        const auto& arg(op_info.graph_op_def.input_arg(i));
        const auto& api_def_arg(op_info.api_def.in_arg(i));
        strings::StrAppend(
            &body, "  auto _", api_def_arg.rename_to(), " = ::tensorflow::ops::",
            ArgIsList(arg) ? "AsNodeOutList" : "AsNodeOut", "(", scope_str, ", ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. tensorflow/cc/framework/fuzzing/cc_op_fuzz_gen.cc

          "    tensorflow::ops::$0(scope.WithOpName(\"output\")$1);\n",
          op_info.op_name,
          strings::StrCat(
              op_info.api_def.arg_order().empty()
                  ? absl::StrJoin(op_info.api_def.in_arg(), "",
                                  [](string* out, const auto api_def_arg) {
                                    strings::StrAppend(out, ", ",
                                                       api_def_arg.name());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 27 16:26:51 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/runtime/rt0_plan9_amd64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    TEXT _rt0_amd64_plan9(SB),NOSPLIT,$24
    	MOVQ	AX, _tos(SB)
    	LEAQ	16(SP), AX
    	MOVQ	AX, _privates(SB)
    	MOVL	$1, _nprivates(SB)
    	MOVL	inargc-8(FP), DI
    	LEAQ	inargv+0(FP), SI
    	MOVQ	$runtime·rt0_go(SB), AX
    	JMP	AX
    
    GLOBL _tos(SB), NOPTR, $8
    GLOBL _privates(SB), NOPTR, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 23 18:11:17 UTC 2015
    - 481 bytes
    - Viewed (0)
  4. src/runtime/rt0_plan9_386.s

    #include "textflag.h"
    
    TEXT _rt0_386_plan9(SB),NOSPLIT,$12
    	MOVL	AX, _tos(SB)
    	LEAL	8(SP), AX
    	MOVL	AX, _privates(SB)
    	MOVL	$1, _nprivates(SB)
    	CALL	runtime·asminit(SB)
    	MOVL	inargc-4(FP), AX
    	MOVL	AX, 0(SP)
    	LEAL	inargv+0(FP), AX
    	MOVL	AX, 4(SP)
    	JMP	runtime·rt0_go(SB)
    
    GLOBL _tos(SB), NOPTR, $4
    GLOBL _privates(SB), NOPTR, $4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 04:03:16 UTC 2017
    - 523 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm/armasm/gnu.go

    				fmt.Fprintf(&buf, "%s%s", sep, gnuArg(inst, -1, Reg(i)))
    				sep = ", "
    			}
    		}
    		fmt.Fprintf(&buf, "}")
    		return buf.String()
    
    	case RegShift:
    		if arg.Shift == ShiftLeft && arg.Count == 0 {
    			return gnuArg(inst, -1, arg.Reg)
    		}
    		if arg.Shift == RotateRightExt {
    			return gnuArg(inst, -1, arg.Reg) + ", rrx"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 17:21:52 UTC 2016
    - 3.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    			name := []string{"pli", "pla"}
    			str = fmt.Sprintf("%s %s,%s",
    				name[r&1],
    				gnuArg(&inst, 0, inst.Args[0], PC),
    				gnuArg(&inst, 2, inst.Args[2], PC))
    			startArg = 4
    		} else {
    			str = fmt.Sprintf("%s %s,%s,%s", opName,
    				gnuArg(&inst, 0, inst.Args[0], PC),
    				gnuArg(&inst, 1, inst.Args[1], PC),
    				gnuArg(&inst, 2, inst.Args[2], PC))
    			startArg = 4
    			if r == 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/DocBookBuilder.java

            boolean inPara = false;
            if (node instanceof Element) {
                Element element = (Element) node;
                if (element.getTagName().equals("para") && stack.getFirst().getTagName().equals("para")) {
                    pop();
                    inPara = true;
                }
            }
            stack.getFirst().appendChild(node);
            if (inPara) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/inst.go

    type Label uint32
    
    func (Label) IsArg() {}
    func (l Label) String() string {
    	return fmt.Sprintf("%#x", uint32(l))
    }
    
    // Imm represents an immediate number.
    type Imm int64
    
    func (Imm) IsArg() {}
    func (i Imm) String() string {
    	return fmt.Sprintf("%d", int32(i))
    }
    
    // Offset represents a memory offset immediate.
    type Offset int64
    
    func (Offset) IsArg() {}
    func (o Offset) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 03 01:35:44 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  9. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

        }
      }
    
      public void testNonStaticOneArgMethodsThatShouldPass() throws Exception {
        OneArg foo = new OneArg();
        for (String methodName : NONSTATIC_ONE_ARG_METHODS_SHOULD_PASS) {
          Method method = OneArg.class.getMethod(methodName, String.class);
          try {
            new NullPointerTester().testMethodParameter(foo, method, 0);
          } catch (AssertionError unexpected) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  10. src/html/template/multi_test.go

    	{"variable declared by template", `{{template "nested" $x:=.SI}},{{index $x 1}}`, "[3 4 5],4", tVal, true},
    
    	// User-defined function: test argument evaluator.
    	{"testFunc literal", `{{oneArg "joe"}}`, "oneArg=joe", tVal, true},
    	{"testFunc .", `{{oneArg .}}`, "oneArg=joe", "joe", true},
    }
    
    // These strings are also in testdata/*.
    const multiText1 = `
    	{{define "x"}}TEXT{{end}}
    	{{define "dotV"}}{{.V}}{{end}}
    `
    
    const multiText2 = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
Back to top