Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 133 for newD (0.04 sec)

  1. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v6.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 117 bytes
    - Viewed (0)
  2. src/go/doc/reader.go

    	// copy existing receiver field list and set new receiver field
    	newFieldList := *f.Decl.Recv
    	newFieldList.List = []*ast.Field{&newField}
    
    	// copy existing function declaration and set new receiver field list
    	newFuncDecl := *f.Decl
    	newFuncDecl.Recv = &newFieldList
    
    	// copy existing function documentation and set new declaration
    	newF := *f
    	newF.Decl = &newFuncDecl
    	newF.Recv = recvString(typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/main/resources/footer.html

                </div>
            </section>
            <section class="site-footer__subscribe-newsletter" id="newsletter-form-container">
                <header class="newsletter-form__header"><h5>Stay <code>UP-TO-DATE</code> on new features and news</h5></header>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. src/runtime/sys_solaris_amd64.s

    	MOVL	0(AX), AX
    	MOVQ	AX, libcall_err(DI)
    
    skiperrno2:
    	RET
    
    // uint32 tstart_sysvicall(M *newm);
    TEXT runtime·tstart_sysvicall(SB),NOSPLIT,$0
    	// DI contains first arg newm
    	MOVQ	m_g0(DI), DX		// g
    
    	// Make TLS entries point at g and m.
    	get_tls(BX)
    	MOVQ	DX, g(BX)
    	MOVQ	DI, g_m(DX)
    
    	// Layout new m scheduler stack on os stack.
    	MOVQ	SP, AX
    	MOVQ	AX, (g_stack+stack_hi)(DX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. src/runtime/sys_windows_amd64.s

    	POP_REGS_HOST_TO_ABI0()
    
    	// The return value was placed in AX above.
    	RET
    
    // uint32 tstart_stdcall(M *newm);
    TEXT runtime·tstart_stdcall(SB),NOSPLIT|NOFRAME,$0
    	// Switch from the host ABI to the Go ABI.
    	PUSH_REGS_HOST_TO_ABI0()
    
    	// CX contains first arg newm
    	MOVQ	m_g0(CX), DX		// g
    
    	// Layout new m scheduler stack on os stack.
    	MOVQ	SP, AX
    	MOVQ	AX, (g_stack+stack_hi)(DX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 07:24:08 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. src/runtime/gc_test.go

    //
    //go:noinline
    func moveStackCheck(t *testing.T, new *int, old uintptr) bool {
    	// new should have been updated by the stack move;
    	// old should not have.
    
    	// Capture new's value before doing anything that could
    	// further move the stack.
    	new2 := uintptr(unsafe.Pointer(new))
    
    	t.Logf("old stack pointer %x, new stack pointer %x", old, new2)
    	if new2 == old {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v4.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 150 bytes
    - Viewed (0)
  8. src/go/doc/example.go

    	for _, d := range file.Decls {
    		if f, ok := d.(*ast.FuncDecl); ok && isTest(f.Name.Name, "Example") {
    			// Copy the FuncDecl, as it may be used elsewhere.
    			newF := *f
    			newF.Name = ast.NewIdent("main")
    			newF.Body, comments = stripOutputComment(f.Body, comments)
    			d = &newF
    		}
    		decls = append(decls, d)
    	}
    
    	// Copy the File, as it may be used elsewhere.
    	f := *file
    	f.Name = ast.NewIdent("main")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  9. src/encoding/gob/type.go

    	if m := typeInfoMapInit; m != nil {
    		m[rt] = info
    		return info, nil
    	}
    
    	// Create new map with old contents plus new entry.
    	m, _ := typeInfoMap.Load().(map[reflect.Type]*typeInfo)
    	newm := make(map[reflect.Type]*typeInfo, len(m))
    	for k, v := range m {
    		newm[k] = v
    	}
    	newm[rt] = info
    	typeInfoMap.Store(newm)
    	return info, nil
    }
    
    // Called only when a panic is acceptable and unexpected.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  10. src/runtime/sys_plan9_amd64.s

    	MOVL	AX, ret+16(FP)
    	RET
    
    TEXT runtime·rfork(SB),NOSPLIT,$0
    	MOVQ	$19, BP
    	SYSCALL
    	MOVL	AX, ret+8(FP)
    	RET
    
    TEXT runtime·tstart_plan9(SB),NOSPLIT,$8
    	MOVQ	newm+0(FP), CX
    	MOVQ	m_g0(CX), DX
    
    	// Layout new m scheduler stack on os stack.
    	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)
    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