Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/proxy/winkernel/testing/hcnutils_mock.go

    	for _, ep := range endpointMap {
    		hcnEPList = append(hcnEPList, *ep)
    	}
    	return hcnEPList, nil
    }
    
    func (hcnObj HcnMock) ListEndpointsOfNetwork(networkId string) ([]hcn.HostComputeEndpoint, error) {
    	var hcnEPList []hcn.HostComputeEndpoint
    	for _, ep := range endpointMap {
    		if ep.HostComputeNetwork == networkId {
    			hcnEPList = append(hcnEPList, *ep)
    		}
    	}
    	return hcnEPList, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 06:29:01 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/lif/link.go

    	}
    	defer func() {
    		for _, ep := range eps {
    			ep.close()
    		}
    	}()
    	return links(eps, name)
    }
    
    func links(eps []endpoint, name string) ([]Link, error) {
    	var lls []Link
    	lifn := lifnum{Flags: sysLIFC_NOXMIT | sysLIFC_TEMPORARY | sysLIFC_ALLZONES | sysLIFC_UNDER_IPMP}
    	lifc := lifconf{Flags: sysLIFC_NOXMIT | sysLIFC_TEMPORARY | sysLIFC_ALLZONES | sysLIFC_UNDER_IPMP}
    	for _, ep := range eps {
    		lifn.Family = uint16(ep.af)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. pkg/proxy/winkernel/proxier.go

    		serving:     true,
    		terminating: false,
    	}
    	ep, err := hns.createEndpoint(hnsEndpoint, network)
    	return ep, err
    }
    
    func (ep *endpointInfo) DecrementRefCount() {
    	klog.V(3).InfoS("Decrementing Endpoint RefCount", "endpointInfo", ep)
    	if !ep.IsLocal() && ep.refCount != nil && *ep.refCount > 0 {
    		*ep.refCount--
    	}
    }
    
    func (ep *endpointInfo) Cleanup() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  4. pilot/pkg/model/endpointshards.go

    	for _, v := range es.Shards {
    		for _, ep := range v {
    			// use the port name as the key, unless LegacyClusterPortKey is set and takes precedence
    			// In EDS we match on port *name*. But for historical reasons, we match on port number for CDS.
    			var portNum int
    			if ep.LegacyClusterPortKey != 0 {
    				if !ports.Contains(ep.LegacyClusterPortKey) {
    					continue
    				}
    				portNum = ep.LegacyClusterPortKey
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  5. 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)
  6. src/os/executable_test.go

    func TestExecutable(t *testing.T) {
    	testenv.MustHaveExec(t)
    	t.Parallel()
    
    	ep, err := os.Executable()
    	if err != nil {
    		t.Fatalf("Executable failed: %v", err)
    	}
    	// we want fn to be of the form "dir/prog"
    	dir := filepath.Dir(filepath.Dir(ep))
    	fn, err := filepath.Rel(dir, ep)
    	if err != nil {
    		t.Fatalf("filepath.Rel: %v", err)
    	}
    
    	cmd := testenv.Command(t, fn, "-test.run=^$")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/GradlePluginVariantsSupportTest.groovy

        def attributes = AttributeTestUtil.attributesFactory()
        def objects = TestUtil.objectFactory()
        def schema = new DefaultAttributesSchema(TestUtil.instantiatorFactory(), SnapshotTestUtil.isolatableFactory())
        def ep = Stub(AttributeMatchingExplanationBuilder)
    
        def setup() {
            GradlePluginVariantsSupport.configureSchema(schema)
        }
    
        def "Gradle #currentGradleVersion #acceptsOrRejects 7.0 api"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. pilot/pkg/xds/endpoints/mtls_checker.go

    		GetMutualTLSModeForPort(ep.EndpointPort) != model.MTLSDisable
    }
    
    func tlsModeForDestinationRule(drc *config.Config, subset string, port int) *networkingapi.ClientTLSSettings_TLSmode {
    	if drc == nil {
    		return nil
    	}
    	dr, ok := drc.Spec.(*networkingapi.DestinationRule)
    	if !ok || dr == nil {
    		return nil
    	}
    
    	if subset == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 07:32:22 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top