Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for robin (0.04 sec)

  1. src/net/dnsconfig.go

    	timeout       time.Duration // wait before giving up on a query, including retries
    	attempts      int           // lost packets before giving up on server
    	rotate        bool          // round robin among servers
    	unknownOpt    bool          // anything unknown was encountered
    	lookup        []string      // OpenBSD top-level database "lookup" order
    	err           error         // any error that occurs during open of resolv.conf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/store_test.go

    		makeInstance(dnsRoundRobinLBSE1, "1.1.1.1", 445, dnsRoundRobinLBSE1.Spec.(*networking.ServiceEntry).Ports[1], nil, PlainText),
    	}
    	cKey := configKey{
    		namespace: "dns",
    		name:      "dns-round-robin-1",
    	}
    	cpKey := configKeyWithParent{configKey: cKey, parent: config.NamespacedName(selector)}
    	// Add instance related to first Service Entry and validate they are added correctly.
    	store.addInstances(cpKey, instances)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    	},
    }
    
    // Service Entry with DNSRoundRobinLB
    var dnsRoundRobinLBSE1 = &config.Config{
    	Meta: config.Meta{
    		GroupVersionKind:  gvk.ServiceEntry,
    		Name:              "dns-round-robin-1",
    		Namespace:         "dns",
    		CreationTimestamp: GlobalTime,
    		Labels:            map[string]string{label.SecurityTlsMode.Name: model.IstioMutualTLSModeLabel},
    	},
    	Spec: &networking.ServiceEntry{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/apiclient/idempotency_test.go

    		},
    		{
    			name:       "node does not exist",
    			lookupName: "whale",
    			success:    false,
    		},
    		{
    			name:       "node not labelled yet",
    			lookupName: "robin",
    			node: v1.Node{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "robin",
    				},
    			},
    			success: false,
    		},
    		{
    			name:       "patch node when timeout",
    			lookupName: "testnode",
    			node: v1.Node{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. docs/sts/web-identity.md

    `MINIO_BROWSER_REDIRECT_URL=https://console.minio.example.org`. This will ensure that the redirect URL is set to `https://console.minio.example.org/oauth_callback` and the login process should work correctly.
    
    For deployments employing DNS round-robin on a single domain to all the MinIO servers, it is possible that after redirection the browser may land on a different MinIO server. For example, the domain `console.minio.example.org` may resolve to `console-X.minio.example.org`, where `X` is `1`,...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. pkg/dns/client/dns_test.go

    					netip.MustParseAddr("14.14.14.14"),
    					netip.MustParseAddr("12.12.12.12"),
    					netip.MustParseAddr("11.11.11.11"),
    				}),
    		},
    		{
    			name: "success: remote cluster k8s svc round robin",
    			host: "details.ns2.svc.cluster.remote.",
    			id:   1,
    			expected: a("details.ns2.svc.cluster.remote.",
    				[]netip.Addr{
    					netip.MustParseAddr("13.13.13.13"),
    					netip.MustParseAddr("14.14.14.14"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. pkg/dns/client/dns.go

    		// Randomize the responses; this ensures for things like headless services we can do DNS-LB
    		// This matches standard kube-dns behavior. We only do this for cached responses as the
    		// upstream DNS server would already round robin if desired.
    		if len(answers) > 0 {
    			roundRobinResponse(response)
    		}
    		log.Debugf("response for hostname %q (found=true): %v", hostname, response)
    	} else {
    		response = h.upstream(proxy, req, hostname)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    					{Address: "in.google.com", Ports: map[string]uint32{"http-valid2": 9080}},
    				},
    				Resolution: networking.ServiceEntry_DNS,
    			},
    			valid: true,
    		},
    		{
    			name: "discovery type DNS Round Robin", in: &networking.ServiceEntry{
    				Hosts: []string{"*.istio.io"},
    				Ports: []*networking.ServicePort{
    					{Number: 80, Protocol: "http", Name: "http-valid1"},
    					{Number: 8080, Protocol: "http", Name: "http-valid2"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. cmd/kube-proxy/app/server.go

    		Use: "kube-proxy",
    		Long: `The Kubernetes network proxy runs on each node. This
    reflects services as defined in the Kubernetes API on each node and can do simple
    TCP, UDP, and SCTP stream forwarding or round robin TCP, UDP, and SCTP forwarding across a set of backends.
    Service cluster IPs and ports are currently found through Docker-links-compatible
    environment variables specifying ports opened by the service proxy. There is an optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/plive.go

    	newlivein := bitvec.New(nvars)
    	newliveout := bitvec.New(nvars)
    
    	// Walk blocks in postorder ordering. This improves convergence.
    	po := lv.f.Postorder()
    
    	// Iterate through the blocks in reverse round-robin fashion. A work
    	// queue might be slightly faster. As is, the number of iterations is
    	// so low that it hardly seems to be worth the complexity.
    
    	for change := true; change; {
    		change = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top