Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 83 for ipAddresses (0.29 sec)

  1. cmd/test-utils_test.go

    		BasicConstraintsValid: true,
    	}
    
    	hosts := strings.Split(host, ",")
    	for _, h := range hosts {
    		if ip := net.ParseIP(h); ip != nil {
    			template.IPAddresses = append(template.IPAddresses, ip)
    		} else {
    			template.DNSNames = append(template.DNSNames, h)
    		}
    	}
    
    	template.IsCA = true
    	template.KeyUsage |= x509.KeyUsageCertSign
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceregistry_test.go

    			}
    			if tt.obj.Name != "" {
    				opts.Configs = append(opts.Configs, tt.obj)
    			}
    			s := xds.NewFakeDiscoveryServer(t, opts)
    			s.Connect(s.SetupProxy(&model.Proxy{IPAddresses: []string{"1.2.3.4"}}), nil, []string{v3.ClusterType})
    			retry.UntilSuccessOrFail(t, func() error {
    				clients := s.Discovery.AllClients()
    				if len(clients) != 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    							// as when app access itself by pod ip will not flow through this listener.
    							// Simultaneously, it will be duplicate with inbound listener.
    							if instance.Address == node.IPAddresses[0] {
    								continue
    							}
    							listenerOpts.bind.binds = []string{instance.Address}
    							lb.buildSidecarOutboundListener(listenerOpts, listenerMap, virtualServices, actualWildcards)
    						}
    					} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CallTest.kt

      }
    
      @Test
      fun dnsReturnsZeroIpAddresses() {
        // Configure a DNS that returns our local MockWebServer for android.com.
        val dns = FakeDns()
        val ipAddresses = mutableListOf<InetAddress>()
        dns["android.com"] = ipAddresses
        client =
          client.newBuilder()
            .dns(dns)
            .build()
        server.enqueue(MockResponse())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route_test.go

    					Port:     8080,
    					Protocol: protocol.HTTP,
    				},
    			},
    		},
    	}
    
    	node := func(cg *core.ConfigGenTest) *model.Proxy {
    		return cg.SetupProxy(&model.Proxy{
    			Type:        model.SidecarProxy,
    			IPAddresses: []string{"1.1.1.1"},
    			ID:          "someID",
    			DNSDomain:   "foo.com",
    			IstioVersion: &model.IstioVersion{
    				Major: 1,
    				Minor: 20,
    			},
    		})
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	t.Helper()
    	// The system is eventually consistent, so add some retries
    	retry.UntilSuccessOrFail(t, func() error {
    		instances := sd.GetProxyServiceTargets(&model.Proxy{IPAddresses: []string{ip}, Metadata: &model.NodeMetadata{}})
    		sortServiceTargets(instances)
    		sortServiceTargets(expected)
    		if err := compare(t, instances, expected); err != nil {
    			return err
    		}
    		return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    			for _, v := range c.DNSNames {
    				check ^= xxh3.HashString(v)
    			}
    			for _, v := range c.EmailAddresses {
    				check ^= xxh3.HashString(v)
    			}
    			for _, v := range c.IPAddresses {
    				check ^= xxh3.HashString(v.String())
    			}
    			for _, v := range c.URIs {
    				check ^= xxh3.HashString(v.String())
    			}
    			tlsInfo.Certs = append(tlsInfo.Certs, madmin.TLSCert{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_builder_test.go

    			ips:          []string{"::1"},
    			ipv4Expected: false,
    			ipv6Expected: true,
    		},
    	}
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			proxy := &model.Proxy{IPAddresses: tt.ips}
    			cg := NewConfigGenTest(t, TestOptions{})
    
    			cb := NewClusterBuilder(cg.SetupProxy(proxy), &model.PushRequest{Push: cg.PushContext()}, nil)
    			passthrough := cb.buildInboundPassthroughCluster()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Certificate.ExcludedURIDomains", Field, 10},
    		{"Certificate.ExtKeyUsage", Field, 0},
    		{"Certificate.Extensions", Field, 2},
    		{"Certificate.ExtraExtensions", Field, 2},
    		{"Certificate.IPAddresses", Field, 1},
    		{"Certificate.IsCA", Field, 0},
    		{"Certificate.Issuer", Field, 0},
    		{"Certificate.IssuingCertificateURL", Field, 2},
    		{"Certificate.KeyUsage", Field, 0},
    		{"Certificate.MaxPathLen", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	var endpoints []*v1alpha3.WorkloadEntry
    	var workloadSelector *v1alpha3.WorkloadSelector
    
    	if epAddresses == nil {
    		workloadSelector = &v1alpha3.WorkloadSelector{
    			Labels: labels,
    		}
    	} else {
    		endpoints = []*v1alpha3.WorkloadEntry{}
    		for _, addr := range epAddresses {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
Back to top