Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 94 for robin (0.09 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    		return false
    	case qs.totSeatsInUse+seats > qs.dCfg.ConcurrencyLimit:
    		return false
    	}
    
    	return true
    }
    
    // findDispatchQueueToBoundLocked examines the queues in round robin order and
    // returns the first one of those for which the virtual finish time of
    // the oldest waiting request is minimal, and also returns that request.
    // Returns nils if the head of the selected queue can not be dispatched now,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    				dCfg: fq.DispatchingConfig{
    					ConcurrencyLimit: test.concurrencyLimit,
    				},
    				queues: test.queues,
    			}
    
    			t.Logf("QS: robin index=%d, seats in use=%d limit=%d", qs.robinIndex, qs.totSeatsInUse, qs.dCfg.ConcurrencyLimit)
    
    			for i := 0; i < test.attempts; i++ {
    				attempt := i + 1
    				if test.beforeSelectQueueLocked != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.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