Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for integerValue (0.21 sec)

  1. 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)
  2. 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