Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,634 for jasper (0.1 sec)

  1. android/guava/src/com/google/common/hash/HashingInputStream.java

        super(checkNotNull(in));
        this.hasher = checkNotNull(hashFunction.newHasher());
      }
    
      /**
       * Reads the next byte of data from the underlying input stream and updates the hasher with the
       * byte read.
       */
      @Override
      @CanIgnoreReturnValue
      public int read() throws IOException {
        int b = in.read();
        if (b != -1) {
          hasher.putByte((byte) b);
        }
        return b;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AttributeDefinitionSnapshot.java

            super(value);
            this.classLoaderHasher = classLoaderHasher;
        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            hasher.putString(getValue().getName());
            Class<?> type = getValue().getType();
            ImplementationSnapshot.of(type, classLoaderHasher).appendToHasher(hasher);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K 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. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/SplitResourceSnapshotterCacheService.java

            if (globalCacheLocations.isInsideGlobalCache(snapshot.getAbsolutePath())) {
                return globalCache.hashFile(snapshot, hasher, configurationHash);
            } else {
                return localCache.hashFile(snapshot, hasher, configurationHash);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 06 18:44:49 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractArraySnapshot.java

        }
    
        public List<T> getElements() {
            return elements;
        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            hasher.putString("Array");
            hasher.putInt(elements.size());
            for (T element : elements) {
                element.appendToHasher(hasher);
            }
        }
    
        @Override
        public boolean equals(Object obj) {
            if (obj == this) {
                return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractListSnapshot.java

        }
    
        public List<T> getElements() {
            return elements;
        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            hasher.putString("List");
            hasher.putInt(elements.size());
            for (T element : elements) {
                element.appendToHasher(hasher);
            }
        }
    
        @Override
        public boolean equals(Object obj) {
            if (obj == this) {
                return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractSetSnapshot.java

        public ImmutableSet<T> getElements() {
            return elements;
        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            hasher.putString("Set");
            hasher.putInt(elements.size());
            for (T element : elements) {
                element.appendToHasher(hasher);
            }
        }
    
        @Override
        public boolean equals(Object obj) {
            if (obj == this) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/ClassImplementationSnapshot.java

            super(classIdentifier);
            this.classLoaderHash = classLoaderHash;
        }
    
        @Override
        public void appendToHasher(Hasher hasher) {
            hasher.putString(ClassImplementationSnapshot.class.getName());
            hasher.putString(classIdentifier);
            hasher.putHash(classLoaderHash);
        }
    
        @Override
        protected boolean isSameSnapshot(@Nullable Object o) {
            return equals(o);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformFactory.java

        /**
         * Updates jar/directory content hash to account for the transform produced by this factory.
         *
         * @param hasher the hasher to modify
         */
        void applyConfigurationTo(Hasher hasher);
    
        /**
         * Returns the transformation to be applied to the given jar/directory.
         *
         * @param file the jar/directory to transform
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top