Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 227 for Document (0.23 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

            addCssToHead(document);
            addJavascriptToHead(document);
    
            wrapH2InSectionTopic(document);
            addAnchorsForHeadings(document);
            document.body().prepend("<h1>Gradle Release Notes</h1>");
            addTOC(document);
            wrapContentInContainer(document);
    
            String rewritten = document.body().html();
            // Turn Gradle Jira issue numbers into issue links
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Apr 25 04:49:56 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java

                    final String id = crawlingInfoHelper.generateId(dataMap);
    
                    if (logger.isDebugEnabled()) {
                        logger.debug("Searching indexed document: {}", id);
                    }
                    final Map<String, Object> document = indexingHelper.getDocument(searchEngineClient, id,
                            new String[] { fessConfig.getIndexFieldId(), fessConfig.getIndexFieldLastModified(),
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    crawler.http.thread_pool.size=0
    crawler.document.max.site.length=100
    crawler.document.site.encoding=UTF-8
    crawler.document.unknown.hostname=unknown
    crawler.document.use.site.encoding.on.english=false
    crawler.document.append.data=true
    crawler.document.append.filename=false
    crawler.document.max.alphanum.term.size=20
    crawler.document.max.symbol.term.size=10
    crawler.document.duplicate.term.removed=false
    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)
  4. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

            final Map<String, Object> document = new HashMap<>();
            document.put("title", "");
            assertEquals("", viewHelper.getContentTitle(document));
    
            document.put("title", "111");
            assertEquals("111", viewHelper.getContentTitle(document));
    
            document.put("title", "aaa");
            assertEquals("<strong>aaa</strong>", viewHelper.getContentTitle(document));
    
            document.put("title", "AAA");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/RichReportScrapper.kt

            )
        }
    
    
    private
    fun Document.scrapeMessagesForSeverity_OLD(severity: String): List<String> =
    
        select("tr.severity-$severity").map { tr ->
            tr.select("td")[1]
                .select("span")
                .text()
                .substringBefore(" If you did this intentionally")
        }
    
    
    private
    fun Document.scrapeMessagesForSeverity(severity: String): List<ReportMessage> =
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Sep 21 16:02:23 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  6. docs/en/docs/how-to/nosql-databases-couchbase.md

    ## Get the user
    
    Now create a function that will:
    
    * Take a username.
    * Generate a document ID from it.
    * Get the document with that ID.
    * Put the contents of the document in a `UserInDB` model.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Jan 16 13:23:25 GMT 2024
    - 6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            Document document = getDocument(data);
            String value = transformer.getSingleNodeValue(document, "//BODY", node -> node);
            assertEquals("aaa bbb ccc", value);
    
            data = "<html><body> aaa <p> bbb <b>ccc</b> </p> </body></html>";
            document = getDocument(data);
            value = transformer.getSingleNodeValue(document, "//BODY", node -> node);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 38.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. true */
        String CRAWLER_DOCUMENT_APPEND_DATA = "crawler.document.append.data";
    
        /** The key of the configuration. e.g. false */
        String CRAWLER_DOCUMENT_APPEND_FILENAME = "crawler.document.append.filename";
    
        /** The key of the configuration. e.g. 20 */
    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)
  9. src/main/java/org/codelibs/core/xml/DomUtil.java

        }
    
        /**
         * {@link Document}を文字列に変換します。
         *
         * @param document
         *            ドキュメント。{@literal null}であってはいけません
         * @return 変換された文字列
         */
        public static String toString(final Document document) {
            assertArgumentNotNull("document", document);
    
            final StringBuilder buf = new StringBuilder(1000);
            appendElement(document.getDocumentElement(), buf);
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 10.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                        docList.addProcessingTime(processingTime);
                        if (logger.isDebugEnabled()) {
                            logger.debug("Added the document({}, {}ms). The number of a document cache is {} (size: {}).",
                                    MemoryUtil.byteCountToDisplaySize(contentSize), processingTime, docList.size(), docList.getContentSize());
                        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.2K bytes
    - Viewed (0)
Back to top