Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 79 for addressTypes (0.34 sec)

  1. staging/src/k8s.io/api/discovery/v1/types_swagger_doc_generated.go

    	"metadata":    "Standard object's metadata.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 15:36:48 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/discovery/v1beta1/types_swagger_doc_generated.go

    	"metadata":    "Standard object's metadata.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. pkg/controller/endpointslicemirroring/reconciler_test.go

    				switch epSlice.AddressType {
    				case discovery.AddressTypeIPv4:
    					matchingEndpointsV4 = append(matchingEndpointsV4, epSlice.Endpoints...)
    				case discovery.AddressTypeIPv6:
    					matchingEndpointsV6 = append(matchingEndpointsV6, epSlice.Endpoints...)
    				default:
    					t.Fatalf("Unexpected EndpointSlice address type found: %v", epSlice.AddressType)
    				}
    			}
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier_test.go

    			)
    
    			populateEndpointSlices(fp,
    				makeTestEndpointSlice("ns1", "svc1", 1, func(eps *discovery.EndpointSlice) {
    					if tc.family == v1.IPv4Protocol {
    						eps.AddressType = discovery.AddressTypeIPv4
    					} else {
    						eps.AddressType = discovery.AddressTypeIPv6
    					}
    					eps.Endpoints = []discovery.Endpoint{{
    						Addresses: []string{epIP1},
    						NodeName:  nil,
    					}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  5. pkg/util/node/node.go

    func GetPreferredNodeAddress(node *v1.Node, preferredAddressTypes []v1.NodeAddressType) (string, error) {
    	for _, addressType := range preferredAddressTypes {
    		for _, address := range node.Status.Addresses {
    			if address.Type == addressType {
    				return address.Address, nil
    			}
    		}
    	}
    	return "", &NoMatchError{addresses: node.Status.Addresses}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. pkg/controller/endpointslice/endpointslice_controller_test.go

    			},
    		},
    		AddressType: discovery.AddressTypeIPv4,
    	}, {
    		ObjectMeta: metav1.ObjectMeta{
    			Name:            "matching-2",
    			Namespace:       ns,
    			OwnerReferences: []metav1.OwnerReference{*ownerRef},
    			Labels: map[string]string{
    				discovery.LabelServiceName: serviceName,
    				discovery.LabelManagedBy:   controllerName,
    			},
    		},
    		AddressType: discovery.AddressTypeIPv4,
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/discovery/v1/generated.proto

    // Endpoint represents a single logical "backend" implementing a service.
    message Endpoint {
      // addresses of this endpoint. The contents of this field are interpreted
      // according to the corresponding EndpointSlice addressType field. Consumers
      // must handle different types of addresses in the context of their own
      // capabilities. This must contain at least one address but no more than
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/discovery.go

    	generators[v3.NameTableType] = &xds.NdsGenerator{ConfigGenerator: cg}
    	generators[v3.ProxyConfigType] = &xds.PcdsGenerator{TrustBundle: env.TrustBundle}
    
    	workloadGen := &xds.WorkloadGenerator{Server: s}
    	generators[v3.AddressType] = workloadGen
    	generators[v3.WorkloadType] = workloadGen
    	generators[v3.WorkloadAuthorizationType] = &xds.WorkloadRBACGenerator{Server: s}
    
    	generators["grpc"] = &grpcgen.GrpcConfigGenerator{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 18:25:42 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	disableRouteGeneration bool
    
    	// disableNameSuffix, if set, will avoid appending -<class> to names
    	disableNameSuffix bool
    
    	// addressType is the default address type to report
    	addressType gateway.AddressType
    }
    
    var classInfos = getClassInfos()
    
    var builtinClasses = getBuiltinClasses()
    
    func getBuiltinClasses() map[gateway.ObjectName]gateway.GatewayController {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

                        ASN1Integer addressType = ASN1Util.as(ASN1Integer.class, addressSequence, 0);
                        DEROctetString addressOctets = ASN1Util.as(DEROctetString.class, addressSequence, 1);
    
                        this.userAddresses = new ArrayList<>();
                        if ( addressType.getValue().intValue() == KerberosConstants.AF_INTERNET ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top