Search Options

Results per page
Sort
Preferred Languages
Advance

Results 451 - 460 of 489 for hash2 (0.33 sec)

  1. tensorflow/c/c_api_function_test.cc

    #include "tensorflow/core/framework/common_shape_fns.h"
    #include "tensorflow/core/framework/function.h"
    #include "tensorflow/core/framework/function.pb.h"
    #include "tensorflow/core/framework/op_def.pb.h"
    #include "tensorflow/core/lib/hash/hash.h"
    #include "tensorflow/core/lib/strings/proto_serialization.h"
    #include "tensorflow/core/platform/logging.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/str_util.h"
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (1)
  2. android/guava/src/com/google/common/net/MediaType.java

    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.base.Preconditions.checkState;
    import static java.nio.charset.StandardCharsets.UTF_8;
    import static java.util.Objects.hash;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.base.Ascii;
    import com.google.common.base.CharMatcher;
    import com.google.common.base.Joiner;
    import com.google.common.base.Joiner.MapJoiner;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 48K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

             * @return the crawling depth
             */
            public int getDepth() {
                return depth;
            }
    
            @Override
            public int hashCode() {
                return Objects.hash(url);
            }
    
            @Override
            public boolean equals(final Object obj) {
                if (this == obj) {
                    return true;
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

            return name.equals(that.name) && parameterTypes.equals(that.parameterTypes);
          }
          return false;
        }
    
        @Override
        public int hashCode() {
          return Objects.hash(name, parameterTypes);
        }
      }
    
      /**
       * Verifies that {@code invokable} produces a {@link NullPointerException} or {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/reflect/TypeResolver.java

        private final TypeVariable<?> var;
    
        TypeVariableKey(TypeVariable<?> var) {
          this.var = checkNotNull(var);
        }
    
        @Override
        public int hashCode() {
          return Objects.hash(var.getGenericDeclaration(), var.getName());
        }
    
        @Override
        public boolean equals(@Nullable Object obj) {
          if (obj instanceof TypeVariableKey) {
            TypeVariableKey that = (TypeVariableKey) obj;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 14:03:14 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/base/Predicates.java

        }
    
        @Override
        public int hashCode() {
          // Pattern uses Object.hashCode, so we have to reach
          // inside to build a hashCode consistent with equals.
          return Objects.hash(pattern.pattern(), pattern.flags());
        }
    
        @Override
        public boolean equals(@Nullable Object obj) {
          if (obj instanceof ContainsPatternPredicate) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  7. docs/smb3-features/03-multi-channel-design.md

                channelId, localIf.getAddress(), remoteIf.getAddress());
        }
        
        private void performChannelBinding(ChannelInfo channel) throws IOException {
            // Calculate channel binding hash
            byte[] bindingInfo = calculateBindingInfo(channel);
            byte[] bindingHash = calculateBindingHash(bindingInfo);
            channel.setBindingHash(bindingHash);
            
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                this.highlightInfo = highlightInfo;
                return this;
            }
    
            /**
             * Sets the similar document hash for similarity search.
             *
             * @param similarDocHash the hash of the document to find similar documents to
             * @return this builder for method chaining
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

            // probably intended. So no point in using an equal-but-different factory argument.
            // We check twice to avoid confusion caused by accidental hash collision.
            equalArgs.set(i, shouldBeEqualArg);
          }
        }
        return equalArgs;
      }
    
      private static boolean hashCodeInsensitiveToArgReference(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_zh_TW.properties

    labels.urlExpr=條件
    labels.boostExpr=提升值表達式
    labels.confirmPassword=確認
    labels.crawler=爬蟲
    labels.crudMode=模式
    labels.errorCountMax=最大錯誤數
    labels.errorCountMin=最小錯誤數
    labels.facet=分面
    labels.geo=地理
    labels.groups=組
    labels.hash=哈希
    labels.kuromojiFile=Kuromoji檔案
    labels.maxSize=最大大小
    labels.order=順序
    labels.purgeSuggestSearchLogDay=刪除以前的建議資訊
    labels.q=查詢
    labels.roles=角色
    labels.suggestSearchLog=建議搜尋日誌
    labels.suggestWord=建議詞
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
Back to top