Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 62 for 43000 (0.04 seconds)

  1. src/test/java/org/codelibs/fess/it/CrawlTestBase.java

            count = 0;
            isRunning = true;
            sleepTime = 100; // Reset to 100ms for termination wait
    
            // Wait until the crawler terminates (with exponential backoff)
            while (count < 3000 && isRunning) {
                ThreadUtil.sleep(sleepTime);
                count++;
                final Map<String, Object> scheduler = getSchedulerItem(namePrefix);
                assertTrue(scheduler.containsKey("running"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  2. android/guava-tests/benchmark/com/google/common/base/WhitespaceMatcherBenchmark.java

              + "\u202f\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0020\u0000\u0000\u0000\u0000"
              + "\u0000\u0000\u0000\u0000\u0000\u0000\u3000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"
              + "\u0000\u0000\u0000\u0085\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009"
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue May 13 18:46:00 GMT 2025
    - 3.9K bytes
    - Click Count (0)
  3. guava-tests/benchmark/com/google/common/base/WhitespaceMatcherBenchmark.java

              + "\u202f\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0020\u0000\u0000\u0000\u0000"
              + "\u0000\u0000\u0000\u0000\u0000\u0000\u3000\u0000\u0000\u0000\u0000\u0000\u0000\u0000"
              + "\u0000\u0000\u0000\u0085\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009"
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue May 13 18:46:00 GMT 2025
    - 3.9K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

            private LlmChatRequest lastChatRequest;
            private StreamChatCapture streamChatCapture;
            private int testIntentHistoryMaxMessages = 6;
            private int testIntentHistoryMaxChars = 3000;
            private int testHistoryMaxChars = 4000;
            private int testHistoryAssistantMaxChars = 500;
            private int testHistoryAssistantSummaryMaxChars = 500;
    
            void setTestIntentDetectionPrompt(final String prompt) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
  5. src/main/webapp/WEB-INF/view/chat/chat.jsp

    						<div class="input-wrapper">
    							<div class="input-group">
    								<textarea id="chatInput" class="form-control"
    									placeholder="<la:message key="labels.chat_input_placeholder" />"
    									rows="1" maxlength="4000"
    									aria-label="<la:message key="labels.chat_input_placeholder" />"></textarea>
    								<button type="button" id="sendBtn" class="btn btn-primary" aria-label="<la:message key="labels.chat_send" />">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

            try {
                return Integer.parseInt(fessConfig.getOrDefault("rag.chat.message.max.length", "4000"));
            } catch (final NumberFormatException e) {
                logger.warn("Invalid rag.chat.message.max.length config, using default 4000");
                return 4000;
            }
        }
    
        /**
         * Parses and validates field filter parameters from the request.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

         * Each LlmClient implementation should override to define defaults appropriate
         * for its target model. The default returns 4000 for backward compatibility.
         *
         * @return the maximum history characters
         */
        protected int getHistoryMaxChars() {
            return 4000;
        }
    
        /**
         * Gets the maximum number of history messages for intent detection.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  8. okhttp/src/androidMain/kotlin/okhttp3/internal/platform/android/AndroidLog.kt

      }
    
      override fun flush() {
      }
    
      override fun close() {
      }
    }
    
    @SuppressSignatureCheck
    object AndroidLog {
      private const val MAX_LOG_LENGTH = 4000
    
      // Keep references to loggers to prevent their configuration from being GC'd.
      private val configuredLoggers = CopyOnWriteArraySet<Logger>()
    
      private val knownLoggers =
        LinkedHashMap<String, String>()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Oct 25 11:16:17 GMT 2025
    - 4.3K bytes
    - Click Count (0)
  9. src/main/webapp/js/search.js

      var $favorites = $(".favorite", $result);
      var $searchButton = $("#searchButton");
      var contextPath = $("#contextPath").val();
      var IMG_LOADING_DELAY = 200;
      var IMG_LOADING_MAX = 0;
      var BUTTON_DISABLE_DURATION = 3000;
      var AJAX_TIMEOUT = 10000;
      var FADE_DURATION = 1000;
    
      var SUGGESTOR_CONFIG = {
        ajaxinfo: {
          url: contextPath + "/api/v1/suggest-words",
          fn: ["_default", "content", "title"],
          num: 10,
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  10. src/main/webapp/js/admin/plugins/form-validator/sweden.js

    e=RegExp.$1,f=a.formUtils.parseDateInt(RegExp.$2),g=a.formUtils.parseDateInt(RegExp.$3);var i=parseInt(RegExp.$4.substring(2,3))%2===0?"female":"male";d.trigger("genderDerived",[i]),b.ssnGender=i;var j=[31,28,31,30,31,30,31,31,30,31,30,31];if((e%400===0||e%4===0&&e%100!==0)&&(j[1]=29),f<1||f>12||g<1||g>j[f-1])return!1;c=c.substring(2,c.length);for(var k="",l=0;l<c.length;l++)k+=((l+1)%2+1)*c.substring(l,l+1);var m=0;for(l=0;l<k.length;l++)m+=parseInt(k.substring(l,l+1),10);return m%10===0},error...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 6.4K bytes
    - Click Count (1)
Back to Top