Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for integerValue (0.17 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            options[8].name == "integerSetValue"
            options[8].description == "Descr integerSetValue"
            options[8].argumentType == List
    
            options[9].name == "integerValue"
            options[9].description == "Descr integerValue"
            options[9].argumentType == String
    
            options[10].name == "regularFileValue"
            options[10].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)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractValueProcessor.java

                return visitor.fileValue((File) value);
            }
            if (value instanceof Number) {
                if (value instanceof Integer) {
                    return visitor.integerValue((Integer) value);
                }
                if (value instanceof Long) {
                    return visitor.longValue((Long) value);
                }
                if (value instanceof Short) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:08:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultValueSnapshotter.java

            public ValueSnapshot booleanValue(Boolean value) {
                return value.equals(Boolean.TRUE) ? BooleanValueSnapshot.TRUE : BooleanValueSnapshot.FALSE;
            }
    
            @Override
            public ValueSnapshot integerValue(Integer value) {
                return new IntegerValueSnapshot(value);
            }
    
            @Override
            public ValueSnapshot longValue(Long value) {
                return new LongValueSnapshot(value);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultIsolatableFactory.java

            public Isolatable<?> booleanValue(Boolean value) {
                return value.equals(Boolean.TRUE) ? BooleanValueSnapshot.TRUE : BooleanValueSnapshot.FALSE;
            }
    
            @Override
            public Isolatable<?> integerValue(Integer value) {
                return new IntegerValueSnapshot(value);
            }
    
            @Override
            public Isolatable<?> longValue(Long value) {
                return new LongValueSnapshot(value);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/IsolatableSerializerRegistry.java

        private static final byte STRING_VALUE = (byte) 0;
        private static final byte BOOLEAN_VALUE = (byte) 1;
        private static final byte SHORT_VALUE = (byte) 2;
        private static final byte INTEGER_VALUE = (byte) 3;
        private static final byte LONG_VALUE = (byte) 4;
        private static final byte ATTRIBUTE_VALUE = (byte) 5;
        private static final byte MANAGED_VALUE = (byte) 6;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top