Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 306 for mpos (0.08 sec)

  1. src/strings/replace_test.go

    	"fmt"
    	. "strings"
    	"testing"
    )
    
    var htmlEscaper = NewReplacer(
    	"&", "&",
    	"<", "&lt;",
    	">", "&gt;",
    	`"`, "&quot;",
    	"'", "&apos;",
    )
    
    var htmlUnescaper = NewReplacer(
    	"&amp;", "&",
    	"&lt;", "<",
    	"&gt;", ">",
    	"&quot;", `"`,
    	"&apos;", "'",
    )
    
    // The http package's old HTML escaping function.
    func oldHTMLEscape(s string) string {
    	s = Replace(s, "&", "&amp;", -1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. guava/src/com/google/common/html/HtmlEscapers.java

      // that are considered authoritative for the behavior of that escaper.
    
      private static final Escaper HTML_ESCAPER =
          Escapers.builder()
              .addEscape('"', "&quot;")
              // Note: "&apos;" is not defined in HTML 4.01.
              .addEscape('\'', "&#39;")
              .addEscape('&', "&amp;")
              .addEscape('<', "&lt;")
              .addEscape('>', "&gt;")
              .build();
    
      private HtmlEscapers() {}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 14 22:08:54 UTC 2021
    - 3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/xposmap.go

    func (m *xposmap) set(p src.XPos, v int32) {
    	s := m.mapFor(p.FileIndex())
    	if s == nil {
    		panic(fmt.Sprintf("xposmap.set(%d), file index not found in map\n", p.FileIndex()))
    	}
    	s.set(p.Line(), v)
    }
    
    // get returns the int32 associated with the file index and line of p.
    func (m *xposmap) get(p src.XPos) int32 {
    	s := m.mapFor(p.FileIndex())
    	if s == nil {
    		return -1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:48:16 UTC 2019
    - 3.3K 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