Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,585 for room (0.18 sec)

  1. src/syscall/syscall_darwin.go

    			return n, errnoErr(e)
    		}
    		if entryp == nil {
    			break
    		}
    		if skip > 0 {
    			skip--
    			cnt++
    			continue
    		}
    		reclen := int(entry.Reclen)
    		if reclen > len(buf) {
    			// Not enough room. Return for now.
    			// The counter will let us know where we should start up again.
    			// Note: this strategy for suspending in the middle and
    			// restarting is O(n^2) in the length of the directory. Oh well.
    			break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/runtime/stack.go

    		CALL morestack(SB)
    
    	stack frame size >= StackBig:
    		MOVQ m->morearg, $((argsize << 32) | frame)
    		CALL morestack(SB)
    
    The bottom StackGuard - StackSmall bytes are important: there has
    to be enough room to execute functions that refuse to check for
    stack overflow, either because they need to be adjacent to the
    actual caller's frame (deferproc) or because they handle the imminent
    stack overflow (morestack).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    | N/A
    
    | Immutables
    | link:https://github.com/immutables/immutables/issues/804[Open issue]
    | N/A
    
    | link:https://developer.android.com/topic/libraries/architecture/room[Room]
    | link:https://developer.android.com/jetpack/androidx/releases/room#version_220_3[2.2.0]
    | 2.2.0 Feature toggle support, 2.3.0-alpha02 Enabled by default
    
    | link:https://developer.android.com/jetpack/androidx/releases/lifecycle[Lifecycle]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. cluster/gce/windows/common.psm1

        [parameter(Mandatory=$true)] [string]$Path
      )
      if ($Count -lt 0) {
        $Count = 0
      }
      # If creating a new backup will exceed $Count, delete the oldest files
      # until we have one less than $Count, leaving room for the new one.
      # If the pipe results in zero items, $backups is $null, and if it results
      # in only one item, PowerShell doesn't wrap in an array, so we check both cases.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  5. src/runtime/debug/garbage.go

    		stats.PauseEnd = append(stats.PauseEnd, time.Unix(0, int64(ns)))
    	}
    
    	if len(stats.PauseQuantiles) > 0 {
    		if n == 0 {
    			clear(stats.PauseQuantiles)
    		} else {
    			// There's room for a second copy of the data in stats.Pause.
    			// See the allocation at the top of the function.
    			sorted := stats.Pause[n : n+n]
    			copy(sorted, stats.Pause)
    			slices.Sort(sorted)
    			nq := len(stats.PauseQuantiles) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer_test.go

    			checker: func(t *testing.T, c []gcCycleResult) {
    				n := len(c)
    				if n > 4 {
    					// After the 4th GC, the heap will stop growing.
    					// First, let's make sure we're finishing near the goal, with some extra
    					// room because we're probably going to be triggering early.
    					assertInRange(t, "goal ratio", c[n-1].goalRatio(), 0.925, 1.025)
    					// Next, let's make sure there's some minimum distance between the goal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  7. src/go/parser/parser_test.go

    					n /= tt.parseMultiplier
    				}
    				if size == "small" {
    					// Decrease the number of statements by 10, in order to check
    					// that we do not fail when under the limit. 10 is used to
    					// provide some wiggle room for cases where the surrounding
    					// scaffolding syntax adds some noise to the depth that changes
    					// on a per testcase basis.
    					n -= 10
    				}
    
    				pre, mid, post := split(tt.format)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  8. src/encoding/json/stream.go

    			return 0, err
    		}
    
    		n := scanp - dec.scanp
    		err = dec.refill()
    		scanp = dec.scanp + n
    	}
    	return scanp - dec.scanp, nil
    }
    
    func (dec *Decoder) refill() error {
    	// Make room to read more into the buffer.
    	// First slide down data already consumed.
    	if dec.scanp > 0 {
    		dec.scanned += int64(dec.scanp)
    		n := copy(dec.buf, dec.buf[dec.scanp:])
    		dec.buf = dec.buf[:n]
    		dec.scanp = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/HashCode.java

       * @param offset the start offset in the data
       * @param maxLength the maximum number of bytes to write
       * @return the number of bytes written to {@code dest}
       * @throws IndexOutOfBoundsException if there is not enough room in {@code dest}
       */
      @CanIgnoreReturnValue
      public int writeBytesTo(byte[] dest, int offset, int maxLength) {
        maxLength = Ints.min(maxLength, bits() / 8);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    `only, as it's asleep, I suppose it doesn't mind.'
    
      The table was a large one, but the three were all crowded
    together at one corner of it:  `No room!  No room!' they cried
    out when they saw Alice coming.  `There's PLENTY of room!' said
    Alice indignantly, and she sat down in a large arm-chair at one
    end of the table.
    
      `Have some wine,' the March Hare said in an encouraging tone.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
Back to top