Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 96 for ensp (0.04 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/tasks/CppUnexportMainSymbolIntegrationTest.groovy

        def "can relocate Windows specific _wmain symbol"() {
            makeSingleProject()
            file("src/main/cpp/main.cpp") << """
                #include <iostream>
    
                int wmain(int argc, wchar_t *argv[], wchar_t *envp[] ) {
                    std::cout << "hello world!" << std::endl;
                    return 0;
                }
            """
    
            when:
            succeeds("unexport")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go

    	Esi      int32
    	Edi      int32
    	Ebp      int32
    	Eax      int32
    	Xds      int32
    	Xes      int32
    	Xfs      int32
    	Xgs      int32
    	Orig_eax int32
    	Eip      int32
    	Xcs      int32
    	Eflags   int32
    	Esp      int32
    	Xss      int32
    }
    
    // PtraceGetRegs386 fetches the registers used by 386 binaries.
    func PtraceGetRegs386(pid int, regsout *PtraceRegs386) error {
    	return ptracePtr(PTRACE_GETREGS, pid, 0, unsafe.Pointer(regsout))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/runtime/signal_freebsd_386.go

    func (c *sigctxt) edi() uint32 { return c.regs().mc_edi }
    func (c *sigctxt) esi() uint32 { return c.regs().mc_esi }
    func (c *sigctxt) ebp() uint32 { return c.regs().mc_ebp }
    func (c *sigctxt) esp() uint32 { return c.regs().mc_esp }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) eip() uint32 { return c.regs().mc_eip }
    
    func (c *sigctxt) eflags() uint32  { return c.regs().mc_eflags }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  4. src/runtime/signal_openbsd_386.go

    func (c *sigctxt) edi() uint32 { return c.regs().sc_edi }
    func (c *sigctxt) esi() uint32 { return c.regs().sc_esi }
    func (c *sigctxt) ebp() uint32 { return c.regs().sc_ebp }
    func (c *sigctxt) esp() uint32 { return c.regs().sc_esp }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) eip() uint32 { return c.regs().sc_eip }
    
    func (c *sigctxt) eflags() uint32  { return c.regs().sc_eflags }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/ca/stopwords.txt

    cadascunes
    cadascuns
    com
    contra
    d'un
    d'una
    d'unes
    d'uns
    dalt
    de
    del
    dels
    des
    després
    dins
    dintre
    donat
    doncs
    durant
    e
    eh
    el
    els
    em
    en
    encara
    ens
    entre
    érem
    eren
    éreu
    es
    és
    esta
    està
    estàvem
    estaven
    estàveu
    esteu
    et
    etc
    ets
    fins
    fora
    gairebé
    ha
    han
    has
    havia
    he
    hem
    heu
    hi 
    ho
    i
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  6. src/runtime/defs_plan9_386.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    const _PAGESIZE = 0x1000
    
    type ureg struct {
    	di    uint32 /* general registers */
    	si    uint32 /* ... */
    	bp    uint32 /* ... */
    	nsp   uint32
    	bx    uint32 /* ... */
    	dx    uint32 /* ... */
    	cx    uint32 /* ... */
    	ax    uint32 /* ... */
    	gs    uint32 /* data segments */
    	fs    uint32 /* ... */
    	es    uint32 /* ... */
    	ds    uint32 /* ... */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  7. src/runtime/rt0_linux_ppc64le.s

    	// sequence of string pointers followed by a NULL, and auxv.
    	// The TLS pointer should be initialized to 0.
    	//
    	// In an ELFv2 compliant dynamically linked binary, R3 contains argc,
    	// R4 contains argv, R5 contains envp, R6 contains auxv, and R13
    	// contains the TLS pointer.
    	//
    	// When loading via glibc, the first doubleword on the stack points
    	// to NULL a value. (that is *(uintptr)(R1) == 0). This is used to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/runtime/signal_netbsd_386.go

    func (c *sigctxt) edi() uint32 { return c.regs().__gregs[_REG_EDI] }
    func (c *sigctxt) esi() uint32 { return c.regs().__gregs[_REG_ESI] }
    func (c *sigctxt) ebp() uint32 { return c.regs().__gregs[_REG_EBP] }
    func (c *sigctxt) esp() uint32 { return c.regs().__gregs[_REG_UESP] }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) eip() uint32 { return c.regs().__gregs[_REG_EIP] }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/util/ipvs_test.go

    				Port:     8080,
    			},
    			expected: "[2012::beef]:8080/UDP",
    		},
    		{
    			svc: &VirtualServer{
    				Address:  netutils.ParseIPSloppy("10.20.30.41"),
    				Protocol: "ESP",
    				Port:     1234,
    			},
    			expected: "10.20.30.41:1234/ESP",
    		},
    	}
    
    	for i := range Tests {
    		if Tests[i].expected != Tests[i].svc.String() {
    			t.Errorf("case: %d got %v, expected %v", i, Tests[i].svc.String(), Tests[i].expected)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	R8W:  "R8W",
    	R9W:  "R9W",
    	R10W: "R10W",
    	R11W: "R11W",
    	R12W: "R12W",
    	R13W: "R13W",
    	R14W: "R14W",
    	R15W: "R15W",
    	EAX:  "EAX",
    	ECX:  "ECX",
    	EDX:  "EDX",
    	EBX:  "EBX",
    	ESP:  "ESP",
    	EBP:  "EBP",
    	ESI:  "ESI",
    	EDI:  "EDI",
    	R8L:  "R8L",
    	R9L:  "R9L",
    	R10L: "R10L",
    	R11L: "R11L",
    	R12L: "R12L",
    	R13L: "R13L",
    	R14L: "R14L",
    	R15L: "R15L",
    	RAX:  "RAX",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top