Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for LongValueSnapshot (0.23 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/LongValueSnapshot.java

     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl;
    
    import org.gradle.internal.hash.Hasher;
    
    public class LongValueSnapshot extends AbstractIsolatableScalarValue<Long> {
        public LongValueSnapshot(Long value) {
            super(value);
        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            hasher.putLong(getValue());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 957 bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/SnapshotSerializerTest.groovy

            integer(Integer.MAX_VALUE)              | _
            integer(Integer.MIN_VALUE)              | _
            new LongValueSnapshot(123L)             | _
            new LongValueSnapshot(0L)               | _
            new LongValueSnapshot(Long.MAX_VALUE)   | _
            new LongValueSnapshot(Long.MIN_VALUE)   | _
            new ShortValueSnapshot(123 as short)    | _
            new ShortValueSnapshot(0 as short)      | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 20:22:01 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/DefaultValueSnapshotter.java

            public ValueSnapshot integerValue(Integer value) {
                return new IntegerValueSnapshot(value);
            }
    
            @Override
            public ValueSnapshot longValue(Long value) {
                return new LongValueSnapshot(value);
            }
    
            @Override
            public ValueSnapshot shortValue(Short value) {
                return new ShortValueSnapshot(value);
            }
    
            @Override
    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<?> integerValue(Integer value) {
                return new IntegerValueSnapshot(value);
            }
    
            @Override
            public Isolatable<?> longValue(Long value) {
                return new LongValueSnapshot(value);
            }
    
            @Override
            public Isolatable<?> shortValue(Short value) {
                return new ShortValueSnapshot(value);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top