Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 94 for hash_table (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_freeze_assets.mlir

        // CHECK: [[CST:%.+]] = "tf.Const"() <{value = dense<"assets/table.txt"> : tensor<1x!tf_type.string>}> : () -> tensor<1x!tf_type.string>
        // CHECK: [[HASHTABLE:%.+]] = "tf.HashTableV2"()
        // CHECK: "tf.InitializeTableFromTextFileV2"([[HASHTABLE]], [[CST]])
        func.return
      }
    }
    
    // -----
    
    module attributes {tf_saved_model.semantics} {
    
      // Test case: Sanity check handling of non-bound inputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/CompactHashing.java

        }
      }
    
      /**
       * Returns a larger power of 2 hashtable size given the current mask.
       *
       * <p>For hashtable sizes less than or equal to 32, the returned power of 2 is 4x the current
       * hashtable size to reduce expensive rehashing. Otherwise the returned power of 2 is 2x the
       * current hashtable size.
       */
      static int newCapacity(int mask) {
        return ((mask < 32) ? 4 : 2) * (mask + 1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 02 21:41:22 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractMapSnapshot.java

     */
    
    package org.gradle.internal.snapshot.impl;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.internal.hash.Hashable;
    import org.gradle.internal.hash.Hasher;
    
    class AbstractMapSnapshot<T extends Hashable> implements Hashable {
        protected final ImmutableList<MapEntrySnapshot<T>> entries;
    
        public AbstractMapSnapshot(ImmutableList<MapEntrySnapshot<T>> entries) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/naming/InitialContextUtil.java

     */
    package org.codelibs.core.naming;
    
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty;
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.util.Hashtable;
    
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    
    import org.codelibs.core.exception.NamingRuntimeException;
    
    /**
     * {@link javax.naming.InitialContext 初期コンテキスト}を扱うためのユーティリティ・クラスです。
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

        //                                                                      ==============
        protected void prepareElementsHash() {
            elementsText = new Hashtable<>();
            elementsFile = new Hashtable<>();
            elementsAll = new Hashtable<>();
        }
    
        protected List<FileItem> parseRequest(final HttpServletRequest request, final ServletFileUpload upload) throws FileUploadException {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.ldap;
    
    import java.util.ArrayList;
    import java.util.Hashtable;
    import java.util.List;
    import java.util.concurrent.atomic.AtomicBoolean;
    
    import org.codelibs.fess.helper.SystemHelper;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractManagedValueSnapshot.java

     * limitations under the License.
     */
    
    package org.gradle.internal.snapshot.impl;
    
    import org.gradle.internal.hash.Hashable;
    import org.gradle.internal.hash.Hasher;
    
    class AbstractManagedValueSnapshot<T extends Hashable> implements Hashable {
        protected final T state;
    
        public AbstractManagedValueSnapshot(T state) {
            this.state = state;
        }
    
        public T getState() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/ImplementationSnapshotTest.groovy

            expect:
            actionLambdaSnapshot != consumerLambdaSnapshot
            hash(actionLambdaSnapshot) != hash(consumerLambdaSnapshot)
        }
    
        private HashCode hash(Hashable hashable) {
            def hasher = Hashing.newHasher()
            hasher.put(hashable)
            return hasher.hash()
        }
    
        private ImplementationSnapshot createLambdaSnapshot(lambda) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 23:46:07 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractArraySnapshot.java

     */
    
    package org.gradle.internal.snapshot.impl;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.internal.hash.Hashable;
    import org.gradle.internal.hash.Hasher;
    
    import java.util.List;
    
    class AbstractArraySnapshot<T extends Hashable> implements Hashable {
        protected final ImmutableList<T> elements;
    
        public AbstractArraySnapshot(ImmutableList<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)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/snapshot/impl/AbstractListSnapshot.java

     */
    
    package org.gradle.internal.snapshot.impl;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.internal.hash.Hashable;
    import org.gradle.internal.hash.Hasher;
    
    import java.util.List;
    
    class AbstractListSnapshot<T extends Hashable> implements Hashable {
        protected final ImmutableList<T> elements;
    
        public AbstractListSnapshot(ImmutableList<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)
Back to top