Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 306 for mpos (0.05 sec)

  1. src/go/ast/commentmap.go

    func (s *nodeStack) push(n Node) {
    	s.pop(n.Pos())
    	*s = append((*s), n)
    }
    
    // pop pops all nodes that appear lexically before pos
    // (i.e., whose lexical extent has ended before or at pos).
    // It returns the last node popped.
    func (s *nodeStack) pop(pos token.Pos) (top Node) {
    	i := len(*s)
    	for i > 0 && (*s)[i-1].End() <= pos {
    		top = (*s)[i-1]
    		i--
    	}
    	*s = (*s)[0:i]
    	return top
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/syscall/zsysctl_openbsd.go

    	{"net.key.spd_dump", []_C_int{4, 30, 2}},
    	{"net.mpls.ifq.congestion", []_C_int{4, 33, 3, 4}},
    	{"net.mpls.ifq.drops", []_C_int{4, 33, 3, 3}},
    	{"net.mpls.ifq.len", []_C_int{4, 33, 3, 1}},
    	{"net.mpls.ifq.maxlen", []_C_int{4, 33, 3, 2}},
    	{"net.mpls.mapttl_ip", []_C_int{4, 33, 5}},
    	{"net.mpls.mapttl_ip6", []_C_int{4, 33, 6}},
    	{"net.mpls.ttl", []_C_int{4, 33, 2}},
    	{"net.pflow.stats", []_C_int{4, 34, 1}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/node_matchers_test.cc

                  std::string::npos);
        EXPECT_NE(explanation.find("does not match expected: is empty"),
                  std::string::npos);
      }
      {
        const std::string explanation =
            Explain(placeholder_d.node(), NodeWith(CtrlDeps(NodeWith())));
        EXPECT_NE(explanation.find("ctrl_deps"), std::string::npos);
        EXPECT_NE(explanation.find("does not match expected: has 1 element and "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 14:43:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/background-tasks.md

    # Tarefas em segundo plano
    
    Você pode definir tarefas em segundo plano a serem executadas _ após _ retornar uma resposta.
    
    Isso é útil para operações que precisam acontecer após uma solicitação, mas que o cliente realmente não precisa esperar a operação ser concluída para receber a resposta.
    
    Isso inclui, por exemplo:
    
    - Envio de notificações por email após a realização de uma ação:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 09 23:44:32 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/html/escape.go

    		}
    	}
    
    	dst1, src1 = dst+i, src+i
    	copy(b[dst:dst1], b[src:src1])
    	return dst1, src1
    }
    
    var htmlEscaper = strings.NewReplacer(
    	`&`, "&amp;",
    	`'`, "&#39;", // "&#39;" is shorter than "&apos;" and apos was not in HTML until HTML5.
    	`<`, "&lt;",
    	`>`, "&gt;",
    	`"`, "&#34;", // "&#34;" is shorter than "&quot;".
    )
    
    // EscapeString escapes special characters like "<" to become "&lt;". It
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 13 07:00:18 UTC 2020
    - 5K bytes
    - Viewed (0)
  10. 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)
Back to top