Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 136 for zone2 (0.04 sec)

  1. src/net/iprawsock.go

    type IPAddr struct {
    	IP   IP
    	Zone string // IPv6 scoped addressing zone
    }
    
    // Network returns the address's network name, "ip".
    func (a *IPAddr) Network() string { return "ip" }
    
    func (a *IPAddr) String() string {
    	if a == nil {
    		return "<nil>"
    	}
    	ip := ipEmptyString(a.IP)
    	if a.Zone != "" {
    		return ip + "%" + a.Zone
    	}
    	return ip
    }
    
    func (a *IPAddr) isWildcard() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/discovery.k8s.io.v1.EndpointSlice.yaml

      targetRef:
        apiVersion: apiVersionValue
        fieldPath: fieldPathValue
        kind: kindValue
        name: nameValue
        namespace: namespaceValue
        resourceVersion: resourceVersionValue
        uid: uidValue
      zone: zoneValue
    kind: EndpointSlice
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/well_known_labels.go

    	LabelTopologyZone   = "topology.kubernetes.io/zone"
    	LabelTopologyRegion = "topology.kubernetes.io/region"
    
    	// These label have been deprecated since 1.17, but will be supported for
    	// the foreseeable future, to accommodate things like long-lived PVs that
    	// use them.  New users should prefer the "topology.kubernetes.io/*"
    	// equivalents.
    	LabelFailureDomainBetaZone   = "failure-domain.beta.kubernetes.io/zone"   // deprecated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. pkg/apis/discovery/zz_generated.deepcopy.go

    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	if in.NodeName != nil {
    		in, out := &in.NodeName, &out.NodeName
    		*out = new(string)
    		**out = **in
    	}
    	if in.Zone != nil {
    		in, out := &in.Zone, &out.Zone
    		*out = new(string)
    		**out = **in
    	}
    	if in.Hints != nil {
    		in, out := &in.Hints, &out.Hints
    		*out = new(EndpointHints)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/discovery.k8s.io.v1.EndpointSlice.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/discovery.k8s.io.v1.EndpointSlice.yaml

      targetRef:
        apiVersion: apiVersionValue
        fieldPath: fieldPathValue
        kind: kindValue
        name: nameValue
        namespace: namespaceValue
        resourceVersion: resourceVersionValue
        uid: uidValue
      zone: zoneValue
    kind: EndpointSlice
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/discovery/v1/zz_generated.deepcopy.go

    		for key, val := range *in {
    			(*out)[key] = val
    		}
    	}
    	if in.NodeName != nil {
    		in, out := &in.NodeName, &out.NodeName
    		*out = new(string)
    		**out = **in
    	}
    	if in.Zone != nil {
    		in, out := &in.Zone, &out.Zone
    		*out = new(string)
    		**out = **in
    	}
    	if in.Hints != nil {
    		in, out := &in.Hints, &out.Hints
    		*out = new(EndpointHints)
    		(*in).DeepCopyInto(*out)
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/discovery.k8s.io.v1.EndpointSlice.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  9. src/net/tcpsock_posix.go

    }
    
    func (a *TCPAddr) sockaddr(family int) (syscall.Sockaddr, error) {
    	if a == nil {
    		return nil, nil
    	}
    	return ipToSockaddr(family, a.IP, a.Port, a.Zone)
    }
    
    func (a *TCPAddr) toLocal(net string) sockaddr {
    	return &TCPAddr{loopbackIP(net), a.Port, a.Zone}
    }
    
    func (c *TCPConn) readFrom(r io.Reader) (int64, error) {
    	if n, err, handled := spliceFrom(c.fd, r); handled {
    		return n, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/discovery.k8s.io.v1.EndpointSlice.yaml

      targetRef:
        apiVersion: apiVersionValue
        fieldPath: fieldPathValue
        kind: kindValue
        name: nameValue
        namespace: namespaceValue
        resourceVersion: resourceVersionValue
        uid: uidValue
      zone: zoneValue
    kind: EndpointSlice
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top