Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 111 - 120 of 186 for mintan (0.04 seconds)

  1. android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java

      /**
       * Creates a new, empty {@code ConcurrentHashMultiset} using {@code countMap} as the internal
       * backing map.
       *
       * <p>This instance will assume ownership of {@code countMap}, and other code should not maintain
       * references to the map or modify it in any way.
       *
       * <p>The returned multiset is serializable if the input map is.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 22.3K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/help-fastapi.md

    * 協助把[文件翻譯](contributing.md#translations)成你的語言。
        * 你也可以幫忙審查他人提交的翻譯。
    * 提議新的文件章節。
    * 修復既有的 issue/bug。
        * 記得要加上測試。
    * 新增一個功能。
        * 記得要加上測試。
        * 若相關,請記得補上文件。
    
    ## 協助維護 FastAPI { #help-maintain-fastapi }
    
    幫我一起維護 **FastAPI**!🤓
    
    有很多事情要做,而其中大多數其實**你**就能完成。
    
    你現在就能做的主要任務有:
    
    * [在 GitHub 幫助他人解答問題](#help-others-with-questions-in-github)(見上方章節)。
    * [審核 Pull Request](#review-pull-requests)(見上方章節)。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  3. docs/zh/docs/help-fastapi.md

    * 帮助把[文档翻译](contributing.md#translations)成你的语言。
        * 你也可以审阅他人创建的翻译。
    * 提议新增文档章节。
    * 修复现有 issue/bug。
        * 记得添加测试。
    * 添加新功能。
        * 记得添加测试。
        * 如果相关,记得补充文档。
    
    ## 帮忙维护 FastAPI { #help-maintain-fastapi }
    
    帮我一起维护 **FastAPI** 吧!🤓
    
    有很多工作要做,其中大部分其实**你**都能做。
    
    你现在就能做的主要事情有:
    
    * [在 GitHub 上帮别人解答问题](#help-others-with-questions-in-github)(见上面的章节)。
    * [审阅 Pull Request](#review-pull-requests)(见上面的章节)。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  4. docs/ko/docs/help-fastapi.md

        * 다른 사람이 작성한 번역을 검토하는 것도 도울 수 있습니다.
    * 새로운 문서 섹션을 제안할 때.
    * 기존 이슈/버그를 수정할 때.
        * 테스트를 반드시 추가해야 합니다.
    * 새로운 기능을 추가할 때.
        * 테스트를 반드시 추가해야 합니다.
        * 관련 문서가 있다면 반드시 추가해야 합니다.
    
    ## FastAPI 유지 관리 돕기 { #help-maintain-fastapi }
    
    **FastAPI** 유지를 도와주세요! 🤓
    
    할 일이 많고, 그중 대부분은 **여러분**이 할 수 있습니다.
    
    지금 할 수 있는 주요 작업은:
    
    * [GitHub에서 질문으로 다른 사람 돕기](#help-others-with-questions-in-github) (위의 섹션을 참조하세요).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 15.4K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java

            }
        }
    
        /**
         * Sets up the conditions for deleting a crawling information record.
         * Ensures all associated CrawlingInfoParam records are deleted first to maintain referential integrity.
         *
         * @param crawlingInfo the crawling information entity to prepare for deletion
         */
        protected void setupDeleteCondition(final CrawlingInfo crawlingInfo) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 19.9K bytes
    - Click Count (0)
  6. src/test/java/jcifs/internal/fscc/FileFsSizeInformationTest.java

            }
        }
    
        @Nested
        @DisplayName("State Management Tests")
        class StateManagementTests {
    
            @Test
            @DisplayName("Should maintain state after decode")
            void shouldMaintainStateAfterDecode() throws SMBProtocolDecodingException {
                // Given
                ByteBuffer buffer = ByteBuffer.allocate(24);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 25.9K bytes
    - Click Count (0)
  7. docs/es/docs/help-fastapi.md

        * Asegúrate de agregar tests.
    * Para agregar una nueva funcionalidad.
        * Asegúrate de agregar tests.
        * Asegúrate de agregar documentación si es relevante.
    
    ## Ayuda a Mantener FastAPI { #help-maintain-fastapi }
    
    ¡Ayúdame a mantener **FastAPI**! 🤓
    
    Hay mucho trabajo por hacer, y para la mayoría de ello, **TÚ** puedes hacerlo.
    
    Las tareas principales que puedes hacer ahora son:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

       * {@link MoreExecutors#directExecutor}. Normally, when the first future completes, all the other
       * tasks would be called recursively. Here, we detect that the delegate executor is executing
       * inline, and maintain a queue to dispatch tasks iteratively. There is one instance of this class
       * per call to submit() or submitAsync(), and each instance supports only one call to execute().
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Sep 23 01:35:55 GMT 2025
    - 22.1K bytes
    - Click Count (0)
  9. docs/ru/docs/index.md

    "_Мы переключились на **FastAPI** для наших **API** [...] Думаю, вам тоже понравится [...]_"
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 30.4K bytes
    - Click Count (0)
  10. docs/pt/docs/index.md

    "_Nós trocamos nossas **APIs** por **FastAPI** [...] Acredito que você gostará dele [...]_"
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 22.7K bytes
    - Click Count (0)
Back to Top