Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 171 - 180 of 822 for wire (0.05 seconds)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProblemCollector.java

         * method returns {@code true}, it means that element count of stream returned by method {@link #problems()}
         * and the counter returned by {@link #totalProblemsReported()} are not equal (latter is bigger than former).
         *
         * @return true if the problem collector has overflowed and some problems were not preserved
         */
        boolean problemsOverflow();
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jul 18 17:30:19 GMT 2025
    - 11.4K bytes
    - Click Count (0)
  2. .ci/jobs.t/elastic+elasticsearch+periodic+third-party-tests.yml

        description: "Testing of the Elasticsearch %BRANCH% branch against third-party service integrations.\n"
        project-type: multijob
        node: master
        vault: []
        scm:
          - git:
              wipe-workspace: false
        builders:
          - multijob:
              name: Third party repository compatibility tests
              projects:
                - name: elastic+elasticsearch+%BRANCH%+multijob+third-party-tests-azure
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 1.4K bytes
    - Click Count (0)
  3. docs/fr/docs/advanced/testing-events.md

    Lorsque vous avez besoin d'exécuter `lifespan` dans vos tests, vous pouvez utiliser `TestClient` avec une instruction `with` :
    
    {* ../../docs_src/app_testing/tutorial004_py310.py hl[9:15,18,27:28,30:32,41:43] *}
    
    Vous pouvez lire plus de détails dans [« Exécuter lifespan dans les tests sur le site de documentation officiel de Starlette. »](https://www.starlette.dev/lifespan/#running-lifespan-in-tests)
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:12:41 GMT 2026
    - 701 bytes
    - Click Count (0)
  4. docs/fr/docs/how-to/custom-request-and-route.md

    Dans certains cas, vous pouvez vouloir surcharger la logique utilisée par les classes `Request` et `APIRoute`.
    
    En particulier, cela peut être une bonne alternative à une logique dans un middleware.
    
    Par exemple, si vous voulez lire ou manipuler le corps de la requête avant qu'il ne soit traité par votre application.
    
    /// danger | Danger
    
    Ceci est une fonctionnalité « avancée ».
    
    Si vous débutez avec **FastAPI**, vous pouvez ignorer cette section.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/hash/Hasher.java

     *
     * <p><b>Warning:</b> Chunks of data that are put into the {@link Hasher} are not delimited. The
     * resulting {@link HashCode} is dependent only on the bytes inserted, and the order in which they
     * were inserted, not how those bytes were chunked into discrete put() operations. For example, the
     * following three expressions all generate colliding hash codes:
     *
     * {@snippet :
     * newHasher().putByte(b1).putByte(b2).putByte(b3).hash()
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 17 20:26:29 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  6. docs/de/docs/features.md

    ### Getestet { #tested }
    
    * 100 % <dfn title="Der Prozentsatz an Code, der automatisch getestet wird">Testabdeckung</dfn>.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  7. src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java

            // Then
            assertEquals(DialectVersion.SMB300, context.getDialect(), "Should support SMB 3.0 dialect");
        }
    
        @Test
        @DisplayName("Should securely wipe encryption keys")
        void testSecureWipeKeys() {
            // Given
            byte[] originalEncKey = Arrays.copyOf(testEncryptionKey, testEncryptionKey.length);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 44.1K bytes
    - Click Count (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/project/validation/ModelValidationResult.java

        }
    
        @Override
        public String toString() {
            return render("");
        }
    
        public String render(String indentation) {
            if (messages.isEmpty()) {
                return indentation + "There were no validation errors.";
            }
    
            StringBuilder message = new StringBuilder();
            for (int i = 0; i < messages.size(); i++) {
                message.append(indentation)
                        .append('[')
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Jul 23 17:27:08 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  9. docs/fr/docs/tutorial/static-files.md

    Cela diffère de l'utilisation d'un `APIRouter`, car une application montée est complètement indépendante. L'OpenAPI et les documents de votre application principale n'incluront rien provenant de l'application montée, etc.
    
    Vous pouvez en lire davantage à ce sujet dans le [Guide utilisateur avancé](../advanced/index.md).
    
    ## Détails { #details }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/util/concurrent/ExecutionList.java

        // it.
        executeListener(runnable, executor);
      }
    
      /**
       * Runs this execution list, executing all existing pairs in the order they were added. However,
       * note that listeners added after this point may be executed before those previously added, and
       * note that the execution order of all listeners is ultimately chosen by the implementations of
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Feb 10 11:51:21 GMT 2026
    - 6.9K bytes
    - Click Count (0)
Back to Top