Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 75 for ep (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/runtime/signal_windows.go

    	// TestG0StackOverflow. Any other occurrence should
    	// be treated as a bug.
    	var ret int32
    	if gp != gp.m.g0 {
    		systemstack(func() {
    			ret = fn(ep.record, ep.context, gp)
    		})
    	} else {
    		ret = fn(ep.record, ep.context, gp)
    	}
    	if ret == _EXCEPTION_CONTINUE_SEARCH {
    		return ret
    	}
    
    	// Check if we need to set up the control flow guard workaround.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. cmd/admin-handlers-pools.go

    	// first node. The following is required to serialize (the effects of)
    	// concurrent rebalance-start commands.
    	if ep := globalEndpoints[0].Endpoints[0]; !ep.IsLocal {
    		for nodeIdx, proxyEp := range globalProxyEndpoints {
    			if proxyEp.Endpoint.Host == ep.Host {
    				if proxyRequestByNodeIndex(ctx, w, r, nodeIdx) {
    					return
    				}
    			}
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java

      public static void testSubtypeOfStaticAnonymousClass() {
        Class<?> superclass = new Mall<Outdoor>().new Shop<Electronics>() {}.getClass();
        assertTrue(TypeToken.of(superclass).isSubtypeOf(superclass));
        assertFalse(
            TypeToken.of(new Mall<Outdoor>().new Shop<Electronics>() {}.getClass())
                .isSubtypeOf(superclass));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java

      public static void testSubtypeOfStaticAnonymousClass() {
        Class<?> superclass = new Mall<Outdoor>().new Shop<Electronics>() {}.getClass();
        assertTrue(TypeToken.of(superclass).isSubtypeOf(superclass));
        assertFalse(
            TypeToken.of(new Mall<Outdoor>().new Shop<Electronics>() {}.getClass())
                .isSubtypeOf(superclass));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/network.go

    		// track endpoints items from this registry are a part of this network
    		fromRegistry := false
    		for _, ep := range v.Endpoints {
    			if ep.GetFromCidr() != "" {
    				_, nw, err := net.ParseCIDR(ep.GetFromCidr())
    				if err != nil {
    					log.Warnf("unable to parse CIDR %q for network %s", ep.GetFromCidr(), id)
    					continue
    				}
    				rangerEntry := namedRangerEntry{
    					name:    network.ID(id),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. pilot/pkg/xds/eds_test.go

    	region, zone, subzone := items[0], items[1], items[2]
    	for _, ep := range eps {
    		if ep.GetLocality().Region == region {
    			if ep.GetLocality().Zone == zone {
    				if ep.GetLocality().SubZone == subzone {
    					if ep.GetPriority() != 0 {
    						t.Errorf("expected endpoint pool from same locality to have priority of 0, got %v", ep.GetPriority())
    					}
    				} else if ep.GetPriority() != 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top