Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 55 for ep (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pilot/pkg/networking/grpcgen/grpcecho_test.go

    		})
    		if err != nil {
    			t.Fatal(err)
    		}
    		wg.Add(1)
    		if err := ep.Start(func() {
    			wg.Done()
    		}); err != nil {
    			t.Fatal(err)
    		}
    
    		cfgs = append(cfgs, makeWE(s, ip, ep.GetConfig().Port.Port))
    		cgt.endpoints = append(cgt.endpoints, ep)
    		t.Cleanup(func() {
    			if err := ep.Close(); err != nil {
    				t.Errorf("failed to close endpoint %s: %v", ip, err)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/ingress/status.go

    	lbi := make([]knetworking.IngressLoadBalancerIngress, 0, len(endpoints))
    	for _, ep := range endpoints {
    		if !netutil.IsValidIPAddress(ep) {
    			lbi = append(lbi, knetworking.IngressLoadBalancerIngress{Hostname: ep})
    		} else {
    			lbi = append(lbi, knetworking.IngressLoadBalancerIngress{IP: ep})
    		}
    	}
    
    	sort.SliceStable(lbi, lessLoadBalancerIngress(lbi))
    	return lbi
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. cmd/bootstrap-peer-server.go

    		}
    		envValues[envK] = logger.HashString(env.Get(envK, ""))
    	}
    	scfg := &ServerSystemConfig{NEndpoints: globalEndpoints.NEndpoints(), MinioEnv: envValues}
    	var cmdLines []string
    	for _, ep := range globalEndpoints {
    		cmdLines = append(cmdLines, ep.CmdLine)
    	}
    	scfg.CmdLines = cmdLines
    	return scfg
    }
    
    func (s *bootstrapRESTServer) VerifyHandler(params *grid.MSS) (*ServerSystemConfig, *grid.RemoteErr) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/utils/utils.kt

    import com.intellij.openapi.project.Project
    import com.intellij.psi.PsiElementFinder
    
    public inline fun forEachNonKotlinPsiElementFinder(project: Project, action: (PsiElementFinder) -> Unit) {
        for (finder in PsiElementFinder.EP.getPoint(project).extensionList) {
            if (finder::class.java.name == KOTLIN_JAVA_ELEMENT_FINDER_CLASS_NAME) {
                continue
            }
            action(finder)
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 798 bytes
    - Viewed (0)
  9. cmd/lock-rest-client.go

    	if endpoint.IsLocal {
    		return globalLockServer
    	}
    	return newlockRESTClient(endpoint)
    }
    
    // Returns a lock rest client.
    func newlockRESTClient(ep Endpoint) *lockRESTClient {
    	return &lockRESTClient{globalGrid.Load().Connection(ep.GridHost())}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 24 17:07:14 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. docs/sts/client-grants.go

    }
    
    var (
    	stsEndpoint  string
    	idpEndpoint  string
    	clientID     string
    	clientSecret string
    )
    
    func init() {
    	flag.StringVar(&stsEndpoint, "sts-ep", "http://localhost:9000", "STS endpoint")
    	flag.StringVar(&idpEndpoint, "idp-ep", "http://localhost:8080/auth/realms/minio/protocol/openid-connect/token", "IDP token endpoint")
    	flag.StringVar(&clientID, "cid", "", "Client ID")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 3.3K bytes
    - Viewed (0)
Back to top