Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 82 for proxyv2 (0.17 sec)

  1. pilot/cmd/pilot-agent/options/agent.go

    		},
    		ProxyIPAddresses:            proxy.IPAddresses,
    		ServiceNode:                 proxy.ServiceNode(),
    		EnvoyStatusPort:             envoyStatusPortEnv,
    		EnvoyPrometheusPort:         envoyPrometheusPortEnv,
    		MinimumDrainDuration:        minimumDrainDurationEnv,
    		ExitOnZeroActiveConnections: exitOnZeroActiveConnectionsEnv,
    		Platform:                    platform.Discover(proxy.SupportsIPv6()),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/xdsgen.go

    	cp, _ := controlPlane.Get()
    	return cp
    }
    
    func (s *DiscoveryServer) findGenerator(typeURL string, con *Connection) model.XdsResourceGenerator {
    	if g, f := s.Generators[con.proxy.Metadata.Generator+"/"+typeURL]; f {
    		return g
    	}
    	if g, f := s.Generators[string(con.proxy.Type)+"/"+typeURL]; f {
    		return g
    	}
    
    	if g, f := s.Generators[typeURL]; f {
    		return g
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  3. cluster/gce/manifests/konnectivity-server.yaml

        {{ container_security_context }}:
          {{ disallow_privilege_escalation}}
          {{ capabilities }}
            {{ drop_capabilities }}
        image: registry.k8s.io/kas-network-proxy/proxy-server:v0.30.3
        resources:
          requests:
            cpu: 25m
        command: [ "/proxy-server"{{ konnectivity_args }} ]
        livenessProbe:
          httpGet:
            scheme: HTTP
            host: 127.0.0.1
            port: {{ health_port }}
            path: /healthz
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 10:31:11 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inputs/proxy-override-runas.yaml.34.mesh.gen.yaml

    Jonh Wendell <******@****.***> 1715709579 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 191 bytes
    - Viewed (0)
  5. pkg/bootstrap/testdata/deferred_cluster_creation.proxycfg

    config_path:                      "/etc/istio/proxy"
    binary_path:                      "/usr/local/bin/envoy"
    service_cluster:                  "istio-proxy"
    drain_duration:                   {seconds: 5}
    discovery_address:                "mypilot:15011"
    statsd_udp_address:               "10.1.1.1:9125"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 864 bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              function override_core_limits() {
                while ! pgrep -u istio-proxy envoy; do
                  echo "Envoy isn't running yet, trying again..."
                  pgrep -u istio-proxy envoy
                  sleep .1
                done
                pid="$(pgrep -u istio-proxy envoy)"
                sudo prlimit -p "${pid}" --core=unlimited
              }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. pkg/proxy/node.go

    limitations under the License.
    */
    
    package proxy
    
    import (
    	"context"
    	"reflect"
    	"sync"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/proxy/config"
    	"k8s.io/kubernetes/pkg/proxy/healthcheck"
    )
    
    // NodePodCIDRHandler handles the life cycle of kube-proxy based on the node PodCIDR assigned
    // Implements the config.NodeHandler interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package winkernel implements the Windows-kernel-based proxy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 702 bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/SocksProxy.kt

          } finally {
            for (socket in openSockets) {
              socket.closeQuietly()
            }
            Thread.currentThread().name = "SocksProxy"
          }
        }
      }
    
      fun proxy(): Proxy {
        return Proxy(
          Proxy.Type.SOCKS,
          InetSocketAddress.createUnresolved("localhost", serverSocket!!.localPort),
        )
      }
    
      fun connectionCount(): Int = connectionCount.get()
    
      fun shutdown() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. docs/tr/docs/advanced/wsgi.md

    # WSGI - Flask, Django ve Daha Fazlasını FastAPI ile Kullanma
    
    WSGI uygulamalarını [Sub Applications - Mounts](sub-applications.md){.internal-link target=_blank}, [Behind a Proxy](behind-a-proxy.md){.internal-link target=_blank} bölümlerinde gördüğünüz gibi bağlayabilirsiniz.
    
    Bunun için `WSGIMiddleware` ile Flask, Django vb. WSGI uygulamanızı sarmalayabilir ve FastAPI'ya bağlayabilirsiniz.
    
    ## `WSGIMiddleware` Kullanımı
    
    `WSGIMiddleware`'ı projenize dahil edin.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:49:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top