Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 491 - 500 of 764 for 1020 (0.3 seconds)

  1. src/test/java/jcifs/smb/SmbSessionImplSecurityTest.java

        public void testNoConcurrentModificationException() throws Exception {
            // Given
            SmbSessionImpl session = new SmbSessionImpl(mockContext, "testhost", "testdomain", mockTransport);
    
            int iterations = 1000;
            ExecutorService executor = Executors.newFixedThreadPool(2);
            CountDownLatch endLatch = new CountDownLatch(2);
            AtomicInteger successCount = new AtomicInteger(0);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 11K bytes
    - Click Count (0)
  2. src/main/webapp/js/search.js

      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,
          lang: $("#langSearchOption").val()
        },
    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)
  3. docs/uk/docs/how-to/separate-openapi-schemas.md

    У такому разі ви можете вимкнути цю можливість у **FastAPI** параметром `separate_input_output_schemas=False`.
    
    /// info | Інформація
    
    Підтримку `separate_input_output_schemas` додано у FastAPI `0.102.0`. 🤓
    
    ///
    
    {* ../../docs_src/separate_openapi_schemas/tutorial002_py310.py hl[10] *}
    
    ### Одна схема для моделей введення та виведення в документації { #same-schema-for-input-and-output-models-in-docs }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:43:14 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

        protected String loggerName = "fess.log.crawler.stats";
    
        /** Maximum number of statistics objects to cache. */
        protected long maxCacheSize = 1000;
    
        /** Time in milliseconds after which cache entries expire after write. */
        protected long cacheExpireAfterWrite = 10 * 60 * 1000L;
    
        /** Cache for storing statistics objects keyed by crawler object identifiers. */
        protected LoadingCache<String, StatsObject> statsCache;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 17.4K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/exception/WebApiExceptionTest.java

        @Test
        public void test_exceptionWithLongMessage() {
            // Test with very long message
            int statusCode = 413;
            StringBuilder longMessage = new StringBuilder();
            for (int i = 0; i < 1000; i++) {
                longMessage.append("Very long error message content. ");
            }
            String message = longMessage.toString();
    
            WebApiException exception = new WebApiException(statusCode, message);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java

        }
    
        @Test
        public void test_constructor_withLongMessage() {
            // Test constructor with long message
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < 1000; i++) {
                sb.append("Long message content ");
            }
            String longMessage = sb.toString();
    
            CommandExecutionException exception = new CommandExecutionException(longMessage);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/job/JobExecutorTest.java

        }
    
        @Test
        public void test_execute_longScript() {
            // Test with long script
            StringBuilder longScript = new StringBuilder();
            for (int i = 0; i < 1000; i++) {
                longScript.append("line ").append(i).append("\n");
            }
            Object result = jobExecutor.execute("test", longScript.toString());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/how-to/separate-openapi-schemas.md

    不過,在某些情況下,你可能會希望輸入與輸出使用相同的結構描述。
    
    最常見的情境是:你已經有一些自動產生的用戶端程式碼/SDK,目前還不想全部更新;也許之後會做,但不是現在。
    
    在這種情況下,你可以在 FastAPI 中透過參數 `separate_input_output_schemas=False` 停用這個功能。
    
    /// info
    
    自 FastAPI `0.102.0` 起新增 `separate_input_output_schemas` 的支援。🤓
    
    ///
    
    {* ../../docs_src/separate_openapi_schemas/tutorial002_py310.py hl[10] *}
    
    ### 文件中輸入與輸出使用相同結構描述的模型 { #same-schema-for-input-and-output-models-in-docs }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:15:26 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  9. docs/zh/docs/how-to/separate-openapi-schemas.md

    最常见的情形是:你已经有一些自动生成的客户端代码/SDK,你暂时不想更新所有这些自动生成的客户端代码/SDK(也许未来会,但不是现在)。
    
    这种情况下,你可以在 **FastAPI** 中通过参数 `separate_input_output_schemas=False` 禁用该特性。
    
    /// info | 信息
    
    对 `separate_input_output_schemas` 的支持是在 FastAPI `0.102.0` 中添加的。🤓
    
    ///
    
    {* ../../docs_src/separate_openapi_schemas/tutorial002_py310.py hl[10] *}
    
    ### 文档中输入/输出使用同一 Schema 的模型 { #same-schema-for-input-and-output-models-in-docs }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 13:37:57 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  10. cmd/metrics-v3-cache.go

    	if ioStats.WriteIOs > 0 {
    		m.writesAwait = float64(ioStats.WriteTicks) / float64(ioStats.WriteIOs)
    	}
    
    	// TotalTicks is in milliseconds
    	m.percUtil = float64(ioStats.TotalTicks) * 100 / (durationSecs * 1000)
    
    	return m
    }
    
    func newDriveMetricsCache() *cachevalue.Cache[storageMetrics] {
    	var (
    		// prevDriveIOStats is used to calculate "per second"
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 8.1K bytes
    - Click Count (0)
Back to Top