Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 142 for waits (0.09 sec)

  1. src/crypto/tls/handshake_client_test.go

    	cmd.Stderr = out
    	if err := cmd.Start(); err != nil {
    		return nil, nil, nil, nil, err
    	}
    
    	// OpenSSL does print an "ACCEPT" banner, but it does so *before*
    	// opening the listening socket, so we can't use that to wait until it
    	// has started listening. Thus we are forced to poll until we get a
    	// connection.
    	var tcpConn net.Conn
    	for i := uint(0); i < 5; i++ {
    		tcpConn, err = net.DialTCP("tcp", nil, &net.TCPAddr{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

                    minimum: 10
                    type: integer
                  transmitInterval:
                    description: The minimum transmission interval (less jitter) that
                      this system wants to use to send BFD control packets in milliseconds.
                      Defaults to 300ms
                    format: int32
                    maximum: 60000
                    minimum: 10
                    type: integer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier.go

    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	v1 "k8s.io/api/core/v1"
    	discovery "k8s.io/api/discovery/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/client-go/tools/events"
    	utilsysctl "k8s.io/component-helpers/node/util/sysctl"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/proxy"
    	"k8s.io/kubernetes/pkg/proxy/conntrack"
    	"k8s.io/kubernetes/pkg/proxy/healthcheck"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener.go

    				// proxy uses iptables redirect or tproxy. IF mode is not set
    				// for older proxies, it defaults to iptables redirect.  If the
    				// listener's capture mode specifies NONE, then the proxy wants
    				// this listener alone to be on a physical port. If the
    				// listener's capture mode is default, then its same as
    				// iptables i.e. BindToPort is false.
    				bind.bindToPort = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// StatusReasonTooManyRequests means the server experienced too many requests within a
    	// given window and that the client must wait to perform the action again. A client may
    	// always retry the request that led to this error, although the client should wait at least
    	// the number of seconds specified by the retryAfterSeconds field.
    	// Details (optional):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  6. src/cmd/internal/testdir/testdir_test.go

    		GOEXPERIMENT string
    		GODEBUG      string
    		CGO_ENABLED  string
    	}
    	if err := json.NewDecoder(stdout).Decode(&env); err != nil {
    		t.Fatal("Decode:", err)
    	}
    	if err := cmd.Wait(); err != nil {
    		t.Fatal("Wait:", err)
    	}
    	goos = env.GOOS
    	goarch = env.GOARCH
    	cgoEnabled, _ = strconv.ParseBool(env.CGO_ENABLED)
    	goExperiment = env.GOEXPERIMENT
    	goDebug = env.GODEBUG
    
    	common := testCommon{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    - Add apiserver.latency.k8s.io/apf-queue-wait annotation to the audit log to record the time spent waiting in apf queue ([#123919](https://github.com/kubernetes/kubernetes/pull/123919), [@hakuna-matatah](https://github.com/hakuna-matatah)) [SIG API Machinery]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    				constants.AmbientWaypointInboundBinding: "PROXY/15088",
    			},
    		},
    	})
    	s.addWaypoint(t, "1.2.3.4", "proxy-sandwich", constants.AllTraffic, true)
    	// TODO needing this check seems suspicious. We should really wait for up to 2 pod events.
    	assert.EventuallyEqual(t, func() int { return len(s.waypoints.List()) }, 1)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    		<-unblockServer
    	}()
    
    	ctx, cancel := context.WithCancel(context.Background())
    	d := Dialer{Config: &Config{
    		Rand: readerFunc(func(b []byte) (n int, err error) {
    			// By the time crypto/tls wants randomness, that means it has a TCP
    			// connection, so we're past the Dialer's dial and now blocked
    			// in a handshake. Cancel our context and see if we get unstuck.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/proxier.go

    	v1 "k8s.io/api/core/v1"
    	discovery "k8s.io/api/discovery/v1"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	apiutil "k8s.io/apimachinery/pkg/util/net"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/tools/events"
    	"k8s.io/klog/v2"
    	kubefeatures "k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/proxy"
    	"k8s.io/kubernetes/pkg/proxy/apis/config"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
Back to top