Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 127 for Forever (0.24 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            if (isDebugLauncher()) {
                if (System.getenv().containsKey("CI")) {
                    throw new IllegalArgumentException("Builds cannot be started with the debugger enabled on CI. This will cause tests to hang forever. Remove the call to startLauncherInDebugger().");
                }
                gradleInvocation.implicitLauncherJvmArgs.add(debugLauncher.toDebugArgument());
            }
            gradleInvocation.implicitLauncherJvmArgs.add("-ea");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. internal/bucket/lifecycle/lifecycle_test.go

    			objectName:     "fooobject",
    			objectTags:     "store+forever=false&factory=true",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    			// in a handshake. Cancel our context and see if we get unstuck.
    			// (Our TCP listener above never reads or writes, so the Handshake
    			// would otherwise be stuck forever)
    			cancel()
    			return len(b), nil
    		}),
    		ServerName: "foo",
    	}}
    	_, err := d.DialContext(ctx, "tcp", ln.Addr().String())
    	if err != context.Canceled {
    		t.Errorf("err = %v; want context.Canceled", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	}
    	defer cacher.Stop()
    
    	opts := storage.ListOptions{
    		ResourceVersion: "0",
    		Predicate:       storage.Everything,
    	}
    
    	// Cancel the request so that it doesn't hang forever.
    	listCtx, listCancel := context.WithTimeout(context.Background(), 250*time.Millisecond)
    	defer listCancel()
    
    	result := &example.PodList{}
    	err = cacher.GetList(listCtx, "/pods/ns", opts, result)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. 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)
  6. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                //
                // Our settings.xml source is historically how we have configured Maven from the CLI so we are going to
                // have to honour its existence forever. So let's run it.
                //
                configurationProcessors.get(SettingsXmlConfigurationProcessor.HINT).process(cliRequest);
            } else if (userSuppliedConfigurationProcessorCount == 1) {
                //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. 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)
  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