Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for tPos (0.19 sec)

  1. src/runtime/gc_test.go

    		var stack [depth]*node
    		tos := -1
    
    		// There are two write barriers per iteration, so i+=2.
    		for i := 0; i < b.N; i += 2 {
    			if tos == -1 {
    				stack[0] = root
    				tos = 0
    			}
    
    			// Perform one step of reversing the tree.
    			n := stack[tos]
    			if n.l == nil {
    				tos--
    			} else {
    				n.l, n.r = n.r, n.l
    				stack[tos] = n.l
    				stack[tos+1] = n.r
    				tos++
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/dom.go

    	s = append(s, blockAndIndex{b: f.Entry})
    	seen[f.Entry.ID] = true
    	for len(s) > 0 {
    		tos := len(s) - 1
    		x := s[tos]
    		b := x.b
    		if i := x.index; i < len(b.Succs) {
    			s[tos].index++
    			bb := b.Succs[i].Block()
    			if !seen[bb.ID] {
    				seen[bb.ID] = true
    				s = append(s, blockAndIndex{b: bb})
    			}
    			continue
    		}
    		s = s[:tos]
    		if ponums != nil {
    			ponums[b.ID] = int32(len(order))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  3. src/runtime/os2_plan9.go

    	_RFCNAMEG = 1 << 10
    	_RFCENVG  = 1 << 11
    	_RFCFDG   = 1 << 12
    	_RFREND   = 1 << 13
    	_RFNOMNT  = 1 << 14
    )
    
    // notify
    const (
    	_NCONT = 0
    	_NDFLT = 1
    )
    
    type uinptr _Plink
    
    type tos struct {
    	prof struct { // Per process profiling
    		pp    *_Plink // known to be 0(ptr)
    		next  *_Plink // known to be 4(ptr)
    		last  *_Plink
    		first *_Plink
    		pid   uint32
    		what  uint32
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 14 18:33:38 UTC 2015
    - 1.5K bytes
    - Viewed (0)
  4. pkg/wasm/cache_test.go

    	reg := registry.New()
    	// Set up a fake registry for OCI images.
    	tos := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		atomic.AddInt32(&tsNumRequest, 1)
    		reg.ServeHTTP(w, r)
    	}))
    	defer tos.Close()
    	ou, err := url.Parse(tos.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	dockerImageDigest, invalidOCIImageDigest := setupOCIRegistry(t, ou.Host)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  5. src/internal/dag/parse.go

    					errorf("use of %s before its definition", less)
    				} else {
    					g.AddEdge(def, less)
    				}
    			}
    		}
    	}
    
    	// Check for missing definition.
    	for _, tos := range g.edges {
    		for to := range tos {
    			if g.edges[to] == nil {
    				errorf("missing definition for %s", to)
    			}
    		}
    	}
    
    	// Complete transitive closure.
    	for _, k := range g.Nodes {
    		for _, i := range g.Nodes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/net/http/mapping_test.go

    		"go_mem.html",
    		"go_spec.html",
    		"help.html",
    		"ie.css",
    		"install-source.html",
    		"install.html",
    		"logo-153x55.png",
    		"Makefile",
    		"root.html",
    		"share.png",
    		"sieve.gif",
    		"tos.html",
    		"articles",
    	}
    	if len(children) != 32 {
    		panic("bad len")
    	}
    	for _, n := range []int{2, 4, 8, 16, 32} {
    		list := children[:n]
    		b.Run(fmt.Sprintf("n=%d", n), func(b *testing.B) {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 17:47:07 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

            return buf.toString();
        }
    
        protected void sendToGoogleChat(final CardView cardView, final SMailPostingDiscloser discloser) {
            // https://developers.google.com/hangouts/chat/how-tos/webhooks
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String googleChatWebhookUrls = fessConfig.getGoogleChatWebhookUrls();
            if (StringUtil.isBlank(googleChatWebhookUrls)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. src/runtime/asm_wasm.s

    //
    // gcWriteBarrier does NOT follow the Go ABI. It accepts the
    // number of bytes of buffer needed as a wasm argument
    // (put on the TOS by the caller, lives in local R0 in this body)
    // and returns a pointer to the buffer space as a wasm result
    // (left on the TOS in this body, appears on the wasm stack
    // in the caller).
    TEXT gcWriteBarrier<>(SB), NOSPLIT, $0
    	Loop
    		// R3 = g.m
    		MOVD g_m(g), R3
    		// R4 = p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:26:51 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. src/runtime/sys_plan9_386.s

    	MOVL	SP, AX
    	MOVL	AX, (g_stack+stack_hi)(DX)
    	SUBL	$(64*1024), AX		// stack size
    	MOVL	AX, (g_stack+stack_lo)(DX)
    	MOVL	AX, g_stackguard0(DX)
    	MOVL	AX, g_stackguard1(DX)
    
    	// Initialize procid from TOS struct.
    	MOVL	_tos(SB), AX
    	MOVL	48(AX), AX
    	MOVL	AX, m_procid(CX)	// save pid as m->procid
    
    	// Finally, initialize g.
    	get_tls(BX)
    	MOVL	DX, g(BX)
    
    	CALL	runtime·stackcheck(SB)	// smashes AX, CX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  10. src/runtime/sys_plan9_amd64.s

    	MOVQ	SP, AX
    	MOVQ	AX, (g_stack+stack_hi)(DX)
    	SUBQ	$(64*1024), AX		// stack size
    	MOVQ	AX, (g_stack+stack_lo)(DX)
    	MOVQ	AX, g_stackguard0(DX)
    	MOVQ	AX, g_stackguard1(DX)
    
    	// Initialize procid from TOS struct.
    	MOVQ	_tos(SB), AX
    	MOVL	64(AX), AX
    	MOVQ	AX, m_procid(CX)	// save pid as m->procid
    
    	// Finally, initialize g.
    	get_tls(BX)
    	MOVQ	DX, g(BX)
    
    	CALL	runtime·stackcheck(SB)	// smashes AX, CX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 16:41:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top