Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 542 for adir (0.07 sec)

  1. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    	})
    	t.Run("cert present later", func(t *testing.T) {
    		dir := t.TempDir()
    		server := mockCAServer{Certs: fakeCert, Err: nil, Authenticator: security.NewFakeAuthenticator("ca")}
    		addr := serve(t, server, tlsOptions(t))
    		opts := &security.Options{
    			CAEndpoint:  addr,
    			CredFetcher: plugin.CreateTokenPlugin("testdata/token"),
    			ProvCert:    dir,
    		}
    		rootCert := path.Join(certDir, constants.RootCertFilename)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/conversion.go

    ) *model.ServiceInstance {
    	var instancePort uint32
    	addr := wle.GetAddress()
    	// priority level: unixAddress > we.ports > se.port.targetPort > se.port.number
    	if strings.HasPrefix(addr, model.UnixAddressPrefix) {
    		instancePort = 0
    		addr = strings.TrimPrefix(addr, model.UnixAddressPrefix)
    	} else if port, ok := wle.Ports[servicePort.Name]; ok && port > 0 {
    		instancePort = port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/net/InetAddresses.java

      public static InetAddress decrement(InetAddress address) {
        byte[] addr = address.getAddress();
        int i = addr.length - 1;
        while (i >= 0 && addr[i] == (byte) 0x00) {
          addr[i] = (byte) 0xff;
          i--;
        }
    
        checkArgument(i >= 0, "Decrementing %s would wrap.", address);
    
        addr[i]--;
        return bytesToInetAddress(addr, null);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  4. src/runtime/pprof/proto.go

    			continue
    		}
    
    		frames, symbolizeResult := allFrames(addr)
    		if len(frames) == 0 { // runtime.goexit.
    			if id := b.emitLocation(); id > 0 {
    				locs = append(locs, id)
    			}
    			stk = stk[1:]
    			continue
    		}
    
    		if added := b.deck.tryAdd(addr, frames, symbolizeResult); added {
    			stk = stk[1:]
    			continue
    		}
    		// add failed because this addr is not inlined with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  5. src/net/mail/message.go

    	if p.empty() {
    		return nil, errors.New("mail: no address")
    	}
    
    	// address = mailbox / group
    	// mailbox = name-addr / addr-spec
    	// group = display-name ":" [group-list] ";" [CFWS]
    
    	// addr-spec has a more restricted grammar than name-addr,
    	// so try parsing it first, and fallback to name-addr.
    	// TODO(dsymonds): Is this really correct?
    	spec, err := p.consumeAddrSpec()
    	if err == nil {
    		var displayName string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_openbsd_mips64.go

    	SYS_KEVENT         = 72  // { int sys_kevent(int fd, \
    	SYS_MUNMAP         = 73  // { int sys_munmap(void *addr, size_t len); }
    	SYS_MPROTECT       = 74  // { int sys_mprotect(void *addr, size_t len, \
    	SYS_MADVISE        = 75  // { int sys_madvise(void *addr, size_t len, \
    	SYS_UTIMES         = 76  // { int sys_utimes(const char *path, \
    	SYS_FUTIMES        = 77  // { int sys_futimes(int fd, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 14.9K bytes
    - Viewed (0)
  7. src/syscall/ztypes_linux_arm.go

    	Level int32
    	Type  int32
    }
    
    type Inet4Pktinfo struct {
    	Ifindex  int32
    	Spec_dst [4]byte /* in_addr */
    	Addr     [4]byte /* in_addr */
    }
    
    type Inet6Pktinfo struct {
    	Addr    [16]byte /* in6_addr */
    	Ifindex uint32
    }
    
    type IPv6MTUInfo struct {
    	Addr RawSockaddrInet6
    	Mtu  uint32
    }
    
    type ICMPv6Filter struct {
    	Data [8]uint32
    }
    
    type Ucred struct {
    	Pid int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. src/syscall/ztypes_linux_s390x.go

    	Level int32
    	Type  int32
    }
    
    type Inet4Pktinfo struct {
    	Ifindex  int32
    	Spec_dst [4]byte /* in_addr */
    	Addr     [4]byte /* in_addr */
    }
    
    type Inet6Pktinfo struct {
    	Addr    [16]byte /* in6_addr */
    	Ifindex uint32
    }
    
    type IPv6MTUInfo struct {
    	Addr RawSockaddrInet6
    	Mtu  uint32
    }
    
    type ICMPv6Filter struct {
    	Data [8]uint32
    }
    
    type Ucred struct {
    	Pid int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. pkg/registry/core/service/storage/storage.go

    	}
    	if pod == nil {
    		return fmt.Errorf("pod is missing, skipping (%s/%s)", addr.TargetRef.Namespace, addr.TargetRef.Name)
    	}
    	for _, podIP := range pod.Status.PodIPs {
    		if podIP.IP == addr.IP {
    			return nil
    		}
    	}
    	return fmt.Errorf("pod ip(s) doesn't match endpoint ip, skipping: %v vs %s (%s/%s)", pod.Status.PodIPs, addr.IP, addr.TargetRef.Namespace, addr.TargetRef.Name)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. src/runtime/sys_linux_loong64.s

    // func callCgoMunmap(addr unsafe.Pointer, n uintptr)
    TEXT runtime·callCgoMunmap(SB),NOSPLIT,$0
    	MOVV	addr+0(FP), R4
    	MOVV	n+8(FP), R5
    	MOVV	_cgo_munmap(SB), R13
    	SUBV	$16, R3		// reserve 16 bytes for sp-8 where fp may be saved.
    	JAL	(R13)
    	ADDV	$16, R3
    	RET
    
    // func madvise(addr unsafe.Pointer, n uintptr, flags int32)
    TEXT runtime·madvise(SB),NOSPLIT|NOFRAME,$0
    	MOVV	addr+0(FP), R4
    	MOVV	n+8(FP), R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top