Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,299 for endpoints2 (0.63 sec)

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

        }
        return previousValue;
      }
    
      @Override
      @CanIgnoreReturnValue
      @CheckForNull
      public V putEdgeValue(EndpointPair<N> endpoints, V value) {
        validateEndpoints(endpoints);
        return putEdgeValue(endpoints.nodeU(), endpoints.nodeV(), value);
      }
    
      @Override
      @CanIgnoreReturnValue
      public boolean removeNode(N node) {
        checkNotNull(node, "node");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Oct 21 01:50:30 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/endpointslicemirroringcontroller.go

    	fs.Int32Var(&o.MirroringMaxEndpointsPerSubset, "mirroring-max-endpoints-per-subset", o.MirroringMaxEndpointsPerSubset, fmt.Sprintf("The...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 13:01:01 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier_test.go

    		add chain ip kube-proxy reject-chain { comment "helper for @no-endpoint-services / @no-endpoint-nodeports" ; }
    		add rule ip kube-proxy reject-chain reject
    
    		add map ip kube-proxy no-endpoint-services { type ipv4_addr . inet_proto . inet_service : verdict ; comment "vmap to drop or reject packets to services with no endpoints" ; }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/serviceexportcache.go

    		// Re-build the endpoints for this service with a new discoverability policy.
    		// Also update any internal caching.
    		endpoints := ec.buildEndpointsForService(svc, true)
    		shard := model.ShardKeyFromRegistry(ec)
    		ec.opts.XDSUpdater.EDSUpdate(shard, svc.Hostname.String(), se.GetNamespace(), endpoints)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/MutableNetwork.java

       * also be non-null.
       *
       * <p>If either or both endpoints are not already present in this graph, this method will silently
       * {@link #addNode(Object) add} each missing endpoint to the graph.
       *
       * <p>If {@code edge} already connects an endpoint pair equal to {@code endpoints}, then this
       * method will have no effect.
       *
    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. guava/src/com/google/common/graph/ForwardingValueGraph.java

      @Override
      public boolean hasEdgeConnecting(EndpointPair<N> endpoints) {
        return delegate().hasEdgeConnecting(endpoints);
      }
    
      @Override
      public Optional<V> edgeValue(N nodeU, N nodeV) {
        return delegate().edgeValue(nodeU, nodeV);
      }
    
      @Override
      public Optional<V> edgeValue(EndpointPair<N> endpoints) {
        return delegate().edgeValue(endpoints);
      }
    
      @Override
      @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  7. releasenotes/notes/mcs-service-discovery.yaml

    releaseNotes:
      - |
        **Added** experimental support for controlling service endpoint discoverability with Kubernetes Multi-Cluster
        Services (MCS). This feature is off by default, but can be enabled by setting the
        `ENABLE_MCS_SERVICE_DISCOVERY` flag in Istio. When enabled, Istio will make service endpoints
        only discoverable from within the same cluster by default. To make the service endpoints within a cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 18 22:59:02 UTC 2021
    - 830 bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/graph/MutableNetwork.java

       * also be non-null.
       *
       * <p>If either or both endpoints are not already present in this graph, this method will silently
       * {@link #addNode(Object) add} each missing endpoint to the graph.
       *
       * <p>If {@code edge} already connects an endpoint pair equal to {@code endpoints}, then this
       * method will have no effect.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/graph/ForwardingNetwork.java

      @Override
      public Set<E> edgesConnecting(EndpointPair<N> endpoints) {
        return delegate().edgesConnecting(endpoints);
      }
    
      @Override
      @CheckForNull
      public E edgeConnectingOrNull(N nodeU, N nodeV) {
        return delegate().edgeConnectingOrNull(nodeU, nodeV);
      }
    
      @Override
      @CheckForNull
      public E edgeConnectingOrNull(EndpointPair<N> endpoints) {
        return delegate().edgeConnectingOrNull(endpoints);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact.go

    	// In one process, we can have only one compactor for one cluster.
    	// Currently we rely on endpoints to differentiate clusters.
    	for _, ep := range client.Endpoints() {
    		if _, ok := endpointsMap[ep]; ok {
    			klog.V(4).Infof("compactor already exists for endpoints %v", client.Endpoints())
    			return
    		}
    	}
    	for _, ep := range client.Endpoints() {
    		endpointsMap[ep] = struct{}{}
    	}
    
    	if compactInterval != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 17 02:54:36 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top