Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,299 for endpoints2 (0.39 sec)

  1. internal/config/etcd/etcd_test.go

    		t.Run(testCase.s, func(t *testing.T) {
    			endpoints, secure, err := parseEndpoints(testCase.s)
    			if err != nil && testCase.success {
    				t.Errorf("expected to succeed but failed with %s", err)
    			}
    			if !testCase.success && err == nil {
    				t.Error("expected failure but succeeded instead")
    			}
    			if testCase.success {
    				if !reflect.DeepEqual(endpoints, testCase.endpoints) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    				if len(cluster.LoadAssignment.Endpoints) != len(tt.expected) {
    					t.Fatalf("expected endpoints %d but got %d", len(cluster.LoadAssignment.Endpoints), len(tt.expected))
    				}
    				for i := range cluster.LoadAssignment.Endpoints {
    					// TODO Below assertions are not robust to ordering changes in cluster.LoadAssignment.Endpoints[i]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  3. cmd/endpoint_test.go

    		{SlashSeparator, Endpoint{}, -1, fmt.Errorf("empty or root endpoint is not supported")},
    		{`\`, Endpoint{}, -1, fmt.Errorf("empty or root endpoint is not supported")},
    		{"c://foo", Endpoint{}, -1, fmt.Errorf("invalid URL endpoint format")},
    		{"ftp://foo", Endpoint{}, -1, fmt.Errorf("invalid URL endpoint format")},
    		{"http://server/path?location", Endpoint{}, -1, fmt.Errorf("invalid URL endpoint format")},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jan 13 07:53:03 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/MutableGraph.java

      /**
       * Adds an edge connecting {@code endpoints} (in the order, if any, specified by {@code
       * endpoints}) if one is not already present.
       *
       * <p>If this graph is directed, {@code endpoints} must be ordered and the added edge will be
       * directed; if it is undirected, the added edge will be undirected.
       *
       * <p>If this graph is directed, {@code endpoints} must be ordered.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  5. pilot/pkg/leaderelection/k8sleaderelection/k8sresourcelock/endpointslock.go

    type EndpointsLock struct {
    	// EndpointsMeta should contain a Name and a Namespace of an
    	// Endpoints object that the LeaderElector will attempt to lead.
    	EndpointsMeta metav1.ObjectMeta
    	Client        corev1client.EndpointsGetter
    	LockConfig    ResourceLockConfig
    	e             *v1.Endpoints
    }
    
    // Get returns the election record from a Endpoints Annotation
    func (el *EndpointsLock) Get(ctx context.Context) (*LeaderElectionRecord, []byte, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/annotation_key_constants.go

    	//
    	// The "endpoints change trigger" here means any Pod or Service change that resulted in the
    	// Endpoints object change.
    	//
    	// Given the definition of the "endpoints change trigger", please note that this annotation will
    	// be set ONLY for endpoints object changes triggered by either Pod or Service change. If the
    	// Endpoints object changes due to other reasons, this annotation won't be set (or updated if it's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 18:46:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/MutableValueGraph.java

      /**
       * Removes the edge connecting {@code endpoints}, if it is present.
       *
       * <p>If this graph is directed, {@code endpoints} must be ordered.
       *
       * @return the value previously associated with the edge connecting {@code endpoints}, or null if
       *     there was no such edge.
       * @since 27.1
       */
      @CanIgnoreReturnValue
      @CheckForNull
      V removeEdge(EndpointPair<N> endpoints);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/discovery/v1beta1/generated.proto

      // * FQDN: Represents a Fully Qualified Domain Name.
      optional string addressType = 4;
    
      // endpoints is a list of unique endpoints in this slice. Each slice may
      // include a maximum of 1000 endpoints.
      // +listType=atomic
      repeated Endpoint endpoints = 2;
    
      // ports specifies the list of network ports exposed by each endpoint in
      // this slice. Each port must have a unique name. When ports is empty, it
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. pkg/apis/discovery/types.go

    	// * FQDN: Represents a Fully Qualified Domain Name. [DEPRECATED]
    	AddressType AddressType
    	// endpoints is a list of unique endpoints in this slice. Each slice may
    	// include a maximum of 1000 endpoints.
    	// +listType=atomic
    	Endpoints []Endpoint
    	// ports specifies the list of network ports exposed by each endpoint in
    	// this slice. Each port must have a unique name. When ports is empty, it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 21:38:06 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  10. pkg/proxy/healthcheck/service_health.go

    	proxyutil "k8s.io/kubernetes/pkg/proxy/util"
    )
    
    // ServiceHealthServer serves HTTP endpoints for each service name, with results
    // based on the endpoints.  If there are 0 endpoints for a service, it returns a
    // 503 "Service Unavailable" error (telling LBs not to use this node).  If there
    // are 1 or more endpoints, it returns a 200 "OK".
    type ServiceHealthServer interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 30 09:25:48 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top