Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 133 for mpos (0.1 sec)

  1. tensorflow/cc/saved_model/saved_model_bundle_test.cc

                                 {kSavedModelTagServe}, &bundle);
      EXPECT_FALSE(st.ok());
      EXPECT_NE(st.message().find("initializes from a tensor with -1 elements"),
                std::string::npos);
    }
    
    TEST_F(LoaderTest, ConstNoValue) {
      SavedModelBundle bundle;
      RunOptions run_options;
      SessionOptions session_options;
    
      const string export_dir = io::JoinPath(testing::TensorFlowSrcRoot(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 19:16:58 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. docs/pt/docs/contributing.md

    <div class="termy">
    
    ```console
    $ bash scripts/format-imports.sh
    ```
    
    </div>
    
    Como ele roda um comando após o outro, modificando e revertendo muitos arquivos, ele demora um pouco para concluir, então pode ser um pouco mais fácil utilizar `scripts/format.sh` frequentemente e `scripts/format-imports.sh` somente após "commitar uma branch".
    
    ## Documentação
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 11 21:38:15 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/staticinit/sched.go

    		r = r.(*ir.ConvExpr).X
    	}
    
    	assign := func(pos src.XPos, a *ir.Name, aoff int64, v ir.Node) {
    		if s.StaticAssign(a, aoff, v, v.Type()) {
    			return
    		}
    		var lhs ir.Node
    		if ir.IsBlank(a) {
    			// Don't use NameOffsetExpr with blank (#43677).
    			lhs = ir.BlankNode
    		} else {
    			lhs = ir.NewNameOffsetExpr(pos, a, aoff, v.Type())
    		}
    		s.append(ir.NewAssignStmt(pos, lhs, v))
    	}
    
    	switch r.Op() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/switch.go

    			// Search within this run of same-length strings.
    			pos := run[0].pos
    			s.done.Append(ir.NewLabelStmt(pos, label))
    			stringSearch(s.exprname, run, &s.done)
    			s.done.Append(ir.NewBranchStmt(pos, ir.OGOTO, endLabel))
    
    			// Add length case to outer switch.
    			cas := ir.NewInt(pos, runLen(run))
    			jmp := ir.NewBranchStmt(pos, ir.OGOTO, label)
    			outer.Add(pos, cas, nil, jmp)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  5. src/go/scanner/scanner_test.go

    	// set up expected position
    	epos := token.Position{
    		Filename: "",
    		Offset:   0,
    		Line:     1,
    		Column:   1,
    	}
    
    	index := 0
    	for {
    		pos, tok, lit := s.Scan()
    
    		// check position
    		if tok == token.EOF {
    			// correction for EOF
    			epos.Line = newlineCount(string(source))
    			epos.Column = 2
    		}
    		checkPos(t, lit, pos, epos)
    
    		// check token
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. src/text/template/parse/lex.go

    	if x := strings.Index(l.input[l.pos:], l.leftDelim); x >= 0 {
    		if x > 0 {
    			l.pos += Pos(x)
    			// Do we trim any trailing space?
    			trimLength := Pos(0)
    			delimEnd := l.pos + Pos(len(l.leftDelim))
    			if hasLeftTrimMarker(l.input[delimEnd:]) {
    				trimLength = rightTrimLength(l.input[l.start:l.pos])
    			}
    			l.pos -= trimLength
    			l.line += strings.Count(l.input[l.start:l.pos], "\n")
    			i := l.thisItem(itemText)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/ntlmssp/Type2Message.java

            pos += 8;
    
            if ( getFlag(NTLMSSP_NEGOTIATE_VERSION) ) {
                System.arraycopy(NTLMSSP_VERSION, 0, type2, pos, NTLMSSP_VERSION.length);
                pos += NTLMSSP_VERSION.length;
            }
    
            pos += writeSecurityBufferContent(type2, pos, targetNameOff, targetBytes);
            pos += writeSecurityBufferContent(type2, pos, targetInfoOff, targetInformationBytes);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/nilcheck.go

    					v.Pos = v.Pos.WithIsStmt()
    					pendingLines.remove(v.Pos)
    				}
    			}
    			if pendingLines.contains(b.Pos) {
    				b.Pos = b.Pos.WithIsStmt()
    				pendingLines.remove(b.Pos)
    			}
    
    			// Add all dominated blocks to the work list.
    			for w := sdom[node.block.ID].child; w != nil; w = sdom[w.ID].sibling {
    				work = append(work, bp{op: Work, block: w})
    			}
    
    		case ClearPtr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/go/token/position.go

    //	-                   invalid position without file name
    func (pos Position) String() string {
    	s := pos.Filename
    	if pos.IsValid() {
    		if s != "" {
    			s += ":"
    		}
    		s += strconv.Itoa(pos.Line)
    		if pos.Column != 0 {
    			s += fmt.Sprintf(":%d", pos.Column)
    		}
    	}
    	if s == "" {
    		s = "-"
    	}
    	return s
    }
    
    // Pos is a compact encoding of a source position within a file set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/assign.go

    	nifnz := ir.NewIfStmt(base.Pos, ir.NewBinaryExpr(base.Pos, ir.ONE, l2, ir.NewInt(base.Pos, 0)), nil, nil)
    	nifnz.Likely = true
    	nodes = append(nodes, nifnz)
    
    	elemtype := s.Type().Elem()
    
    	// n := s.len + l2
    	nn := typecheck.TempAt(base.Pos, ir.CurFunc, types.Types[types.TINT])
    	nifnz.Body = append(nifnz.Body, ir.NewAssignStmt(base.Pos, nn, ir.NewBinaryExpr(base.Pos, ir.OADD, ir.NewUnaryExpr(base.Pos, ir.OLEN, s), l2)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top