Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for hash_table (0.29 sec)

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

     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl;
    
    import com.google.common.collect.ImmutableSet;
    import org.gradle.internal.hash.Hashable;
    import org.gradle.internal.hash.Hasher;
    
    class AbstractSetSnapshot<T extends Hashable> implements Hashable {
        protected final ImmutableSet<T> elements;
    
        public AbstractSetSnapshot(ImmutableSet<T> elements) {
            this.elements = elements;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/AntJacocoCheck.java

                }});
            }
        }
    
        private String getViolations(GroovyObjectSupport antBuilder) {
            Object project = antBuilder.getProperty("project");
            Hashtable<?, ?> properties = JavaMethod.of(project, Hashtable.class, "getProperties").invoke(project, new Object[0]);
            return (String) properties.get(VIOLATIONS_ANT_PROPERTY);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/Hasher.java

         */
        void putString(CharSequence value);
    
        /**
         * Feed a hash code into the hasher.
         */
        void putHash(HashCode hashCode);
    
        /**
         * Puts a hashable value into the hasher.
         */
        void put(Hashable hashable);
    
        /**
         * Feed a {@code null} value into the hasher.
         */
        void putNull();
    
        /**
         * Returns the combined hash.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 11:14:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/Hashing.java

            return DEFAULT.hashFile(file);
        }
    
        /**
         * Hash the given {@code hashable} instance with the default hash function.
         */
        public static HashCode hashHashable(Hashable hashable) {
            Hasher hasher = newHasher();
            hasher.put(hashable);
            return hasher.hash();
        }
    
        /**
         * The default hashing function.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:30 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ValueSnapshot.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot;
    
    import org.gradle.internal.hash.Hashable;
    
    import javax.annotation.Nullable;
    
    /**
     * An immutable snapshot of the state of some Java object or object graph.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/fingerprint/FileSystemLocationFingerprint.java

     * limitations under the License.
     */
    
    package org.gradle.internal.fingerprint;
    
    import org.gradle.internal.file.FileType;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.hash.Hashable;
    import org.gradle.internal.hash.Hashing;
    
    /**
     * An immutable fingerprint of some aspects of a file's metadata and content.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/CompactHashSet.java

       * part of the smeared hash of the element not covered by the hashtable mask, whereas the low bits
       * are the "next" pointer (pointing to the next entry in the bucket chain), which will always be
       * less than or equal to the hashtable mask.
       *
       * <pre>
       * hash  = aaaaaaaa
       * mask  = 00000fff
       * next  = 00000bbb
       * entry = aaaaabbb
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/isolation/Isolatable.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.isolation;
    
    import org.gradle.internal.hash.Hashable;
    import org.gradle.internal.snapshot.ValueSnapshot;
    
    import javax.annotation.Nullable;
    
    /**
     * Isolatable objects can return an isolated instance of the given type T from which this object was created.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/testers/MapMergeTester.java

    import com.google.common.collect.testing.Helpers;
    import com.google.common.collect.testing.features.CollectionSize;
    import com.google.common.collect.testing.features.MapFeature;
    import java.lang.reflect.Method;
    import java.util.Hashtable;
    import java.util.Map;
    import junit.framework.AssertionFailedError;
    import org.junit.Ignore;
    
    /**
     * A generic JUnit test which tests {@link Map#merge}. Can't be invoked directly; please see {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_op_interfaces.h

               device == rhs.device && op == rhs.op;
      }
    
      // Make ResourceHandle hashable.
      friend ::llvm::hash_code hash_value(const ResourceHandle& resource_handle);
    
      StringRef container;
      StringRef name;
      StringRef device;
      Operation* op = nullptr;
    };
    
    // Make ResourceHandle hashable.
    inline ::llvm::hash_code hash_value(const ResourceHandle& resource_handle) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 03 19:26:14 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top