Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Document (0.12 sec)

  1. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

        /** List of rewrite rules for document settings */
        protected final List<UnaryOperator<String>> docSettingRewriteRuleList = new ArrayList<>();
    
        /** List of rewrite rules for document mappings */
        protected final List<UnaryOperator<String>> docMappingRewriteRuleList = new ArrayList<>();
    
        /** Whether to use pipelines for document processing */
        protected boolean usePipeline = false;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SystemHelper.java

         */
        public void setForceStop(final boolean b) {
            forceStop.set(b);
        }
    
        /**
         * Generates a document ID.
         *
         * @param map A map of data for the document.
         * @return A unique document ID.
         */
        public String generateDocId(final Map<String, Object> map) {
            return UUID.randomUUID().toString().replace("-", StringUtil.EMPTY);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  3. docs/recipes.md

    Download a file, print its headers, and print its response body as a string.
    
    The `string()` method on response body is convenient and efficient for small documents. But if the response body is large (greater than 1 MiB), avoid `string()` because it will load the entire document into memory. In that case, prefer to process the body as a stream.
    
    === ":material-language-kotlin: Kotlin"
        ```kotlin
          private val client = OkHttpClient()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 47.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/BloomFilter.java

          // Strategy.ordinal()).
          strategyOrdinal = din.readByte();
          numHashFunctions = toUnsignedInt(din.readByte());
          dataLength = din.readInt();
    
          /*
           * We document in BloomFilterStrategies that we must not change the ordering, and we have a
           * test that verifies that we don't do so.
           */
          @SuppressWarnings("EnumOrdinal")
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 26.9K bytes
    - Viewed (0)
Back to top