Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,283 for GetWork (0.12 sec)

  1. pilot/pkg/config/kube/gateway/testdata/eastwest-tlsoption.yaml

      namespace: istio-system
      labels:
        topology.istio.io/network: "network-1"
    spec:
      gatewayClassName: istio
      listeners:
      - name: istiod-grpc
        port: 15012
        protocol: TLS
        tls:
          mode: Passthrough
      - name: istiod-webhook
        port: 15017
        protocol: TLS
        tls:
          mode: Passthrough
      - name: cross-network
        hostname: "*.local"
        port: 35443
        protocol: TLS
        tls:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/base/limit.go

    	"runtime"
    	"strconv"
    	"sync"
    )
    
    var NetLimitGodebug = godebug.New("#cmdgonetlimit")
    
    // NetLimit returns the limit on concurrent network operations
    // configured by GODEBUG=cmdgonetlimit, if any.
    //
    // A limit of 0 (indicated by 0, true) means that network operations should not
    // be allowed.
    func NetLimit() (int, bool) {
    	netLimitOnce.Do(func() {
    		s := NetLimitGodebug.Value()
    		if s == "" {
    			return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/check/checkers.go

    	// Verify that all expected networks were reached.
    	for network := range expectedByNetwork {
    		if networkHits[network] == 0 {
    			return fmt.Errorf("did not reach network %v, got %v", network, networkHits)
    		}
    	}
    
    	// Verify that no unexpected networks were reached.
    	for network := range networkHits {
    		if expectedByNetwork[network] == nil {
    			return fmt.Errorf("reached network not in %v, got %v", expectedByNetwork.Networks(), networkHits)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 03 16:19:07 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  4. src/internal/poll/sockopt.go

    package poll
    
    import "syscall"
    
    // SetsockoptInt wraps the setsockopt network call with an int argument.
    func (fd *FD) SetsockoptInt(level, name, arg int) error {
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    	return syscall.SetsockoptInt(fd.Sysfd, level, name, arg)
    }
    
    // SetsockoptInet4Addr wraps the setsockopt network call with an IPv4 address.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:44:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/InterceptorTest.kt

      }
    
      @Test
      fun networkInterceptorsRewriteRequestToServer() {
        rewriteRequestToServer(true)
      }
    
      private fun rewriteRequestToServer(network: Boolean) {
        server.enqueue(MockResponse())
        addInterceptor(network) { chain: Interceptor.Chain ->
          val originalRequest = chain.request()
          chain.proceed(
            originalRequest.newBuilder()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Jan 14 10:20:09 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. pilot/pkg/features/xds.go

    	// Pilot injects this outbound filter if the service port name is `redis`.
    	EnableRedisFilter = env.Register(
    		"PILOT_ENABLE_REDIS_FILTER",
    		false,
    		"EnableRedisFilter enables injection of `envoy.filters.network.redis_proxy` in the filter chain.",
    	).Get()
    
    	// EnableMongoFilter enables injection of `envoy.filters.network.mongo_proxy` in the filter chain.
    	EnableMongoFilter = env.Register(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. src/net/net_fake_test.go

    // found on other platforms. To help run test suites of the stdlib packages,
    // an in-memory "fake network" facility is implemented.
    //
    // The tests in this files are intended to validate the behavior of the fake
    // network stack on these platforms.
    
    import (
    	"errors"
    	"syscall"
    	"testing"
    )
    
    func TestFakePortExhaustion(t *testing.T) {
    	if testing.Short() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. src/net/rawconn.go

    	return &rawConn{fd: fd}
    }
    
    // Network returns the network type of the underlying connection.
    //
    // Other packages in std that import internal/poll and are unable to
    // import net (such as os) can use a type assertion to access this
    // extension method so that they can distinguish different socket types.
    //
    // Network is not intended for use outside the standard library.
    func (c *rawConn) Network() poll.String {
    	return poll.String(c.fd.net)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. pilot/pkg/autoregistration/controller_test.go

    	}
    
    	if proxy.Metadata.Network != "" {
    		if we.Network != string(proxy.Metadata.Network) {
    			err = multierror.Append(fmt.Errorf("entry has network %s; expected to match meta network %s", we.Network, proxy.Metadata.Network))
    		}
    	} else {
    		if we.Network != tmpl.Template.Network {
    			err = multierror.Append(fmt.Errorf("entry has network %s; expected to match group template network %s", we.Network, tmpl.Template.Network))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  10. pkg/kubelet/winstats/network_stats.go

    	"k8s.io/klog/v2"
    )
    
    const (
    	packetsReceivedPerSecondQuery = "\\Network Adapter(*)\\Packets Received/sec"
    	packetsSentPerSecondQuery     = "\\Network Adapter(*)\\Packets Sent/sec"
    	bytesReceivedPerSecondQuery   = "\\Network Adapter(*)\\Bytes Received/sec"
    	bytesSentPerSecondQuery       = "\\Network Adapter(*)\\Bytes Sent/sec"
    	packetsReceivedDiscardedQuery = "\\Network Adapter(*)\\Packets Received Discarded"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top