Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 270 for mpos (0.04 sec)

  1. src/cmd/compile/internal/ssa/trim.go

    		if bIsStmt {
    			sawStmt := false
    			for _, v := range s.Values {
    				if isPoorStatementOp(v.Op) {
    					continue
    				}
    				if v.Pos.SameFileAndLine(bPos) {
    					v.Pos = v.Pos.WithIsStmt()
    				}
    				sawStmt = true
    				break
    			}
    			if !sawStmt && s.Pos.SameFileAndLine(bPos) {
    				s.Pos = s.Pos.WithIsStmt()
    			}
    		}
    		// If `s` had more than one predecessor, update its phi-ops to
    		// account for the merge.
    		if ns > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/copy.go

    // If pos.IsKnown(), it sets the source position of newly allocated Nodes to pos.
    func DeepCopy(pos src.XPos, n Node) Node {
    	var edit func(Node) Node
    	edit = func(x Node) Node {
    		switch x.Op() {
    		case ONAME, ONONAME, OLITERAL, ONIL, OTYPE:
    			return x
    		}
    		x = Copy(x)
    		if pos.IsKnown() {
    			x.SetPos(pos)
    		}
    		EditChildren(x, edit)
    		return x
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:57:57 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_ppc64.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: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_riscv64.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: Thu Oct 19 23:33:33 UTC 2023
    - 12K bytes
    - Viewed (0)
  5. docs/pt/docs/advanced/events.md

    E então, logo após o `yield`, descarregaremos o modelo. Esse código será executado **após** a aplicação **terminar de lidar com as requisições**, pouco antes do *encerramento*. Isso poderia, por exemplo, liberar recursos como memória ou GPU.
    
    !!! tip "Dica"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.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: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top