Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 270 for mpos (0.13 sec)

  1. src/go/doc/comment/testdata/link4.txt

    <p>These are not links.
    <p>[x
    <p>[x]:
    <p>[x]:<a href="https://go.dev">https://go.dev</a>
    <p>[x]<a href="https://go.dev">https://go.dev</a>
    <p>[x]: surprise://go.dev
    <p>[x]: surprise!
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:43 UTC 2022
    - 1020 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/dwarfgen/dwinl.go

    // calls C calls D" and all three callees are inlined (B, C, and D),
    // the index for a node from the inlined body of D will refer to the
    // call to D from C. Whew.
    func posInlIndex(xpos src.XPos) int {
    	pos := base.Ctxt.PosTable.Pos(xpos)
    	if b := pos.Base(); b != nil {
    		ii := b.InliningIndex()
    		if ii >= 0 {
    			return ii
    		}
    	}
    	return -1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/numberlines.go

    			} else {
    				v.Pos = v.Pos.WithDefaultStmt()
    			}
    		}
    		if b.Pos.IsStmt() != src.PosNotStmt && !b.Pos.SameFileAndLine(firstPos) {
    			if f.pass.debug > 0 {
    				fmt.Printf("Mark stmt end of block differs %s %s %s prev pos = %s\n", f.Name, b, flc(b.Pos), flc(firstPos))
    			}
    			b.Pos = b.Pos.WithIsStmt()
    			firstPos = b.Pos
    		}
    		endlines[b.ID] = firstPos
    	}
    	if f.pass.stats&1 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/staticdata/data.go

    		// and then fix up length and content to use file.
    		symdata = slicedata(pos, "")
    		symdata.Size = size
    		symdata.Type = objabi.SNOPTRDATA
    		info := symdata.NewFileInfo()
    		info.Name = file
    		info.Size = size
    	}
    
    	return symdata, size, nil
    }
    
    var slicedataGen int
    
    func slicedata(pos src.XPos, s string) *obj.LSym {
    	slicedataGen++
    	symname := fmt.Sprintf(".gobytes.%d", slicedataGen)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/ssagen/ssa.go

    			p := Arch.Ginsnop(s.pp)
    			p.Pos = p.Pos.WithIsStmt()
    			if b.Pos == src.NoXPos {
    				b.Pos = p.Pos // It needs a file, otherwise a no-file non-zero line causes confusion.  See #35652.
    				if b.Pos == src.NoXPos {
    					b.Pos = s.pp.Text.Pos // Sometimes p.Pos is empty.  See #35695.
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. src/go/doc/comment/testdata/link6.txt

    \[And [https://example.com/](https://example.com/)].
    
    -- html --
    <p>URLs with punctuation are hard.
    We don&apos;t want to consume the end-of-sentence punctuation.
    <p>For example, <a href="https://en.wikipedia.org/wiki/John_Adams_(miniseries)">https://en.wikipedia.org/wiki/John_Adams_(miniseries)</a>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. src/runtime/coro.go

    // pointer errors.
    type coro struct {
    	gp guintptr
    	f  func(*coro)
    
    	// State for validating thread-lock interactions.
    	mp        *m
    	lockedExt uint32 // mp's external LockOSThread counter at coro creation time.
    	lockedInt uint32 // mp's internal lockOSThread counter at coro creation time.
    }
    
    //go:linkname newcoro
    
    // newcoro creates a new coro containing a
    // goroutine blocked waiting to run f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. 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)
Back to top