Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 261 - 270 of 508 for normales (0.54 seconds)

  1. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

            assertEquals("test1", item.get().getInput());
        }
    
        @Test
        public void test_selectList_normal() {
            // Load data first
            protwordsFile.reload(null);
    
            // Test normal pagination
            PagingList<ProtwordsItem> list = protwordsFile.selectList(0, 3);
            assertEquals(3, list.size());
            assertEquals("test1", list.get(0).getInput());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 21.2K bytes
    - Click Count (0)
  2. src/test/java/jcifs/smb1/smb1/NtTransQuerySecurityDescTest.java

     *
     * The class under test contains a number of straightforward data‑layout
     * methods (writing parameters and handling empty wire formats) and an
     * informative {@link NtTransQuerySecurityDesc#toString()}. The tests
     * exercise normal behaviour, boundary values, and the interaction with
     * the underlying wire‑format helpers.
     */
    @ExtendWith(MockitoExtension.class)
    class NtTransQuerySecurityDescTest {
    
        /**
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 4.6K bytes
    - Click Count (0)
  3. docs/smb3-features/06-witness-protocol-design.md

            // Consider fallback mechanisms
        }
        
        public void handlePartitionRecovery() {
            log.info("Network partition recovered - resuming normal witness operations");
            
            // Restore normal operation parameters
            // Verify all registrations are still valid
        }
    }
    ```
    
    ## 9. Performance and Optimization
    
    ### 9.1 Witness Event Batching
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 42K bytes
    - Click Count (0)
  4. docs/fr/docs/advanced/settings.md

    {* ../../docs_src/settings/app02_an_py310/main.py hl[6,12:13] *}
    
    /// tip | Astuce
    
    Nous parlerons de `@lru_cache` dans un instant.
    
    Pour l'instant, vous pouvez supposer que `get_settings()` est une fonction normale.
    
    ///
    
    Nous pouvons ensuite l'exiger depuis la fonction de chemin d'accès comme dépendance et l'utiliser où nous en avons besoin.
    
    {* ../../docs_src/settings/app02_an_py310/main.py hl[17,19:21] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.3K bytes
    - Click Count (0)
  5. docs/tr/docs/advanced/path-operation-advanced-configuration.md

    ///
    
    Bu, *path operation* hakkında tüm bilgileri içerir ve otomatik dokümantasyonu üretmek için kullanılır.
    
    `tags`, `parameters`, `requestBody`, `responses` vb. alanları içerir.
    
    Bu *path operation*’a özel OpenAPI şeması normalde **FastAPI** tarafından otomatik üretilir; ancak siz bunu genişletebilirsiniz.
    
    /// tip | İpucu
    
    Bu, düşük seviyeli bir genişletme noktasıdır.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectManager.java

        /**
         * Resolves and adds the given directory as a source with the given scope and language.
         * First, this method resolves the given root against the project base directory, then normalizes the path.
         * If no source already exists for the same scope, language and normalized directory,
         * these arguments are added as a new {@link SourceRoot} element.
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Jan 30 23:29:13 GMT 2025
    - 12K bytes
    - Click Count (0)
  7. docs/tr/docs/python-types.md

    ```Python
        first_name="john", last_name="doe"
    ```
    
    Bu farklı bir şey.
    
    Eşittir (`=`) değil, iki nokta (`:`) kullanıyoruz.
    
    Ve type hints eklemek, normalde onlarsız ne oluyorsa onu değiştirmez.
    
    Ama şimdi, type hints ile o fonksiyonu oluşturmanın ortasında olduğunuzu tekrar hayal edin.
    
    Aynı noktada, `Ctrl+Space` ile autocomplete'i tetiklemeye çalışırsınız ve şunu görürsünüz:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  8. docs/pt/docs/tutorial/body-nested-models.md

    * Conversão de dados
    * Validação de dados
    * Documentação automática
    
    ## Tipos especiais e validação { #special-types-and-validation }
    
    Além dos tipos singulares normais como `str`, `int`, `float`, etc. Você também pode usar tipos singulares mais complexos que herdam de `str`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 7.3K bytes
    - Click Count (0)
  9. docs/pt/docs/tutorial/path-params-numeric-validations.md

    Essas funções existem (em vez de usar diretamente as classes) para que seu editor não marque erros sobre seus tipos.
    
    Dessa forma, você pode usar seu editor e ferramentas de codificação normais sem precisar adicionar configurações personalizadas para desconsiderar esses erros.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  10. docs/pt/docs/tutorial/stream-json-lines.md

    ///
    
    ### Funções de operação de rota não assíncronas { #non-async-path-operation-functions }
    
    Você também pode usar funções `def` normais (sem `async`) e usar `yield` da mesma forma.
    
    O FastAPI garantirá que sejam executadas corretamente para não bloquear o event loop.
    
    Como, neste caso, a função não é assíncrona, o tipo de retorno adequado seria `Iterable[Item]`:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:13 GMT 2026
    - 4.6K bytes
    - Click Count (0)
Back to Top