Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 950 for integers (0.23 sec)

  1. src/image/gif/writer_test.go

    	// first (and in this case only) frame's width and height.
    	//
    	// A Config only specifies a width and height (two integers) while an
    	// image.Image's Bounds method returns an image.Rectangle (four integers).
    	// For a gif.GIF, the overall bounds' top-left point is always implicitly
    	// (0, 0), and any frame whose bounds have a negative X or Y will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            @Option(description = "Descr integerValue")
            final Property<Integer> integerValue
    
            @Option(description = "Descr integerListValue")
            final ListProperty<Integer> integerListValue
    
            @Option(description = "Descr integerSetValue")
            final SetProperty<Integer> integerSetValue
    
            @Option(description = "Descr regularFileValue")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Comparators.java

       * reached, but not the other, the shorter iterable is considered to be less than the longer one.
       * For example, a lexicographical natural ordering over integers considers {@code [] < [1] < [1,
       * 1] < [1, 2] < [2]}.
       *
       * <p>Note that {@code Collections.reverseOrder(lexicographical(comparator))} is not equivalent to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. pkg/apis/batch/types.go

    	// must not contain duplicates. At least one element is required.
    	// The indexes are represented as intervals separated by commas.
    	// The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen.
    	// The number are listed in represented by the first and last element of the series,
    	// separated by a hyphen.
    	// For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/expand_calls.go

    	regSize int64
    	sp      *Value
    	typs    *Types
    
    	firstOp    Op          // for 64-bit integers on 32-bit machines, first word in memory
    	secondOp   Op          // for 64-bit integers on 32-bit machines, second word in memory
    	firstType  *types.Type // first half type, for Int64
    	secondType *types.Type // second half type, for Int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         *     <dt>indy
         *     <dd>Use the invokedynamic bytecode instruction. Requires JDK7 or higher and Groovy 2.0 or higher. Disabled by default.
         *     <dt>int
         *     <dd>Optimize operations on primitive types (e.g. integers). Enabled by default.
         *     <dt>all
         *     <dd>Enable or disable all optimizations. Note that some optimizations might be mutually exclusive.
         * </dl>
         */
        @Nullable @Optional @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/types.go

    	// must not contain duplicates. At least one element is required.
    	// The indexes are represented as intervals separated by commas.
    	// The intervals can be a decimal integer or a pair of decimal integers separated by a hyphen.
    	// The number are listed in represented by the first and last element of the series,
    	// separated by a hyphen.
    	// For example, if the completed indexes are 1, 3, 4, 5 and 7, they are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/version/version_test.go

    	tests := []string{
    		// "MUST take the form X.Y.Z"
    		"1",
    		"1.2",
    		"1.2.3.4",
    		".2.3",
    		"1..3",
    		"1.2.",
    		"",
    		"..",
    		// "where X, Y, and Z are non-negative integers"
    		"-1.2.3",
    		"1.-2.3",
    		"1.2.-3",
    		"1a.2.3",
    		"1.2a.3",
    		"1.2.3a",
    		"a1.2.3",
    		"a.b.c",
    		"1 .2.3",
    		"1. 2.3",
    		// "and MUST NOT contain leading zeroes."
    		"01.2.3",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Comparators.java

       * reached, but not the other, the shorter iterable is considered to be less than the longer one.
       * For example, a lexicographical natural ordering over integers considers {@code [] < [1] < [1,
       * 1] < [1, 2] < [2]}.
       *
       * <p>Note that {@code Collections.reverseOrder(lexicographical(comparator))} is not equivalent to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 08:42:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

     *
     * @author mike nonemacher
     */
    
    public class PopulatedCachesTest extends TestCase {
      // we use integers as keys; make sure the range covers some values that ARE cached by
      // Integer.valueOf(int), and some that are not cached. (127 is the highest cached value.)
      static final int WARMUP_MIN = 120;
      static final int WARMUP_MAX = 135;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top