Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,242 for began (0.22 sec)

  1. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    you executed, whether you're nervous or not.'
    
      `I'm a poor man, your Majesty,' the Hatter began, in a
    trembling voice, `--and I hadn't begun my tea--not above a week
    or so--and what with the bread-and-butter getting so thin--and
    the twinkling of the tea--'
    
      `The twinkling of the what?' said the King.
    
      `It began with the tea,' the Hatter replied.
    
      `Of course twinkling begins with a T!' said the King sharply.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    you executed, whether you're nervous or not.'
    
      `I'm a poor man, your Majesty,' the Hatter began, in a
    trembling voice, `--and I hadn't begun my tea--not above a week
    or so--and what with the bread-and-butter getting so thin--and
    the twinkling of the tea--'
    
      `The twinkling of the what?' said the King.
    
      `It began with the tea,' the Hatter replied.
    
      `Of course twinkling begins with a T!' said the King sharply.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sync/semaphore/semaphore.go

    	done := ctx.Done()
    
    	s.mu.Lock()
    	select {
    	case <-done:
    		// ctx becoming done has "happened before" acquiring the semaphore,
    		// whether it became done before the call began or while we were
    		// waiting for the mutex. We prefer to fail even if we could acquire
    		// the mutex without blocking.
    		s.mu.Unlock()
    		return ctx.Err()
    	default:
    	}
    	if s.size-s.cur >= n && s.waiters.Len() == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/types.go

    	// This field is meaningful only while the request is waiting in the virtual world.
    	arrivalR fcrequest.SeatSeconds
    
    	// startTime is the real time when the request began executing
    	startTime time.Time
    
    	// Indicates whether client has called Request::Wait()
    	waitStarted bool
    }
    
    type completedWorkEstimate struct {
    	fcrequest.WorkEstimate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_seed_corpus.txt

    stdout 'contains a non-zero byte of length 10'
    stdout 'Failing input written to testdata[/\\]fuzz[/\\]FuzzWithMinimizableCache[/\\]'
    stdout FAIL
    # Make sure this crash didn't come from fuzzing
    # (the log line that states fuzzing began shouldn't have printed)
    ! stdout 'execs'
    
    # Clear the fuzz cache and make sure it's gone
    go clean -fuzzcache
    ! exists $GOCACHE/fuzz
    
    # The tests below should operate the exact same as the previous tests. If -fuzz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 19:51:29 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  6. src/runtime/mcentral.go

    	if s.allocCount == 0 {
    		throw("uncaching span but s.allocCount == 0")
    	}
    
    	sg := mheap_.sweepgen
    	stale := s.sweepgen == sg+1
    
    	// Fix up sweepgen.
    	if stale {
    		// Span was cached before sweep began. It's our
    		// responsibility to sweep it.
    		//
    		// Set sweepgen to indicate it's not cached but needs
    		// sweeping and can't be allocated from. sweep will
    		// set s.sweepgen to indicate s is swept.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. doc/next/9-todo.md

    CL 559799 - a Go 1.22 release note edit CL mentioned a Go 1.22 accepted proposal https://go.dev/issue/62039, a little after Go 1.23 development began
    CL 581555 - an x/tools CL mentioned accepted proposal https://go.dev/issue/62292 for x/tools/go/aalysis; doesn't need a Go 1.23 release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/endtoend_test.go

    		if f == "" || len(f)%2 != 0 || strings.TrimLeft(f, "0123456789abcdef") != "" {
    			return false
    		}
    	}
    	return true
    }
    
    // It would be nice if the error messages always began with
    // the standard file:line: prefix,
    // but that's not where we are today.
    // It might be at the beginning but it might be in the middle of the printed instruction.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. src/cmd/trace/regions.go

    Regions are grouped by the region type and the point at which the region started.
    The rightmost column of the table contains a latency histogram for each region group.
    Note that this histogram only counts regions that began and ended within the traced
    period.
    However, the "Count" column includes all regions, including those that only started
    or ended during the traced period.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. src/encoding/xml/read_test.go

      This fixes the buggy tab rendering that can be seen at
    http://codereview.appspot.com/116075/diff/1/2
    
    The fundamental problem was that the tab code was
    not being told what column the text began in, so it
    didn&amp;#39;t know where to put the tab stops.  Another problem
    was that some of the code assumed that string byte
    offsets were the same as column offsets, which is only
    true if there are no tabs.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top