Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 169 for ep (0.02 sec)

  1. 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)
  2. 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)
  3. pkg/test/echo/server/instance.go

    			return err
    		}
    		for _, ip := range getBindAddresses(ip) {
    			ep, err := s.newEndpoint(p, ip, "")
    			if err != nil {
    				return err
    			}
    			s.endpoints = append(s.endpoints, ep)
    		}
    	}
    
    	if len(s.UDSServer) > 0 {
    		ep, err := s.newEndpoint(nil, "", s.UDSServer)
    		if err != nil {
    			return err
    		}
    		s.endpoints = append(s.endpoints, ep)
    	}
    
    	return s.waitUntilReady()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 07:54:01 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

    --- a/stdlib/setenv.c
    +++ b/stdlib/setenv.c
    @@ -319,6 +319,7 @@ unsetenv (const char *name)
     
       ep = __environ;
       if (ep != NULL)
    +  {
         while (*ep != NULL)
           if (!strncmp (*ep, name, len) && (*ep)[len] == '=')
     	{
    @@ -332,6 +333,7 @@ unsetenv (const char *name)
     	}
           else
     	++ep;
    +  }
     
       UNLOCK;
     
    diff --git a/support/Makefile b/support/Makefile
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact.go

    	// 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 {
    		go compactor(ctx, client, compactInterval)
    	}
    }
    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