Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 402 for Kashem (0.33 sec)

  1. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/IgnoringResourceHasherTest.groovy

            0 * delegate.hash(_)
    
            and:
            hash == null
        }
    
        def "delegate configuration is added to hasher"() {
            def configurationHasher = Mock(Hasher)
    
            when:
            hasher.appendConfigurationToHasher(configurationHasher)
    
            then:
            1 * delegate.appendConfigurationToHasher(configurationHasher)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/IgnoringResourceHasher.java

            this.resourceFilter = resourceFilter;
        }
    
        @Override
        public void appendConfigurationToHasher(Hasher hasher) {
            delegate.appendConfigurationToHasher(hasher);
            hasher.putString(getClass().getName());
            resourceFilter.appendConfigurationToHasher(hasher);
        }
    
        @Nullable
        @Override
        public HashCode hash(RegularFileSnapshotContext snapshotContext) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/impl/AbstractFingerprintingStrategy.java

            this.identifier = identifier;
            this.emptyFingerprint = new EmptyCurrentFileCollectionFingerprint(identifier);
            Hasher hasher = Hashing.newHasher();
            hasher.putString(getClass().getName());
            configurableNormalizer.appendConfigurationToHasher(hasher);
            this.configurationHash = hasher.hash();
        }
    
        @Override
        public String getIdentifier() {
            return identifier;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/IntegerValueSnapshot.java

     */
    
    package org.gradle.internal.snapshot.impl;
    
    import org.gradle.internal.hash.Hasher;
    
    public class IntegerValueSnapshot extends AbstractIsolatableScalarValue<Integer> {
        public IntegerValueSnapshot(Integer value) {
            super(value);
        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            hasher.putInt(getValue());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 968 bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/StringValueSnapshot.java

     */
    
    package org.gradle.internal.snapshot.impl;
    
    import org.gradle.internal.hash.Hasher;
    
    public class StringValueSnapshot extends AbstractIsolatableScalarValue<String> {
        public StringValueSnapshot(String value) {
            super(value);
        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            hasher.putString(getValue());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 967 bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/modulemap/ModuleMap.java

         */
        public List<String> getPublicHeaderPaths() {
            return publicHeaderPaths;
        }
    
        public HashCode getHashCode() {
            Hasher hasher = Hashing.newHasher();
            hasher.putString(moduleName);
            publicHeaderPaths.forEach(hasher::putString);
            return hasher.hash();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/HashCodeSnapshot.java

    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hasher;
    
    public class HashCodeSnapshot extends AbstractIsolatableScalarValue<HashCode> {
        public HashCodeSnapshot(HashCode value) {
            super(value);
        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            hasher.putHash(getValue());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1005 bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/AbstractToolingModelRequirements.java

        @Override
        public DisplayName getConfigurationCacheKeyDisplayName() {
            return Describables.of("the requested model");
        }
    
        @Override
        public void appendKeyTo(Hasher hasher) {
            hasher.putByte(getActionTypeId());
            hasher.putHash(payloadHashProvider.get());
        }
    
        /**
         * Each inheriting action must provide a unique value.
         */
        protected abstract byte getActionTypeId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 08 22:15:08 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/UnionResourceEntryFilter.java

        }
    
        @Override
        public void appendConfigurationToHasher(Hasher hasher) {
            hasher.putString(getClass().getName());
            filters.forEach(resourceEntryFilter -> resourceEntryFilter.appendConfigurationToHasher(hasher));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/ResourceFilter.java

                return false;
            }
    
            @Override
            public void appendConfigurationToHasher(Hasher hasher) {
                hasher.putString(getClass().getName());
            }
        };
    
        boolean shouldBeIgnored(Supplier<String[]> relativePathFactory);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top