Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for v4Addr (0.13 sec)

  1. src/net/netip/netip_test.go

    		},
    		{
    			name:          "private v6 mapped v4Addr 10/8",
    			ip:            private6mapped4a,
    			globalUnicast: true,
    			private:       true,
    		},
    		{
    			name:          "private v6 mapped v4Addr 172.16/12",
    			ip:            private6mapped4b,
    			globalUnicast: true,
    			private:       true,
    		},
    		{
    			name:          "private v6 mapped v4Addr 192.168/16",
    			ip:            private6mapped4c,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    		ph.Flags |= elf.PF_X
    	}
    	ph.Vaddr = seg.Vaddr
    	ph.Paddr = seg.Vaddr
    	ph.Memsz = seg.Length
    	ph.Off = seg.Fileoff
    	ph.Filesz = seg.Filelen
    	ph.Align = uint64(*FlagRound)
    
    	return ph
    }
    
    func elfphrelro(seg *sym.Segment) {
    	ph := newElfPhdr()
    	ph.Type = elf.PT_GNU_RELRO
    	ph.Flags = elf.PF_R
    	ph.Vaddr = seg.Vaddr
    	ph.Paddr = seg.Vaddr
    	ph.Memsz = seg.Length
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/debug/elf/file_test.go

    			{Type: PT_NOTE, Flags: 0x0, Off: 0x3f8, Vaddr: 0x0, Paddr: 0x0, Filesz: 0x8ac, Memsz: 0x0, Align: 0x0},
    			{Type: PT_LOAD, Flags: PF_X + PF_R, Off: 0x1000, Vaddr: 0x400000, Paddr: 0x0, Filesz: 0x0, Memsz: 0x1000, Align: 0x1000},
    			{Type: PT_LOAD, Flags: PF_R, Off: 0x1000, Vaddr: 0x401000, Paddr: 0x0, Filesz: 0x1000, Memsz: 0x1000, Align: 0x1000},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/xcoff.go

    		// ctxt.Logf("%s 0x%x\n", sect.Name, sect.Vaddr)
    		// If main section has no bits, nothing to relocate.
    		if sect.Vaddr >= sect.Seg.Vaddr+sect.Seg.Filelen {
    			return 0
    		}
    		sect.Reloff = uint64(ctxt.Out.Offset())
    		for i, s := range syms {
    			if !ldr.AttrReachable(s) {
    				continue
    			}
    			if uint64(ldr.SymValue(s)) >= sect.Vaddr {
    				syms = syms[i:]
    				break
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf.go

    	// and sections, since the layout of these within the file is
    	// based on Section.Vaddr and Symbol.Value.
    	pos := Segdwarf.Vaddr
    	var prevSect *sym.Section
    	for _, si := range dwarfp {
    		for _, s := range si.syms {
    			ldr.SetSymValue(s, int64(pos))
    			sect := ldr.SymSect(s)
    			if sect != prevSect {
    				sect.Vaddr = uint64(pos)
    				prevSect = sect
    			}
    			if ldr.SubSym(s) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    	return s
    }
    
    func datoff(ldr *loader.Loader, s loader.Sym, addr int64) int64 {
    	if uint64(addr) >= Segdata.Vaddr {
    		return int64(uint64(addr) - Segdata.Vaddr + Segdata.Fileoff)
    	}
    	if uint64(addr) >= Segtext.Vaddr {
    		return int64(uint64(addr) - Segtext.Vaddr + Segtext.Fileoff)
    	}
    	ldr.Errorf(s, "invalid datoff %#x", addr)
    	return 0
    }
    
    func Entryvalue(ctxt *Link) int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier.go

    	for _, entry := range proxier.lbNoNodeAccessIPPortProtocolEntries {
    		proxier.filterRules.Write(
    			"-A", string(kubeIPVSOutFilterChain),
    			"-s", entry.IP,
    			"-m", "ipvs", "--vaddr", entry.IP, "--vproto", entry.Protocol, "--vport", strconv.Itoa(entry.Port),
    			"-j", "DROP",
    		)
    	}
    
    	// Accept all traffic with destination of ipvs virtual service, in case other iptables rules
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top