Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for minhash (0.19 sec)

  1. plugin.xml

    				<include name="dataformat/SparseBitSet-*" />
    				<include name="dataformat/stax-api-*" />
    				<include name="dataformat/xmlbeans-*" />
    				<include name="minhash/guava-*" />
    				<include name="minhash/failureaccess-*" />
    				<include name="minhash/listenablefuture-*" />
    			</fileset>
    		</delete>
    	</target>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 04 02:03:51 GMT 2024
    - 3.5K bytes
    - Viewed (1)
  2. src/main/resources/fess_indices/fess/doc.json

            "term_vector": "with_positions_offsets",
            "copy_to": ["content_minhash_bits"]
          },
          "content_minhash": {
            "type": "text",
            "index": false
          },
          "content_minhash_bits": {
            "type": "minhash",
            "bit_string": true,
            "minhash_analyzer": "minhash_analyzer"
          },
          "content_length": {
            "type": "long"
          },
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/_aws/fess/doc.json

            "analyzer": "standard_analyzer",
            "search_analyzer": "standard_search_analyzer",
            "term_vector": "with_positions_offsets"
          },
          "content_minhash": {
            "type": "keyword",
            "index": false
          },
          "content_minhash_bits": {
            "type": "keyword",
            "index": false
          },
          "content_length": {
            "type": "long"
          },
          "created": {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/_cloud/fess/doc.json

            "analyzer": "standard_analyzer",
            "search_analyzer": "standard_search_analyzer",
            "term_vector": "with_positions_offsets"
          },
          "content_minhash": {
            "type": "keyword",
            "index": false
          },
          "content_minhash_bits": {
            "type": "keyword",
            "index": false
          },
          "content_length": {
            "type": "long"
          },
          "created": {
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess.json

              "length" : 20
            },
            "alphanum_word_filter" : {
              "type" : "alphanum_word",
              "max_token_length" : 20
            },
            "minhash_filter" : {
              "type" : "minhash",
              "seed" : 1,
              "bit" : 2,
              "size" : 64
            },
            "synonym_filter" : {
              "type" : "synonym_graph",
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  6. src/main/resources/fess_config.properties

    index.field.timestamp=timestamp
    index.field.label=label
    index.field.mimetype=mimetype
    index.field.parent_id=parent_id
    index.field.important_content=important_content
    index.field.content=content
    index.field.content_minhash_bits=content_minhash_bits
    index.field.cache=cache
    index.field.digest=digest
    index.field.title=title
    index.field.host=host
    index.field.site=site
    index.field.content_length=content_length
    index.field.filetype=filetype
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. content */
        String INDEX_FIELD_CONTENT = "index.field.content";
    
        /** The key of the configuration. e.g. content_minhash_bits */
        String INDEX_FIELD_content_minhash_bits = "index.field.content_minhash_bits";
    
        /** The key of the configuration. e.g. cache */
        String INDEX_FIELD_CACHE = "index.field.cache";
    
        /** The key of the configuration. e.g. digest */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  8. src/main/resources/fess_indices/fess/pt/stopwords.txt

    ela
    entre
    depois
    sem
    mesmo
    aos
    seus
    quem
    nas
    me
    esse
    eles
    você
    essa
    num
    nem
    suas
    meu
    às
    minha
    numa
    pelos
    elas
    qual
    nós
    lhe
    deles
    essas
    esses
    pelas
    este
    dele
    tu
    te
    vocês
    vos
    lhes
    meus
    minhas
    teu
    tua
    teus
    tuas
    nosso
    nossa
    nossos
    nossas
    dela
    delas
    esta
    estes
    estas
    aquele
    aquela
    aqueles
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/hash/SipHashFunctionTest.java

          for (int j = 0; j < i; ++j) {
            msg[j] = (byte) j;
          }
          assertSip(msg, EXPECTED[i]);
        }
      }
    
      // This test data comes from "SipHash: a fast short-input PRF", "Appendix A: Test values".
      // It can be downloaded here: https://131002.net/siphash/siphash.pdf
      public void test15ByteStringFromSipHashPaper() {
        byte[] message =
            new byte[] {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Sun May 05 18:02:35 GMT 2019
    - 6.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/SipHashFunction.java

     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    /*
     * SipHash-c-d was designed by Jean-Philippe Aumasson and Daniel J. Bernstein and is described in
     * "SipHash: a fast short-input PRF" (available at https://131002.net/siphash/siphash.pdf).
     */
    
    package com.google.common.hash;
    
    import static com.google.common.base.Preconditions.checkArgument;
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 20 18:43:59 GMT 2021
    - 5.3K bytes
    - Viewed (0)
Back to top