Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 83 for addressTypes (0.85 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/api/discovery/v1/generated.pb.go

    }
    
    func (m *EndpointSlice) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	i -= len(m.AddressType)
    	copy(dAtA[i:], m.AddressType)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.AddressType)))
    	i--
    	dAtA[i] = 0x22
    	if len(m.Ports) > 0 {
    		for iNdEx := len(m.Ports) - 1; iNdEx >= 0; iNdEx-- {
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 55.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/discovery/v1beta1/generated.pb.go

    }
    
    func (m *EndpointSlice) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	i -= len(m.AddressType)
    	copy(dAtA[i:], m.AddressType)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.AddressType)))
    	i--
    	dAtA[i] = 0x22
    	if len(m.Ports) > 0 {
    		for iNdEx := len(m.Ports) - 1; iNdEx >= 0; iNdEx-- {
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  6. pkg/controlplane/reconcilers/helpers_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Namespace: metav1.NamespaceDefault,
    			Name:      name,
    			Labels: map[string]string{
    				discoveryv1.LabelServiceName: name,
    			},
    		},
    		AddressType: discoveryv1.AddressTypeIPv4,
    		Endpoints:   make([]discoveryv1.Endpoint, len(ips)),
    		Ports:       make([]discoveryv1.EndpointPort, len(ports)),
    	}
    	ready := true
    	for i := range ips {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:23 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. pkg/registry/core/service/ipallocator/ipallocator.go

    // but using netip.Addr instead of net.IP
    func addOffsetAddress(address netip.Addr, offset uint64) (netip.Addr, error) {
    	addressBytes := address.AsSlice()
    	addressBig := big.NewInt(0).SetBytes(addressBytes)
    	r := big.NewInt(0).Add(addressBig, big.NewInt(int64(offset))).Bytes()
    	// r must be 4 or 16 bytes depending of the ip family
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  8. tests/integration/pilot/gateway_conformance_test.go

    					Insert(features.HTTPRouteExtendedFeatures.UnsortedList()...).
    					Insert(features.MeshCoreFeatures.UnsortedList()...).
    					Insert(features.GRPCRouteCoreFeatures.UnsortedList()...)
    			}
    			hostnameType := v1.AddressType("Hostname")
    			istioVersion, _ := env.ReadVersion()
    			opts := suite.ConformanceOptions{
    				Client:                   c,
    				Clientset:                gatewayConformanceInputs.Client.Kube(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 15:22:47 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. tests/integration/ambient/gateway_conformance_test.go

    			c, err := client.New(gatewayConformanceInputs.Client.RESTConfig(), client.Options{
    				Scheme: kube.IstioScheme,
    				Mapper: mapper,
    			})
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			hostnameType := v1.AddressType("Hostname")
    			istioVersion, _ := env.ReadVersion()
    			supported := gateway.SupportedFeatures.Clone().Delete(gwfeatures.SupportMeshConsumerRoute)
    			opts := suite.ConformanceOptions{
    				Client:                   c,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/InetAddresses.java

        int numBytes = isIpv6 ? 16 : 4;
    
        byte[] addressBytes = address.toByteArray();
        byte[] targetCopyArray = new byte[numBytes];
    
        int srcPos = Math.max(0, addressBytes.length - numBytes);
        int copyLength = addressBytes.length - srcPos;
        int destPos = numBytes - copyLength;
    
        // Check the extra bytes in the BigInteger are all zero.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top