Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 508 for Forever (0.34 sec)

  1. tests/integration/pilot/common/routing.go

    				opts: echo.CallOptions{
    					Port:  echo.Port{ServicePort: e.port, Protocol: protocol.HTTP},
    					Count: 1,
    					// Failed requests will go to non-existent port which hangs forever
    					// Set a low timeout to fail faster
    					Timeout: time.Millisecond * 500,
    					Address: t.Apps.External.All[0].Address(),
    					HTTP: echo.HTTP{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	// and M is extra buffer to allow the API server to process the config.
    	// At that point, they are guaranteed to either migrate to the new key
    	// or get errors during the migration.
    	//
    	// If the API server coasted forever on the last DEK/seed, they would need
    	// to actively check if it had observed the new key ID before starting
    	// a migration - otherwise it could keep using the old DEK/seed and their
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    			return fmt.Errorf("Get #%d: %v", i, err)
    		}
    		r.Body.Close()
    	}
    	return nil
    }
    
    // golang.org/issue/4741 -- setting only a write timeout that triggers
    // shouldn't cause a handler to block forever on reads (next HTTP
    // request) that will never happen.
    func TestOnlyWriteTimeout(t *testing.T) { run(t, testOnlyWriteTimeout, []testMode{http1Mode}) }
    func testOnlyWriteTimeout(t *testing.T, mode testMode) {
    	var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  4. hack/local-up-cluster.sh

      # Still need to figure why this commands throw an error: Error from server: client: etcd cluster is unavailable or misconfigured
      #     ${KUBECTL} --namespace=kube-system delete service kube-dns
      # And this one hang forever:
      #     ${KUBECTL} --namespace=kube-system delete rc kube-dns-v10
      # fi
    
      # Check if the API server is still running
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. pkg/kubelet/status/status_manager.go

    	syncTicker := time.NewTicker(syncPeriod).C
    
    	// syncPod and syncBatch share the same go routine to avoid sync races.
    	go wait.Forever(func() {
    		for {
    			select {
    			case <-m.podStatusChannel:
    				klog.V(4).InfoS("Syncing updated statuses")
    				m.syncBatch(false)
    			case <-syncTicker:
    				klog.V(4).InfoS("Syncing all statuses")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    		// User error.
    		return false
    	}
    	if !pc.isReused() {
    		// This was a fresh connection. There's no reason the server
    		// should've hung up on us.
    		//
    		// Also, if we retried now, we could loop forever
    		// creating new connections and retrying if the server
    		// is just hanging up on us because it doesn't like
    		// our request (as opposed to sending an error).
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. src/runtime/panic.go

    			didothers = true
    			tracebackothers(gp)
    		}
    	}
    	unlock(&paniclk)
    
    	if panicking.Add(-1) != 0 {
    		// Some other m is panicking too.
    		// Let it print what it needs to print.
    		// Wait forever without chewing up cpu.
    		// It will exit when it's done.
    		lock(&deadlock)
    		lock(&deadlock)
    	}
    
    	printDebugLog()
    
    	return docrash
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    	}
    
    	return c.closeNotify()
    }
    
    func (c *Conn) closeNotify() error {
    	c.out.Lock()
    	defer c.out.Unlock()
    
    	if !c.closeNotifySent {
    		// Set a Write Deadline to prevent possibly blocking forever.
    		c.SetWriteDeadline(time.Now().Add(time.Second * 5))
    		c.closeNotifyErr = c.sendAlertLocked(alertCloseNotify)
    		c.closeNotifySent = true
    		// Any subsequent writes will fail.
    		c.SetWriteDeadline(time.Now())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	// closed (as otherwise events would have to be dropped).
    	// For now, this number is smallest for Cacher and it equals 21 for it.
    	//
    	// Create more events to ensure that we're not blocking other watchers
    	// forever.
    	startTime := time.Now()
    	for i := 0; i < 22; i++ {
    		out := &example.Pod{}
    		pod := &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: fmt.Sprintf("foo-%d", i), Namespace: "test-ns"}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. src/time/time.go

    // The zone begins at start and the next zone begins at end.
    // If the zone begins at the beginning of time, start will be returned as a zero Time.
    // If the zone goes on forever, end will be returned as a zero Time.
    // The Location of the returned times will be the same as t.
    func (t Time) ZoneBounds() (start, end Time) {
    	_, _, startSec, endSec, _ := t.loc.lookup(t.unixSec())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top