Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 270 for mpos (0.17 sec)

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

    ## Line
    -- markdown --
    What the ~!@#$%^&\*()\_+-=\`{}|\[]\\:";',./\<>?
    
    \+ Line
    
    \- Line
    
    \* Line
    
    999\. Line
    
    \## Line
    -- html --
    <p>What the ~!@#$%^&amp;*()_+-=`{}|[]\:&quot;;&apos;,./&lt;&gt;?
    <p>+ Line
    <p>- Line
    <p>* Line
    <p>999. Line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:40 UTC 2022
    - 535 bytes
    - Viewed (0)
  2. src/compress/bzip2/bzip2.go

    		if bz2.repeats > 0 {
    			buf[n] = byte(bz2.lastByte)
    			n++
    			bz2.repeats--
    			if bz2.repeats == 0 {
    				bz2.lastByte = -1
    			}
    			continue
    		}
    
    		bz2.tPos = bz2.preRLE[bz2.tPos]
    		b := byte(bz2.tPos)
    		bz2.tPos >>= 8
    		bz2.preRLEUsed++
    
    		if bz2.byteRepeats == 3 {
    			bz2.repeats = uint(b)
    			bz2.byteRepeats = 0
    			continue
    		}
    
    		if bz2.lastByte == int(b) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. misc/ios/detect.go

    	"os"
    	"os/exec"
    	"strings"
    )
    
    func main() {
    	udids := getLines(exec.Command("idevice_id", "-l"))
    	if len(udids) == 0 {
    		fail("no udid found; is a device connected?")
    	}
    
    	mps := detectMobileProvisionFiles(udids)
    	if len(mps) == 0 {
    		fail("did not find mobile provision matching device udids %q", udids)
    	}
    
    	fmt.Println("# Available provisioning profiles below.")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:30 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    func (s *regAllocState) allocValToReg(v *Value, mask regMask, nospill bool, pos src.XPos) *Value {
    	if s.f.Config.ctxt.Arch.Arch == sys.ArchWasm && v.rematerializeable() {
    		c := v.copyIntoWithXPos(s.curBlock, pos)
    		c.OnWasmStack = true
    		s.setOrig(c, v)
    		return c
    	}
    	if v.OnWasmStack {
    		return v
    	}
    
    	vi := &s.values[v.ID]
    	pos = pos.WithNotStmt()
    	// Check if v is already in a requested register.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/index.md

     <span style="background-color:#C4A000"><font color="#2E3436">╰─────────────────────────────────────────────────────╯</font></span>
    
    <font color="#4E9A06">INFO</font>:     Will watch for changes in these directories: [&apos;/home/user/code/awesomeapp&apos;]
    <font color="#4E9A06">INFO</font>:     Uvicorn running on <b>http://127.0.0.1:8000</b> (Press CTRL+C to quit)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata/link5.txt

    See the [Go home page](https://go.dev/) and the [pkg site](https://pkg.go.dev).
    
    They're really great!
    -- html --
    <p>See the <a href="https://go.dev/">Go home page</a> and the <a href="https://pkg.go.dev">pkg
    site</a>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:43 UTC 2022
    - 772 bytes
    - Viewed (0)
  7. tensorflow/cc/framework/cc_op_gen_test.cc

    void ExpectSubstrOrder(const string& s, const string& before,
                           const string& after) {
      int before_pos = s.find(before);
      int after_pos = s.find(after);
      ASSERT_NE(std::string::npos, before_pos);
      ASSERT_NE(std::string::npos, after_pos);
      EXPECT_LT(before_pos, after_pos)
          << before << " is not before " << after << " in " << s;
    }
    
    // Runs WriteCCOps and stores output in (internal_)cc_file_path and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 29 20:04:30 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  8. src/go/doc/comment/testdata/quote.txt

    quotes ` and ' do not. Misplaced markdown fences ``` do not either.
    -- html --
    <p>Doubled single quotes like “ and ” turn into Unicode double quotes,
    but single quotes ` and &apos; do not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 19:06:16 UTC 2022
    - 656 bytes
    - Viewed (0)
  9. src/cmd/internal/obj/line_test.go

    	}
    
    	for _, test := range tests {
    		fileIndex, line := ctxt.getFileIndexAndLine(ctxt.PosTable.XPos(test.pos))
    
    		file := "??"
    		if fileIndex >= 0 {
    			file = ctxt.PosTable.FileTable()[fileIndex]
    		}
    		got := fmt.Sprintf("%s:%d", file, line)
    
    		if got != test.want {
    			t.Errorf("ctxt.getFileSymbolAndLine(%v) = %q, want %q", test.pos, got, test.want)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/go/parser/parser.go

    		s = &ast.EmptyStmt{Semicolon: p.pos, Implicit: p.lit == "\n"}
    		p.next()
    	case token.RBRACE:
    		// a semicolon may be omitted before a closing "}"
    		s = &ast.EmptyStmt{Semicolon: p.pos, Implicit: true}
    	default:
    		// no statement found
    		pos := p.pos
    		p.errorExpected(pos, "statement")
    		p.advance(stmtStart)
    		s = &ast.BadStmt{From: pos, To: p.pos}
    	}
    
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top