Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 83 for ipAddresses (0.3 sec)

  1. pilot/pkg/networking/core/fake.go

    		p.Metadata.Namespace = p.ConfigNamespace
    	}
    	if p.ID == "" {
    		p.ID = "app.test"
    	}
    	if p.DNSDomain == "" {
    		p.DNSDomain = p.ConfigNamespace + ".svc.cluster.local"
    	}
    	if len(p.IPAddresses) == 0 {
    		p.IPAddresses = []string{"1.1.1.1"}
    	}
    
    	// Initialize data structures
    	pc := f.PushContext()
    	p.SetSidecarScope(pc)
    	p.SetServiceTargets(f.env.ServiceDiscovery)
    	p.SetGatewaysForProxy(pc)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    	var ret []pkix.Extension
    
    	if (len(template.DNSNames) > 0 || len(template.EmailAddresses) > 0 || len(template.IPAddresses) > 0 || len(template.URIs) > 0) &&
    		!oidInExtensions(oidExtensionSubjectAltName, template.ExtraExtensions) {
    		sanBytes, err := marshalSANs(template.DNSNames, template.EmailAddresses, template.IPAddresses, template.URIs)
    		if err != nil {
    			return nil, err
    		}
    
    		ret = append(ret, pkix.Extension{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/default_storage_factory_builder.go

    		// graduated to GA:
    		//
    		// TODO (https://github.com/kubernetes/kubernetes/issues/108451): remove the override in 1.25.
    		// apisstorage.Resource("csistoragecapacities").WithVersion("v1beta1"),
    		networking.Resource("ipaddresses").WithVersion("v1alpha1"),
    		networking.Resource("servicecidrs").WithVersion("v1alpha1"),
    		certificates.Resource("clustertrustbundles").WithVersion("v1alpha1"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent.go

    // Shared properties with Pilot Proxy struct.
    type Proxy struct {
    	ID          string
    	IPAddresses []string
    	Type        model.NodeType
    	ipMode      model.IPMode
    	DNSDomain   string
    }
    
    func (node *Proxy) DiscoverIPMode() {
    	node.ipMode = model.DiscoverIPMode(node.IPAddresses)
    }
    
    // IsIPv6 returns true if proxy only supports IPv6 addresses.
    func (node *Proxy) IsIPv6() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  5. src/crypto/x509/parser.go

    					return fmt.Errorf("x509: cannot parse URI %q: invalid domain", uriStr)
    				}
    			}
    			uris = append(uris, uri)
    		case nameTypeIP:
    			switch len(data) {
    			case net.IPv4len, net.IPv6len:
    				ipAddresses = append(ipAddresses, data)
    			default:
    				return errors.New("x509: cannot parse IP address of length " + strconv.Itoa(len(data)))
    			}
    		}
    
    		return nil
    	})
    
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/networking/v1alpha1/types_swagger_doc_generated.go

    	"metadata": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata",
    	"items":    "items is the list of IPAddresses.",
    }
    
    func (IPAddressList) SwaggerDoc() map[string]string {
    	return map_IPAddressList
    }
    
    var map_IPAddressSpec = map[string]string{
    	"":          "IPAddressSpec describe the attributes in an IP Address.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/networking/v1alpha1/generated.proto

      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // items is the list of IPAddresses.
      repeated IPAddress items = 2;
    }
    
    // IPAddressSpec describe the attributes in an IP Address.
    message IPAddressSpec {
      // ParentRef references the resource that an IPAddress is attached to.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. pilot/pkg/autoregistration/controller.go

    		return ""
    	}
    	if len(proxy.IPAddresses) == 0 {
    		log.Errorf("auto-registration of %v failed: missing IP addresses", proxy.ID)
    		return ""
    	}
    	if len(proxy.Metadata.Namespace) == 0 {
    		log.Errorf("auto-registration of %v failed: missing namespace", proxy.ID)
    		return ""
    	}
    	p := []string{proxy.Metadata.AutoRegisterGroup, sanitizeIP(proxy.IPAddresses[0])}
    	if proxy.Metadata.Network != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. src/crypto/x509/name_constraints_test.go

    				return nil, fmt.Errorf("cannot parse IP %q", name[3:])
    			}
    			template.IPAddresses = append(template.IPAddresses, ip)
    
    		case strings.HasPrefix(name, "invalidip:"):
    			ipBytes, err := hex.DecodeString(name[10:])
    			if err != nil {
    				return nil, fmt.Errorf("cannot parse invalid IP: %s", err)
    			}
    			template.IPAddresses = append(template.IPAddresses, net.IP(ipBytes))
    
    		case strings.HasPrefix(name, "email:"):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  10. src/crypto/x509/verify.go

    	}
    
    	var valid string
    	if ip := net.ParseIP(h.Host); ip != nil {
    		// Trying to validate an IP
    		if len(c.IPAddresses) == 0 {
    			return "x509: cannot validate certificate for " + h.Host + " because it doesn't contain any IP SANs"
    		}
    		for _, san := range c.IPAddresses {
    			if len(valid) > 0 {
    				valid += ", "
    			}
    			valid += san.String()
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top