Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 542 for adir (0.13 sec)

  1. cmd/kubeadm/app/phases/addons/dns/dns_test.go

            loadbalance
            kubernetes cluster.local in-addr.arpa ip6.arpa {
               pods insecure
               upstream
               fallthrough in-addr.arpa ip6.arpa
               ttl 30
            }
            health
        }
    `,
    			expectedCorefileData: `.:53 {
        errors
        health {
           lameduck 5s
        }
        ready
        kubernetes cluster.local in-addr.arpa ip6.arpa {
           pods insecure
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. src/net/lookup_windows.go

    		for ; result != nil; result = result.Next {
    			addr := unsafe.Pointer(result.Addr)
    			switch result.Family {
    			case syscall.AF_INET:
    				a := (*syscall.RawSockaddrInet4)(addr).Addr
    				addrs = append(addrs, IPAddr{IP: copyIP(a[:])})
    			case syscall.AF_INET6:
    				a := (*syscall.RawSockaddrInet6)(addr).Addr
    				zone := zoneCache.name(int((*syscall.RawSockaddrInet6)(addr).Scope_id))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf_test.go

    		return secs[i].Addr < secs[j].Addr
    	})
    
    	// Check to make sure we don't have any overlaps.
    	foundOverlap := false
    	for i := 0; i < len(secs)-1; i++ {
    		for j := i + 1; j < len(secs); j++ {
    			s := secs[i]
    			sn := secs[j]
    			if secOverlaps(s, sn) {
    				t.Errorf("unexpected: section %d:%q (addr=%x size=%x) overlaps section %d:%q (addr=%x size=%x)", i, s.Name, s.Addr, s.Size, i+1, sn.Name, sn.Addr, sn.Size)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    		}
    
    		var sloc []*Location
    		for _, addr := range addrs {
    			// Addresses from stack traces point to the next instruction after
    			// each call. Adjust by -1 to land somewhere on the actual call.
    			addr--
    			loc := locs[addr]
    			if locs[addr] == nil {
    				loc = &Location{
    					Address: addr,
    				}
    				p.Location = append(p.Location, loc)
    				locs[addr] = loc
    			}
    			sloc = append(sloc, loc)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  5. src/net/unixsock_test.go

    	if !testableNetwork("unixgram") {
    		t.Skip("unixgram test")
    	}
    
    	addr := testUnixAddr(t)
    	laddr, err := ResolveUnixAddr("unixgram", addr)
    	if err != nil {
    		t.Fatal(err)
    	}
    	c, err := ListenPacket("unixgram", addr)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.Remove(addr)
    	defer c.Close()
    
    	testUnixgramWriteConn(t, laddr)
    	testUnixgramWritePacketConn(t, laddr)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. src/net/http/socks_bundle.go

    	if err := d.validateTarget(network, address); err != nil {
    		proxy, dst, _ := d.pathAddrs(address)
    		return nil, &net.OpError{Op: d.cmd.String(), Net: network, Source: proxy, Addr: dst, Err: err}
    	}
    	if ctx == nil {
    		proxy, dst, _ := d.pathAddrs(address)
    		return nil, &net.OpError{Op: d.cmd.String(), Net: network, Source: proxy, Addr: dst, Err: errors.New("nil context")}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 22:42:18 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/decodesym.go

    // Find the elf.Section of a given shared library that contains a given address.
    func findShlibSection(ctxt *Link, path string, addr uint64) *elf.Section {
    	for _, shlib := range ctxt.Shlibs {
    		if shlib.Path == path {
    			for _, sect := range shlib.File.Sections[1:] { // skip the NULL section
    				if sect.Addr <= addr && addr < sect.Addr+sect.Size {
    					return sect
    				}
    			}
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/binutils/binutils.go

    // the elfMapping field is set. It populates the base and isData fields and
    // returns an error.
    func (f *file) computeBase(addr uint64) error {
    	if f == nil || f.m == nil {
    		return nil
    	}
    	if addr < f.m.start || addr >= f.m.limit {
    		return fmt.Errorf("specified address %x is outside the mapping range [%x, %x] for file %q", addr, f.m.start, f.m.limit, f.name)
    	}
    	ef, err := elfOpen(f.name)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/Config.java

        public static InetAddress getInetAddress( String key, InetAddress def ) {
            String addr = prp.getProperty( key );
            if( addr != null ) {
                try {
                    def = InetAddress.getByName( addr );
                } catch( UnknownHostException uhe ) {
                    if( log.level > 0 ) {
                        log.println( addr );
                        uhe.printStackTrace( log );
                    }
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  10. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_MSYNC         = 65  // { int msync(void *addr, size_t len, int flags); }
    	SYS_VFORK         = 66  // { pid_t vfork(void); }
    	SYS_SBRK          = 69  // { int sbrk(int incr); }
    	SYS_SSTK          = 70  // { int sstk(int incr); }
    	SYS_MUNMAP        = 73  // { int munmap(void *addr, size_t len); }
    	SYS_MPROTECT      = 74  // { int mprotect(void *addr, size_t len, int prot); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
Back to top