Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 53 of 53 for IPV4 (0.04 sec)

  1. okhttp/api/okhttp.api

    	public static final field TYPE_AAAA I
    	public final fun toDns ([Lokhttp3/AsyncDns;)Lokhttp3/Dns;
    }
    
    public final class okhttp3/AsyncDns$DnsClass : java/lang/Enum {
    	public static final field IPV4 Lokhttp3/AsyncDns$DnsClass;
    	public static final field IPV6 Lokhttp3/AsyncDns$DnsClass;
    	public static fun getEntries ()Lkotlin/enums/EnumEntries;
    	public final fun getType ()I
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  2. pkg/workloadapi/workload.pb.go

    	// This is just for debugging and may be elided as an optimization.
    	Namespace string `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
    	// Address represents the IPv4/IPv6 address for the workload.
    	// This should be globally unique.
    	// This should not have a port number.
    	// Each workload must have at least either an address or hostname; not both.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    			return nil, err
    		}
    		rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeEmail, Class: 2, Bytes: []byte(email)})
    	}
    	for _, rawIP := range ipAddresses {
    		// If possible, we always want to encode IPv4 addresses in 4 bytes.
    		ip := rawIP.To4()
    		if ip == nil {
    			ip = rawIP
    		}
    		rawValues = append(rawValues, asn1.RawValue{Tag: nameTypeIP, Class: 2, Bytes: ip})
    	}
    	for _, uri := range uris {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top