Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 432 for begins (0.4 sec)

  1. guava-tests/test/com/google/common/util/concurrent/UninterruptibleFutureTest.java

       */
      public void testRegularFutureInterrupted() throws ExecutionException {
    
        /*
         * Here's the order of events that we want.
         *
         * 1. The client thread begins to block on a get() call to a future.
         * 2. The client thread is interrupted sometime before the result would be
         *   available.
         * 3. We expect the client's get() to throw an InterruptedException.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. src/cmd/test2json/main.go

    //	fail   - the test or benchmark failed
    //	output - the test printed output
    //	skip   - the test was skipped or the package contained no tests
    //
    // Every JSON stream begins with a "start" event.
    //
    // The Package field, if present, specifies the package being tested.
    // When the go command runs parallel tests in -json mode, events from
    // different tests are interlaced; the Package field allows readers to
    // separate them.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. pkg/util/goroutinemap/goroutinemap.go

    func (grm *goRoutineMap) operationComplete(
    	operationName string, err *error) {
    	// Defer operations are executed in Last-In is First-Out order. In this case
    	// the lock is acquired first when operationCompletes begins, and is
    	// released when the method finishes, after the lock is released cond is
    	// signaled to wake waiting goroutine.
    	defer grm.cond.Signal()
    	grm.lock.Lock()
    	defer grm.lock.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/UninterruptibleFutureTest.java

       */
      public void testRegularFutureInterrupted() throws ExecutionException {
    
        /*
         * Here's the order of events that we want.
         *
         * 1. The client thread begins to block on a get() call to a future.
         * 2. The client thread is interrupted sometime before the result would be
         *   available.
         * 3. We expect the client's get() to throw an InterruptedException.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. src/go/ast/import.go

    		}
    
    		// Identify and sort runs of specs on successive lines.
    		i := 0
    		specs := d.Specs[:0]
    		for j, s := range d.Specs {
    			if j > i && lineAt(fset, s.Pos()) > 1+lineAt(fset, d.Specs[j-1].End()) {
    				// j begins a new run. End this one.
    				specs = append(specs, sortSpecs(fset, f, d.Specs[i:j])...)
    				i = j
    			}
    		}
    		specs = append(specs, sortSpecs(fset, f, d.Specs[i:])...)
    		d.Specs = specs
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/security_test.go

    			t.Errorf("missing error for %q", f)
    		}
    	}
    
    	// All "good" compiler flags should not trigger external linking,
    	// except for anything that begins with "-flto".
    	for _, f := range goodCompilerFlags {
    		foundLTO := false
    		for _, s := range f {
    			if strings.Contains(s, "-flto") {
    				foundLTO = true
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    == Step 3. Understanding Dependencies Between Tasks
    Many times, a task requires another task to run first.
    If task B uses the output of task A, then task A must complete before task B begins.
    
    - A task may declare its dependencies explicitly.
    - A task may depend on other tasks implicitly.
    
    Here is an example of explicit task dependency:
    [.multi-language-sample]
    =====
    [source, kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. src/encoding/pem/pem.go

    // no PEM data is found, p is nil and the whole of the input is returned in
    // rest.
    func Decode(data []byte) (p *Block, rest []byte) {
    	// pemStart begins with a newline. However, at the very beginning of
    	// the byte array, we'll accept the start string without it.
    	rest = data
    	for {
    		if bytes.HasPrefix(rest, pemStart[1:]) {
    			rest = rest[len(pemStart)-1:]
    		} else if _, after, ok := bytes.Cut(rest, pemStart); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/math/sin.go

    // arithmetic   domain      # trials      peak         rms
    //    DEC       0, 10       150000       3.0e-17     7.8e-18
    //    IEEE -1.07e9,+1.07e9  130000       2.1e-16     5.4e-17
    //
    // Partial loss of accuracy begins to occur at x = 2**30 = 1.074e9.  The loss
    // is not gradual, but jumps suddenly to about 1 part in 10e7.  Results may
    // be meaningless for x > 2**49 = 5.6e14.
    //
    //      cos.c
    //
    //      Circular cosine
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/interface.go

    	// (1) during a call to StartRequest and (2) during a call to
    	// Request::Finish.  In the latter case idleness can only change
    	// from false to true.
    	IsIdle() bool
    
    	// StartRequest begins the process of handling a request.  If the
    	// request gets queued and the number of queues is greater than 1
    	// then StartRequest uses the given hashValue as the source of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top