Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 941 for ipaddresses (0.19 sec)

  1. pilot/pkg/autoregistration/connections.go

    	IP        string
    	GroupName string
    	Namespace string
    }
    
    func makeProxyKey(proxy *model.Proxy) proxyKey {
    	return proxyKey{
    		Network:   string(proxy.Metadata.Network),
    		IP:        proxy.IPAddresses[0],
    		GroupName: proxy.Metadata.AutoRegisterGroup,
    		Namespace: proxy.Metadata.Namespace,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    		t.Fatalf("Unexpected EmailAddresses: got %v, want %v", out.EmailAddresses, in.EmailAddresses)
    	}
    	if len(in.IPAddresses) != len(out.IPAddresses) ||
    		!in.IPAddresses[0].Equal(out.IPAddresses[0]) ||
    		!in.IPAddresses[1].Equal(out.IPAddresses[1]) {
    		t.Fatalf("Unexpected IPAddresses: got %v, want %v", out.IPAddresses, in.IPAddresses)
    	}
    	if !reflect.DeepEqual(in.URIs, out.URIs) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. tests/fuzz/autoregistration_controller_fuzzer.go

    	stopped  bool
    }
    
    func makeConn(proxy *model.Proxy, connTime time.Time) *fakeConn {
    	return &fakeConn{proxy: proxy, connTime: connTime}
    }
    
    func (f *fakeConn) ID() string {
    	return fmt.Sprintf("%s-%v", f.proxy.IPAddresses[0], f.connTime)
    }
    
    func (f *fakeConn) Proxy() *model.Proxy {
    	return f.proxy
    }
    
    func (f *fakeConn) ConnectedAt() time.Time {
    	return f.connTime
    }
    
    func (f *fakeConn) Stop() {
    	f.stopped = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1alpha1/types_swagger_doc_generated.go

    	"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.",
    	"parentRef": "ParentRef references the resource that an IPAddress is attached to. An IPAddress must reference a parent object.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:58 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1alpha1/generated.proto

    }
    
    // IPAddressList contains a list of IPAddress.
    message IPAddressList {
      // Standard object's metadata.
      // 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;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. pkg/registry/core/service/ipallocator/ipallocator_test.go

    	ipInformer := informerFactory.Networking().V1alpha1().IPAddresses()
    	ipStore := ipInformer.Informer().GetIndexer()
    
    	client.PrependReactor("create", "ipaddresses", k8stesting.ReactionFunc(func(action k8stesting.Action) (bool, runtime.Object, error) {
    		ip := action.(k8stesting.CreateAction).GetObject().(*networkingv1alpha1.IPAddress)
    		_, exists, err := ipStore.GetByKey(ip.Name)
    		if exists && err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 25 13:14:46 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  7. pkg/registry/core/rest/storage_core.go

    			c.Services.IPRepairInterval,
    			client,
    			c.Informers.Core().V1().Services(),
    			c.Informers.Networking().V1alpha1().ServiceCIDRs(),
    			c.Informers.Networking().V1alpha1().IPAddresses(),
    		).RunUntil
    	}
    
    	return p, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/istio-agent/agent.go

    				if _, exists := nt.Table[host]; !exists {
    					addresses := make([]string, 0, len(ipv4)+len(ipv6))
    					for _, addr := range ipv4 {
    						addresses = append(addresses, addr.String())
    					}
    					for _, addr := range ipv6 {
    						addresses = append(addresses, addr.String())
    					}
    					nt.Table[host] = &dnsProto.NameTable_NameInfo{
    						Ips:      addresses,
    						Registry: "Kubernetes",
    					}
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
Back to top