Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 132 for ep (0.05 sec)

  1. pkg/proxy/endpointschangetracker.go

    		if svcPortName.Protocol != v1.ProtocolUDP {
    			continue
    		}
    
    		epServing := 0
    		for _, ep := range epList {
    			if ep.IsServing() {
    				epServing++
    			}
    		}
    
    		oldEpServing := 0
    		for _, ep := range oldEndpointsMap[svcPortName] {
    			if ep.IsServing() {
    				oldEpServing++
    			}
    		}
    
    		if epServing > 0 && oldEpServing == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/lif/address.go

    	}
    	defer func() {
    		for _, ep := range eps {
    			ep.close()
    		}
    	}()
    	lls, err := links(eps, name)
    	if len(lls) == 0 {
    		return nil, err
    	}
    	var as []Addr
    	for _, ll := range lls {
    		var lifr lifreq
    		for i := 0; i < len(ll.Name); i++ {
    			lifr.Name[i] = int8(ll.Name[i])
    		}
    		for _, ep := range eps {
    			ioc := int64(syscall.SIOCGLIFADDR)
    			err := ioctl(ep.s, uintptr(ioc), unsafe.Pointer(&lifr))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/vendor/golang.org/x/net/lif/lif.go

    //
    // The package supports Solaris 11 or above.
    package lif
    
    import (
    	"syscall"
    )
    
    type endpoint struct {
    	af int
    	s  uintptr
    }
    
    func (ep *endpoint) close() error {
    	return syscall.Close(int(ep.s))
    }
    
    func newEndpoints(af int) ([]endpoint, error) {
    	var lastErr error
    	var eps []endpoint
    	afs := []int{syscall.AF_INET, syscall.AF_INET6}
    	if af != syscall.AF_UNSPEC {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 950 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. 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)
Back to top