Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 454 for small8 (0.17 sec)

  1. src/encoding/json/bench_test.go

    		}
    	}
    }
    
    func BenchmarkMarshalBytes(b *testing.B) {
    	b.ReportAllocs()
    	// 32 fits within encodeState.scratch.
    	b.Run("32", benchMarshalBytes(32))
    	// 256 doesn't fit in encodeState.scratch, but is small enough to
    	// allocate and avoid the slower base64.NewEncoder.
    	b.Run("256", benchMarshalBytes(256))
    	// 4096 is large enough that we want to avoid allocating for it.
    	b.Run("4096", benchMarshalBytes(4096))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:00:17 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java

        // ===================================================================================
        //                                                                        Small Helper
        //                                                                        ============
        protected void verifyCrudMode(final int crudMode, final int expectedMode) {
            if (crudMode != expectedMode) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/go/token/position.go

    // to the respective file set before the file implied by q.
    type Pos int
    
    // The zero value for [Pos] is NoPos; there is no file and line information
    // associated with it, and NoPos.IsValid() is false. NoPos is always
    // smaller than any other [Pos] value. The corresponding [Position] value
    // for NoPos is the zero value for [Position].
    const NoPos Pos = 0
    
    // IsValid reports whether the position is valid.
    func (p Pos) IsValid() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       SHORT is always discriminable from zero time, and always allows enough time for the small
     *       amounts of computation (creating a thread, calling a few methods, etc) needed to reach a
     *       timeout point. Similarly, a SMALL is always discriminable as larger than SHORT and smaller
     *       than MEDIUM. And so on. These constants are set to conservative values, but even so, if
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/math/LongMath.java

       * href="http://mathworld.wolfram.com/PrimeNumber.html">prime number</a>: an integer <i>greater
       * than one</i> that cannot be factored into a product of <i>smaller</i> positive integers.
       * Returns {@code false} if {@code n} is zero, one, or a composite number (one which <i>can</i> be
       * factored into smaller positive integers).
       *
       * <p>To test larger numbers, use {@link BigInteger#isProbablePrime}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  6. src/runtime/syscall_windows.go

    		p.parts = oldParts
    
    		// The Go ABI aligns arguments.
    		p.dstStackSize = alignUp(p.dstStackSize, uintptr(t.Align_))
    
    		// Copy just the size of the argument. Note that this
    		// could be a small by-value struct, but C and Go
    		// struct layouts are compatible, so we can copy these
    		// directly, too.
    		part := abiPart{
    			kind:           abiPartStack,
    			srcStackOffset: p.srcStackSize,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. cluster/gce/config-test.sh

    # Useful for scheduling heapster in large clusters with nodes of small size.
    HEAPSTER_MACHINE_TYPE=${HEAPSTER_MACHINE_TYPE:-}
    
    # Optional: Additional nodes would be created if their type and number is specified.
    # NUM_NODES would be lowered respectively.
    # Useful for running cluster-level addons that needs more resources than would fit
    # on small nodes, like network plugins.
    NUM_ADDITIONAL_NODES=${NUM_ADDITIONAL_NODES:-}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  8. src/cmd/internal/archive/archive.go

    	}
    	if n < int64(len(r.tmp)) {
    		// Since the data is so small, a just reading from the buffered
    		// reader is better than flushing the buffer and seeking.
    		r.readFull(r.tmp[:n])
    	} else if n <= int64(r.b.Buffered()) {
    		// Even though the data is not small, it has already been read.
    		// Advance the buffer instead of seeking.
    		for n > int64(len(r.tmp)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       SHORT is always discriminable from zero time, and always allows enough time for the small
     *       amounts of computation (creating a thread, calling a few methods, etc) needed to reach a
     *       timeout point. Similarly, a SMALL is always discriminable as larger than SHORT and smaller
     *       than MEDIUM. And so on. These constants are set to conservative values, but even so, if
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java

                return entity;
            });
        }
    
        // ===================================================================================
        //                                                                        Small Helper
        //                                                                        ============
        protected void verifyCrudMode(final int crudMode, final int expectedMode) {
            if (crudMode != expectedMode) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top