Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 471 - 480 of 621 for task0 (0.37 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. dbflute_fess/dfprop/replaceSchemaMap.dfprop

        #
        #; isLoggingReplaceSql = true
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isErrorSqlContinue: (NotRequired - Default false)
        #  Does it continue the task when error SQL exists?
        #
        #; isErrorSqlContinue = false
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o sqlFileEncoding: (NotRequired - Default 'UTF-8')
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.3K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/advanced/advanced-dependencies.md

    這些範例刻意保持簡單,但展示了整個機制如何運作。
    
    在關於安全性的章節裡,有一些工具函式也是用同樣的方式實作。
    
    如果你理解了以上內容,你其實已經知道那些安全性工具在底層是如何運作的。
    
    ///
    
    ## 同時含有 `yield`、`HTTPException`、`except` 與背景任務的相依 { #dependencies-with-yield-httpexception-except-and-background-tasks }
    
    /// warning | 警告
    
    你很可能不需要這些技術細節。
    
    這些細節主要在於:如果你有一個 0.121.0 之前的 FastAPI 應用,並且在使用含有 `yield` 的相依時遇到問題,會對你有幫助。
    
    ///
    
    含有 `yield` 的相依隨著時間演進,以涵蓋不同的使用情境並修正一些問題。以下是變更摘要。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 8.4K bytes
    - Click Count (0)
  3. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

        private fun BaseGradleBuildType.getGradleTasks(): String {
            val runnerStep = this.steps.items.find { it.name == "GRADLE_RUNNER" } as GradleBuildStep
            return runnerStep.tasks!!
        }
    
        private fun BaseGradleBuildType.getGradleParams(): String {
            val runnerStep = this.steps.items.find { it.name == "GRADLE_RUNNER" } as GradleBuildStep
            return runnerStep.gradleParams!!
        }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Oct 16 01:27:05 GMT 2025
    - 14.6K bytes
    - Click Count (0)
  4. CLAUDE.md

    3. Don't hardcode strings that should be internationalized
    4. Don't skip validation in form processing
    5. Don't log sensitive data (passwords, tokens, credentials)
    
    ### Common Files to Check
    | Task | Files to Review |
    |------|-----------------|
    | Add admin feature | `app/web/admin/*/`, `app/service/`, `webapp/WEB-INF/view/admin/` |
    | Add API endpoint | `api/`, `app/web/api/` |
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java

                    + "The job with identifier XYZ123 was expected to be in the system but could not be located "
                    + "after searching through all available job registries and scheduled task databases.";
    
            JobNotFoundException exception = new JobNotFoundException(message);
    
            assertNotNull(exception);
            assertEquals(message, exception.getMessage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  6. docs/ko/docs/tutorial/middleware.md

    * 그런 다음 해당 **응답**에 대해 무언가를 하거나 필요한 코드를 실행할 수 있습니다.
    * 그런 다음 **응답**을 반환합니다.
    
    /// note | 기술 세부사항
    
    `yield`를 사용하는 의존성이 있다면, exit 코드는 미들웨어 *후에* 실행됩니다.
    
    백그라운드 작업(뒤에서 보게 될 [백그라운드 작업](background-tasks.md) 섹션에서 다룹니다)이 있다면, 모든 미들웨어 *후에* 실행됩니다.
    
    ///
    
    ## 미들웨어 만들기 { #create-a-middleware }
    
    미들웨어를 만들기 위해 함수 상단에 데코레이터 `@app.middleware("http")`를 사용합니다.
    
    미들웨어 함수는 다음을 받습니다:
    
    * `request`.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  7. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                }
            }
    
            if (!unhealthy.isEmpty()) {
                log.info("Removed {} unhealthy connections from pool", unhealthy.size());
            }
    
            // Perform maintenance tasks
            performMaintenanceTasks();
        }
    
        /**
         * Remove idle connections to free up pool space
         */
        private void removeIdleConnections() {
            long now = System.currentTimeMillis();
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 33.4K bytes
    - Click Count (0)
  8. guava-testlib/src/com/google/common/util/concurrent/testing/AbstractListenableFutureTest.java

      }
    
      /** Tests that the {@link Future#get(long, TimeUnit)} method times out correctly. */
      public void testTimeoutOnGetWorksCorrectly() throws InterruptedException, ExecutionException {
    
        // The task thread waits for the latch, so we expect a timeout here.
        try {
          future.get(20, MILLISECONDS);
          fail("Should have timed out trying to get the value.");
        } catch (TimeoutException expected) {
        } finally {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Jul 11 18:52:30 GMT 2025
    - 6.1K bytes
    - Click Count (0)
  9. dbflute_fess/dfprop/basicInfoMap.dfprop

    # /---------------------------------------------------------------------------
    # basicInfoMap: (Required)
    #
    # The basic information for the tasks of DBFlute.
    # You should specify before your first generating.
    #
    # Core Properties:
    # o database: (Required)
    # o targetLanguage: (Required)
    # o targetContainer: (Required)
    # o packageBase: (Required)
    #
    # Adjustment Properties:
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.2K bytes
    - Click Count (0)
  10. docs/en/docs/help-fastapi.md

    There's a lot of work to do, and for most of it, **YOU** can do it.
    
    The main tasks that you can do right now are:
    
    * [Help others with questions in GitHub](#help-others-with-questions-in-github) (see the section above).
    * [Review Pull Requests](#review-pull-requests) (see the section above).
    
    Those two tasks are what **consume time the most**. That's the main work of maintaining FastAPI.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 12.6K bytes
    - Click Count (0)
Back to Top