Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,299 for endpoints2 (0.31 sec)

  1. pkg/registry/core/endpoint/storage/storage_test.go

    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store)
    	endpoints := validNewEndpoints()
    	endpoints.ObjectMeta = metav1.ObjectMeta{}
    	test.TestCreate(
    		// valid
    		endpoints,
    		// invalid
    		&api.Endpoints{
    			ObjectMeta: metav1.ObjectMeta{Name: "_-a123-a_"},
    		},
    	)
    }
    
    func TestUpdate(t *testing.T) {
    	storage, server := newStorage(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 3.8K bytes
    - Viewed (0)
  2. pkg/apis/core/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.7K bytes
    - Viewed (0)
  3. pkg/controlplane/reconcilers/instancecount_test.go

    	}{
    		{
    			testName:      "no existing endpoints",
    			serviceName:   "foo",
    			ip:            "1.2.3.4",
    			endpointPorts: []corev1.EndpointPort{{Name: "foo", Port: 8080, Protocol: "TCP"}},
    			initialState:  nil,
    			expectCreate:  makeEndpointsArray("foo", []string{"1.2.3.4"}, []corev1.EndpointPort{{Name: "foo", Port: 8080, Protocol: "TCP"}}),
    		},
    		{
    			testName:      "existing endpoints satisfy",
    			serviceName:   "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:24 UTC 2022
    - 14K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/endpointslicecontroller.go

    	fs.Int32Var(&o.ConcurrentServiceEndpointSyncs, "concurrent-service-endpoint-syncs", o.ConcurrentServiceEndpointSyncs, "The number of service endpoint syncing operations that will be done concurrently. Larger number = faster endpoint slice updating, but more CPU (and network) load. Defaults to 5.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 03 07:16:42 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  5. 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)
  6. pkg/registry/discovery/endpointslice/strategy.go

    	dropHints := !utilfeature.DefaultFeatureGate.Enabled(features.TopologyAwareHints)
    	if dropHints {
    		for _, ep := range oldEPS.Endpoints {
    			if ep.Hints != nil {
    				dropHints = false
    				break
    			}
    		}
    	}
    
    	if dropHints {
    		for i := range newEPS.Endpoints {
    			if dropHints {
    				newEPS.Endpoints[i].Hints = nil
    			}
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 02 10:00:01 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. cmd/etcd.go

    var errEtcdUnreachable = errors.New("etcd is unreachable, please check your endpoints")
    
    func etcdErrToErr(err error, etcdEndpoints []string) error {
    	if err == nil {
    		return nil
    	}
    	switch err {
    	case context.DeadlineExceeded:
    		return fmt.Errorf("%w %s", errEtcdUnreachable, etcdEndpoints)
    	default:
    		return fmt.Errorf("unexpected error %w from etcd, please check your endpoints %s", err, etcdEndpoints)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/StandardMutableGraph.java

        return backingValueGraph.putEdgeValue(nodeU, nodeV, Presence.EDGE_EXISTS) == null;
      }
    
      @Override
      public boolean putEdge(EndpointPair<N> endpoints) {
        validateEndpoints(endpoints);
        return putEdge(endpoints.nodeU(), endpoints.nodeV());
      }
    
      @Override
      public boolean removeNode(N node) {
        return backingValueGraph.removeNode(node);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  9. pilot/pkg/xds/testdata/none_cds.json

          "connect_timeout": 1000000000,
          "load_assignment": {
            "cluster_name": "inbound|7070|tcplocal|s1tcp.none",
            "endpoints": [
              {
                "lb_endpoints": [
                  {
                    "endpoint": {
                      "address": {
                        "Address": {
                          "SocketAddress": {
                            "address": "127.0.0.1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 26 15:28:15 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  10. cmd/prepare-storage.go

    )
    
    var printEndpointError = func() func(Endpoint, error, bool) {
    	var mutex sync.Mutex
    	printOnce := make(map[Endpoint]map[string]int)
    
    	return func(endpoint Endpoint, err error, once bool) {
    		reqInfo := (&logger.ReqInfo{}).AppendTags("endpoint", endpoint.String())
    		ctx := logger.SetReqInfo(GlobalContext, reqInfo)
    		mutex.Lock()
    		defer mutex.Unlock()
    
    		m, ok := printOnce[endpoint]
    		if !ok {
    			m = make(map[string]int)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun May 19 08:06:49 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top