Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,299 for endpoints2 (0.28 sec)

  1. guava/src/com/google/common/graph/StandardValueGraph.java

      }
    
      @Override
      public boolean hasEdgeConnecting(EndpointPair<N> endpoints) {
        checkNotNull(endpoints);
        return isOrderingCompatible(endpoints)
            && hasEdgeConnectingInternal(endpoints.nodeU(), endpoints.nodeV());
      }
    
      @Override
      @CheckForNull
      public V edgeValueOrDefault(N nodeU, N nodeV, @CheckForNull V defaultValue) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    						}
    					}
    				}
    			}
    
    			// remove groups of endpoints in a locality that miss matched
    			for i := range misMatched {
    				if loadAssignment.Endpoints[i] != nil {
    					loadAssignment.Endpoints[i].LbEndpoints = nil
    				}
    			}
    			break
    		}
    	}
    }
    
    // set locality loadbalancing priority - This is based on Region/Zone/SubZone matching.
    func applyLocalityFailover(
    	locality *core.Locality,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. pkg/registry/core/endpoint/storage/storage.go

    		NewListFunc:               func() runtime.Object { return &api.EndpointsList{} },
    		DefaultQualifiedResource:  api.Resource("endpoints"),
    		SingularQualifiedResource: api.Resource("endpoints"),
    
    		CreateStrategy: endpoint.Strategy,
    		UpdateStrategy: endpoint.Strategy,
    		DeleteStrategy: endpoint.Strategy,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. docs/metrics/README.md

    # MinIO Monitoring Guide
    
    MinIO server exposes monitoring data over endpoints. Monitoring tools can pick the data from these endpoints. This document lists the monitoring endpoints and relevant documentation.
    
    ## Healthcheck Probe
    
    MinIO server has two healthcheck related un-authenticated endpoints, a liveness probe to indicate if server is responding, cluster probe to check if server can be taken down for maintenance.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 29 18:35:20 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. pkg/api/endpoints/testing/make.go

    )
    
    // Tweak is a function that modifies a Endpoints.
    type Tweak func(*api.Endpoints)
    
    // MakeEndpoints helps construct Endpoints objects (which pass API validation)
    // more legibly and tersely than a Go struct definition.
    func MakeEndpoints(name string, addrs []api.EndpointAddress, ports []api.EndpointPort, tweaks ...Tweak) *api.Endpoints {
    	// NOTE: Any field that would be populated by defaulting needs to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 01:26:45 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/graph/StandardValueGraph.java

      }
    
      @Override
      public boolean hasEdgeConnecting(EndpointPair<N> endpoints) {
        checkNotNull(endpoints);
        return isOrderingCompatible(endpoints)
            && hasEdgeConnectingInternal(endpoints.nodeU(), endpoints.nodeV());
      }
    
      @Override
      @CheckForNull
      public V edgeValueOrDefault(N nodeU, N nodeV, @CheckForNull V defaultValue) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/queue/MultiChannelQueueTest.groovy

            given:
            def endpoint1 = queue.getChannel(id1).newEndpoint()
            def endpoint2 = queue.getChannel(id2).newEndpoint()
    
            when:
            def messages1 = []
            def messages2 = []
            queue.queue(message1)
            queue.queue(message2)
            queue.queue(message3)
            endpoint1.take(messages1)
            endpoint2.take(messages2)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. operator/pkg/name/name.go

    	ClusterRoleBindingStr             = "ClusterRoleBinding"
    	CMStr                             = "ConfigMap"
    	DaemonSetStr                      = "DaemonSet"
    	DeploymentStr                     = "Deployment"
    	EndpointStr                       = "Endpoints"
    	HPAStr                            = "HorizontalPodAutoscaler"
    	IstioOperator                     = "IstioOperator"
    	MutatingWebhookConfigurationStr   = "MutatingWebhookConfiguration"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. tests/testdata/networking/sidecar-ns-scope/configs.yaml

    spec:
      hosts:
      - http1.ns1.svc.cluster.local
      addresses:
      - 2.1.1.1
      ports:
      - number: 8080
        name: http
        protocol: HTTP2
      location: MESH_INTERNAL
      resolution: STATIC
      endpoints:
      - address: 100.1.1.1
        labels:
          version: v1
        ports:
          http: 8080
      - address: 100.1.2.1
        labels:
          version: v2
        ports:
          http: 8080
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 04 17:16:38 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/discovery/v1/types_swagger_doc_generated.go

    	"endpoints":   "endpoints is a list of unique endpoints in this slice. Each slice may include a maximum of 1000 endpoints.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 15:36:48 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top