Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 484 for proxyID (0.18 sec)

  1. istioctl/pkg/writer/pilot/status_test.go

    		{
    			name: "prints multiple istiod inputs to buffer in alphabetical order by pod name",
    			input: map[string]*discovery.DiscoveryResponse{
    				"istiod1": xdsResponseInput("istiod1", []clientConfigInput{
    					{
    						proxyID:        "proxy1",
    						clusterID:      "cluster1",
    						version:        "1.20",
    						cdsSyncStatus:  status.ConfigStatus_STALE,
    						ldsSyncStatus:  status.ConfigStatus_SYNCED,
    						rdsSyncStatus:  status.ConfigStatus_NOT_SENT,
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Mar 08 08:38:19 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/pilot/status.go

    			})
    			if len(fullStatus) == 0 {
    				return nil, nil, fmt.Errorf("no proxies found (checked %d istiods)", len(drs))
    			}
    
    			sort.Slice(fullStatus, func(i, j int) bool {
    				return fullStatus[i].proxyID < fullStatus[j].proxyID
    			})
    		}
    	}
    	if len(mappedResp) > 0 {
    		mresp, err := json.MarshalIndent(mappedResp, "", "  ")
    		if err != nil {
    			return nil, nil, err
    		}
    		_, _ = s.Writer.Write(mresp)
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Mar 15 04:16:55 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  3. istioctl/pkg/internaldebug/internal-debug.go

    		for _, resource := range response.Resources {
    			eString := string(resource.Value)
    			switch {
    			case strings.Contains(eString, "You must provide a proxyID in the query string"):
    				return nil, fmt.Errorf(" You must provide a proxyID in the query string, e.g. [%s]",
    					"edsz?proxyID=istio-ingressgateway")
    
    			case strings.Contains(eString, "404 page not found"):
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Mar 15 04:16:55 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  4. istioctl/pkg/wait/wait.go

    			}
    			return 0, 0, 0, err
    		}
    		printVerbosef(cmd, "sync status: %+v", configVersions)
    		sdcnum += len(configVersions)
    		for _, configVersion := range configVersions {
    			if proxyID != "" && configVersion.ProxyID != proxyID {
    				continue
    			}
    			countVersions(versionCount, configVersion.ClusterVersion)
    			countVersions(versionCount, configVersion.RouteVersion)
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Feb 17 12:24:17 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  5. istioctl/pkg/wait/wait_test.go

    		{
    			execClientConfig: cannedResponseMap,
    			args:             strings.Split("--generation=1 VirtualService foo.default --proxy foo", " "),
    			wantException:    false,
    		},
    		{
    			execClientConfig: cannedResponseMap,
    			args:             strings.Split("--generation=1 --timeout 20ms VirtualService foo.default --proxy not-proxy", " "),
    			wantException:    true,
    			expectedOutput:   "timeout expired before resource",
    		},
    		{
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Mar 15 08:28:50 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/pilot/testdata/multiXdsStatusMultiPilot.txt

    proxy1     cluster1     STALE        SYNCED      SYNCED      NOT SENT     SYNCED       istiod1     1.20
    proxy2     cluster2     STALE        SYNCED      STALE       SYNCED       STALE        istiod2     1.19
    proxy3     cluster3     NOT SENT     ERROR       STALE       NOT SENT     NOT SENT     istiod3     1.20
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Mar 06 03:42:52 GMT 2024
    - 522 bytes
    - Viewed (0)
  7. istioctl/pkg/writer/pilot/testdata/multiStatusMultiPilot.txt

    proxy1     cluster1     STALE                          SYNCED       SYNCED                         NOT SENT     NOT SENT     istiod1     1.1
    proxy2     cluster2     STALE                          SYNCED       STALE                          SYNCED       NOT SENT     istiod2     1.1
    Plain Text
    - Registered: Wed Mar 06 22:53:12 GMT 2024
    - Last Modified: Tue Mar 21 14:27:21 GMT 2023
    - 709 bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/internal/connection/RouteSelectorTest.kt

      companion object {
        private const val PROXY_A_PORT = 1001
        private const val PROXY_A_HOST = "proxya"
        private val proxyA =
          Proxy(
            Proxy.Type.HTTP,
            InetSocketAddress.createUnresolved(PROXY_A_HOST, PROXY_A_PORT),
          )
    
        private const val PROXY_B_PORT = 1002
        private const val PROXY_B_HOST = "proxyb"
        private val proxyB =
          Proxy(
            Proxy.Type.HTTP,
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Mar 06 17:33:38 GMT 2024
    - 20.8K bytes
    - Viewed (0)
  9. maven-artifact/src/main/java/org/apache/maven/repository/Proxy.java

    package org.apache.maven.repository;
    
    /**
     * Proxy
     */
    public class Proxy {
        public static final String PROXY_SOCKS5 = "SOCKS_5";
    
        public static final String PROXY_SOCKS4 = "SOCKS4";
    
        public static final String PROXY_HTTP = "HTTP";
    
        /**
         * Proxy server host
         */
        private String host;
    
        /**
         * Username used to access the proxy server
         */
        private String userName;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 4K bytes
    - Viewed (0)
  10. docs/de/docs/advanced/behind-a-proxy.md

    Da wir für unsere Anwendung einen Proxy mit dem Pfadpräfix `/api/v1` haben, muss das Frontend das OpenAPI-Schema unter `/api/v1/openapi.json` abrufen.
    
    ```mermaid
    graph LR
    
    browser("Browser")
    proxy["Proxy auf http://0.0.0.0:9999/api/v1/app"]
    server["Server auf http://127.0.0.1:8000/app"]
    
    browser --> proxy
    proxy --> server
    ```
    
    !!! tip "Tipp"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:30:07 GMT 2024
    - 13.1K bytes
    - Viewed (0)
Back to top