Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 532 for proxyv2 (0.18 sec)

  1. istioctl/pkg/writer/pilot/testdata/multiXdsStatusSinglePilot.txt

    NAME       CLUSTER      CDS       LDS        EDS        RDS          ECDS         ISTIOD      VERSION
    proxy1     cluster1     STALE     SYNCED     SYNCED     NOT SENT     NOT SENT     istiod1     1.20
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 03:42:52 UTC 2024
    - 300 bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/connection/RouteSelectorTest.kt

        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,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. maven-artifact/src/main/java/org/apache/maven/repository/Proxy.java

         * Get the proxy port.
         *
         * @return proxy server port
         */
        public int getPort() {
            return port;
        }
    
        /**
         * Set the proxy port.
         *
         * @param port proxy server port
         */
        public void setPort(int port) {
            this.port = port;
        }
    
        /**
         * Get the proxy username.
         *
         * @return username for the proxy server
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    func (cfg *config) proxyForURL(reqURL *url.URL) (*url.URL, error) {
    	var proxy *url.URL
    	if reqURL.Scheme == "https" {
    		proxy = cfg.httpsProxy
    	} else if reqURL.Scheme == "http" {
    		proxy = cfg.httpProxy
    		if proxy != nil && cfg.CGI {
    			return nil, errors.New("refusing to use HTTP_PROXY value in CGI environment; see golang.org/s/cgihttpproxy")
    		}
    	}
    	if proxy == nil {
    		return nil, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. cluster/addons/metadata-proxy/gce/metadata-proxy.yaml

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: metadata-proxy
      namespace: kube-system
      labels:
        k8s-app: metadata-proxy
        kubernetes.io/cluster-service: "true"
        addonmanager.kubernetes.io/mode: Reconcile
    ---
    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: metadata-proxy-v0.1
      namespace: kube-system
      labels:
        k8s-app: metadata-proxy
        kubernetes.io/cluster-service: "true"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/all_on.golden-show-in-gh-pull-request.yaml

                - "15090,15021,{{ excludeInboundPort (annotation .ObjectMeta `status.sidecar.istio.io/port` .Values.global.proxy.statusPort) (annotation .ObjectMeta `traffic.sidecar.istio.io/excludeInboundPorts` .Values.global.proxy.excludeInboundPorts) }}"
              {{- else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 506.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/proxy/proxy.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package proxy
    
    import (
    	"context"
    	"fmt"
    	"math/rand"
    	"net"
    	"net/http"
    	"net/url"
    	"strconv"
    	"strings"
    	"time"
    
    	"k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/external-forward-proxy-deployment.yaml

    kind: Deployment
    metadata:
      name: external-forward-proxy
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: external-forward-proxy
      template:
        metadata:
          labels:
            app: external-forward-proxy
        spec:
          securityContext:
            runAsUser: 65534
            runAsGroup: 65534
            fsGroup: 65534
          containers:
          - name: external-forward-proxy
            image: envoyproxy/envoy:v1.21.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 08:07:45 UTC 2023
    - 701 bytes
    - Viewed (0)
  9. docs/em/docs/advanced/behind-a-proxy.md

    ↩ī¸ đŸ‘Ĩ ✔ī¸ đŸ—ŗ ⏎ī¸ ➡ 🔡 `/api/v1` 👆 📱, 🕸 đŸ’Ē ☕ 🗄 🔗 `/api/v1/openapi.json`.
    
    ```mermaid
    graph LR
    
    browser("Browser")
    proxy["Proxy on http://0.0.0.0:9999/api/v1/app"]
    server["Server on http://127.0.0.1:8000/app"]
    
    browser --> proxy
    proxy --> server
    ```
    
    !!! tip
        đŸ“ĸ `0.0.0.0` 🛎 ⚙ī¸ ⛓ 👈 📋 👂 🔛 🌐 đŸ“ĸ đŸ’Ē 👈 🎰/đŸ’Ŋ.
    
    đŸŠē 🎚 🔜 đŸ’Ē 🗄 🔗 đŸ“Ŗ 👈 👉 🛠ī¸ `server` 🔎 `/api/v1` (⛅ đŸ—ŗ). đŸ–ŧ:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. pkg/registry/core/service/proxy.go

    	handler := proxy.NewUpgradeAwareHandler(location, transport, wrapTransport, upgradeRequired, proxy.NewErrorResponder(responder))
    	handler.MaxBytesPerSec = capabilities.Get().PerConnectionBandwidthLimitBytesPerSec
    	return handler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 19 13:59:13 UTC 2022
    - 2.9K bytes
    - Viewed (0)
Back to top