Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 71 - 80 of 124 for independiente (0.11 seconds)

  1. docs/pt/docs/advanced/settings.md

    <div class="termy">
    
    ```console
    $ pip install "fastapi[all]"
    ---> 100%
    ```
    
    </div>
    
    /// info | Informação
    
    No Pydantic v1 ele vinha incluído no pacote principal. Agora é distribuído como um pacote independente para que você possa optar por instalá-lo ou não, caso não precise dessa funcionalidade.
    
    ///
    
    ### Criar o objeto `Settings` { #create-the-settings-object }
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 13K bytes
    - Click Count (0)
  2. src/test/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponseTest.java

            assertTrue(result.length() > "TransPeekNamedPipeResponse[]".length());
        }
    
        @Test
        @DisplayName("Multiple instances should be independent")
        void testMultipleInstances() {
            // Arrange
            TransPeekNamedPipeResponse response1 = new TransPeekNamedPipeResponse(mockConfig);
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 15.8K bytes
    - Click Count (0)
  3. docs/en/docs/advanced/advanced-dependencies.md

    This was changed in FastAPI 0.106.0 with the intention to not hold resources while waiting for the response to travel through the network.
    
    /// tip
    
    Additionally, a background task is normally an independent set of logic that should be handled separately, with its own resources (e.g. its own database connection).
    
    So, this way you will probably have cleaner code.
    
    ///
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Thu Nov 13 07:37:15 GMT 2025
    - 9.1K bytes
    - Click Count (0)
  4. .teamcity/src/main/kotlin/common/CommonExtensions.kt

            // if multiple test tasks run in parallel. We also pass it to the Gradle build as a maximum (maxParallelForks)
            // for each test task, such that we are independent of whatever default value is defined in the build itself.
            "-Dorg.gradle.workers.max=$maxParallelForks",
            "-PmaxParallelForks=$maxParallelForks",
            PLUGINS_PORTAL_URL_OVERRIDE,
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon Dec 22 07:15:16 GMT 2025
    - 15.6K bytes
    - Click Count (0)
  5. src/test/java/jcifs/util/AuthenticationRateLimiterTest.java

            assertFalse(rateLimiter.checkAttempt("user6", ip), "Should block after IP rate limit");
        }
    
        @Test
        public void testDifferentIpsIndependent() throws Exception {
            // Different IPs should have independent limits
            for (int i = 1; i <= 3; i++) {
                assertTrue(rateLimiter.checkAttempt("user1", "192.168.1." + i));
                rateLimiter.recordFailure("user1", "192.168.1." + i);
            }
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 15.8K bytes
    - Click Count (0)
  6. guava/src/com/google/common/base/FinalizableReferenceQueue.java

       * This means that dynamically loaded web applications and OSGi bundles can't be unloaded.
       *
       * If the library is loaded in an application class loader, we try to break the cycle by loading
       * Finalizer in its own independent class loader:
       *
       * System class loader -> Application class loader -> ReferenceMap -> FinalizableReferenceQueue ->
       * etc. -> Decoupled class loader -> Finalizer
       *
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 14.7K bytes
    - Click Count (0)
  7. src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java

                assertEquals(8388608, response.getTotalBytesWritten()); // 8MB total
            }
    
            @Test
            @DisplayName("Should create multiple independent instances")
            void testMultipleInstances() throws SMBProtocolDecodingException {
                SrvCopyChunkCopyResponse response1 = new SrvCopyChunkCopyResponse();
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 19.8K bytes
    - Click Count (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/AbstractTransformerTest.java

            transformer2.setName("transformer2");
    
            assertEquals("transformer1", transformer1.getName());
            assertEquals("transformer2", transformer2.getName());
    
            // Both should have independent name storage
            transformer1.setName("changed1");
            assertEquals("changed1", transformer1.getName());
            assertEquals("transformer2", transformer2.getName());
        }
    
        /**
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Sat Sep 06 04:15:37 GMT 2025
    - 20.8K bytes
    - Click Count (0)
  9. internal/s3select/sql/evaluate.go

    	switch e.getFunctionName() {
    	case aggFnCount, aggFnAvg, aggFnMax, aggFnMin, aggFnSum:
    		return e.getAggregate()
    	default:
    		return e.evalSQLFnNode(r, tableAlias)
    	}
    }
    
    // evalNode on a literal value is independent of the node being an
    // aggregation or a row function - it always returns a value.
    func (e *LitValue) evalNode(_ Record) (res *Value, err error) {
    	switch {
    	case e.Int != nil:
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 12K bytes
    - Click Count (0)
  10. docs/es/docs/_llm-test.md

    * el header
    * los headers
    * el header de autorización
    * el header `Authorization`
    * el header Forwarded
    
    * el sistema de inyección de dependencias
    * la dependencia
    * el dependable
    * el dependiente
    
    * limitado por I/O
    * limitado por CPU
    * concurrencia
    * paralelismo
    * multiprocesamiento
    
    * la variable de entorno
    * la variable de entorno
    * el `PATH`
    * la variable `PATH`
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Dec 16 16:16:35 GMT 2025
    - 12.6K bytes
    - Click Count (0)
Back to Top