Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 110 for ep (0.05 sec)

  1. pilot/pkg/model/service.go

    		ep.Locality == other.Locality &&
    		ep.EndpointPort == other.EndpointPort &&
    		ep.LbWeight == other.LbWeight &&
    		ep.TLSMode == other.TLSMode &&
    		ep.Namespace == other.Namespace &&
    		ep.WorkloadName == other.WorkloadName &&
    		ep.HostName == other.HostName &&
    		ep.SubDomain == other.SubDomain &&
    		ep.HealthStatus == other.HealthStatus &&
    		ep.NodeName == other.NodeName
    	if !eq {
    		return false
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/feature/feature_support_checker.go

    	f.lock.Lock()
    	defer f.lock.Unlock()
    	for _, ep := range c.Endpoints() {
    		if _, found := f.checkingEndpoint[ep]; found {
    			continue
    		}
    		f.checkingEndpoint[ep] = struct{}{}
    		go func(ep string) {
    			defer runtime.HandleCrash()
    			err := delayFunc.Until(ctx, true, true, func(ctx context.Context) (done bool, err error) {
    				internalErr := f.clientSupportsRequestWatchProgress(ctx, c, ep)
    				return internalErr == nil, nil
    			})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    				// index -> original weight
    				destLocMap := map[int]uint32{}
    				totalWeight := uint32(0)
    				for i, ep := range loadAssignment.Endpoints {
    					if misMatched.Contains(i) {
    						if util.LocalityMatch(ep.Locality, locality) {
    							delete(misMatched, i)
    							if ep.LoadBalancingWeight != nil {
    								destLocMap[i] = ep.LoadBalancingWeight.Value
    							} else {
    								destLocMap[i] = 1
    							}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. cmd/bucket-targets.go

    		h.Online = false
    		sys.hc[ep.Host] = h
    	}
    }
    
    func (sys *BucketTargetSys) initHC(ep *url.URL) {
    	sys.hMutex.Lock()
    	sys.hc[ep.Host] = epHealth{
    		Endpoint: ep.Host,
    		Scheme:   ep.Scheme,
    		Online:   true,
    	}
    	sys.hMutex.Unlock()
    }
    
    // newHCClient initializes an anonymous client for performing health check on the remote endpoints
    func newHCClient() *madmin.AnonymousClient {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:09:56 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. src/runtime/chan.go

    // ep may be nil, in which case received data is ignored.
    // If block == false and no elements are available, returns (false, false).
    // Otherwise, if c is closed, zeros *ep and returns (true, false).
    // Otherwise, fills in *ep with an element and returns (true, true).
    // A non-nil ep must point to the heap or the caller's stack.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  6. cmd/erasure.go

    	offlineDisks = make(madmin.BackendDisks)
    
    	for _, disk := range disksInfo {
    		ep := disk.Endpoint
    		if _, ok := offlineDisks[ep]; !ok {
    			offlineDisks[ep] = 0
    		}
    		if _, ok := onlineDisks[ep]; !ok {
    			onlineDisks[ep] = 0
    		}
    	}
    
    	// Wait for the routines.
    	for _, disk := range disksInfo {
    		ep := disk.Endpoint
    		state := disk.State
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. pkg/proxy/winkernel/proxier_test.go

    	destinationPrefix = "192.168.2.0/24"
    	providerAddress   = "10.0.0.3"
    	guid              = "123ABC"
    	endpointGuid1     = "EPID-1"
    	loadbalancerGuid1 = "LBID-1"
    	endpointLocal     = "EP-LOCAL"
    	endpointGw        = "EP-GW"
    	epIpAddressGw     = "192.168.2.1"
    	epMacAddressGw    = "00-11-22-33-44-66"
    )
    
    func newHnsNetwork(networkInfo *hnsNetworkInfo) *hcn.HostComputeNetwork {
    	var policies []hcn.NetworkPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. pilot/pkg/xds/endpoints/ep_filters_test.go

    		for i, ep := range shard {
    			ep.ServicePortName = "http"
    			ep.Namespace = "ns"
    			ep.HostName = "example.ns.svc.cluster.local"
    			ep.EndpointPort = 8080
    			ep.TLSMode = "istio"
    			if ep.Labels == nil {
    				ep.Labels = make(map[string]string)
    			}
    			ep.Labels["app"] = "example"
    			ep.Locality.ClusterID = sk.Cluster
    			shards.Shards[sk][i] = ep
    		}
    	}
    	// convert to EndpointIndex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. cmd/utils.go

    	if cp == "." {
    		return ""
    	}
    	return cp
    }
    
    func trimLeadingSlash(ep string) string {
    	if len(ep) > 0 && ep[0] == '/' {
    		// Path ends with '/' preserve it
    		if ep[len(ep)-1] == '/' && len(ep) > 1 {
    			ep = path.Clean(ep)
    			ep += slashSeparator
    		} else {
    			ep = path.Clean(ep)
    		}
    		ep = ep[1:]
    	}
    	return ep
    }
    
    // unescapeGeneric is similar to url.PathUnescape or url.QueryUnescape
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/AdditionalKDocResolutionProvider.kt

    import org.jetbrains.kotlin.psi.KtElement
    
    /**
     * An extension point to provide additional symbols for a KDoc reference. KDoc link resolution will use symbols returned by this EP
     * only if the real resolution was unsuccessful. You can use this EP by creating a class implementing this interface.
     * For example, let's assume that you want to return symbol `fun foo() = 3` for the following KDoc resolution:
     *
     * ```
     *   package com.example
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top