Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for exacto (0.03 sec)

  1. docs/es/docs/how-to/separate-openapi-schemas.md

    # Separaci贸n de Esquemas OpenAPI para Entrada y Salida o No
    
    Al usar **Pydantic v2**, el OpenAPI generado es un poco m谩s exacto y **correcto** que antes. 馃槑
    
    De hecho, en algunos casos, incluso tendr谩 **dos JSON Schemas** en OpenAPI para el mismo modelo Pydantic, para entrada y salida, dependiendo de si tienen **valores por defecto**.
    
    Veamos c贸mo funciona eso y c贸mo cambiarlo si necesitas hacerlo.
    
    ## Modelos Pydantic para Entrada y Salida
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. docs/es/docs/tutorial/path-params.md

    /// check | Revisa
    
    Entonces, con la misma declaraci贸n de tipo de Python, **FastAPI** te ofrece validaci贸n de datos.
    
    Nota que el error tambi茅n indica claramente el punto exacto donde la validaci贸n fall贸.
    
    Esto es incre铆blemente 煤til mientras desarrollas y depuras c贸digo que interact煤a con tu API.
    
    ///
    
    ## Documentaci贸n
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/WinErrorTest.java

                    () -> assertEquals(6118, WinError.ERROR_NO_BROWSER_SERVERS_FOUND));
        }
    
        @Test
        @DisplayName("Arrays: non-null, same length, and exact contents")
        void arrays_are_well_formed_and_match() {
            // Validate arrays existence and alignment (edge and structure checks)
            assertNotNull(WinError.WINERR_CODES, "WINERR_CODES should not be null");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  4. src/test/java/jcifs/ntlmssp/av/AvSingleHostTest.java

            System.arraycopy(value, 16, actualMachineId, 0, 32);
            assertArrayEquals(machineId, actualMachineId);
        }
    
        /**
         * Test with customData and machineId that are not exactly 8 and 32 bytes respectively.
         * The constructor requires exact sizes, so we need to pad them manually.
         */
        @Test
        void testAvSingleHostCustomDataMachineIdConstructor_ShorterInputs() {
            // Prepare padded arrays
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  5. docs/hotfixes.md

        [security] Match ${aws:username} exactly instead of prefix match (#7791)
    
        This PR fixes a security issue where an IAM user based
        on his policy is granted more privileges than restricted
        by the users IAM policy.
    
        This is due to an issue of prefix based Matcher() function
        which was incorrectly matching prefix based on resource
        prefixes instead of exact match.
    ```
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. .generated_files

    # code.
    #
    # https://github.com/kubernetes/test-infra/blob/master/prow/plugins/size/size.go
    #
    # This file is a series of lines, each of the form:
    #     <type> <name>
    #
    # Type can be:
    #    path - an exact path to a single file
    #    file-name - an exact leaf filename, regardless of path
    #    path-prefix - a prefix match on the file path
    #    file-prefix - a prefix match of the leaf filename (no path)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Oct 04 23:47:25 UTC 2022
    - 750 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

    /**
     * Helper class for managing related content configurations.
     * This class provides functionality to load, cache, and retrieve related content
     * based on search queries and virtual host configurations. It supports both exact
     * term matching and regex pattern matching for flexible content association.
     */
    public class RelatedContentHelper extends AbstractConfigHelper {
    
        /**
         * Default constructor for RelatedContentHelper.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java

            assertNull(generator.expandPath(null));
    
            // Test with exact match mappings (expandPath only replaces exact matches)
            generator.filePathMap.put("${home}/file", "/home/user/file");
            assertEquals("/home/user/file", generator.expandPath("${home}/file"));
            assertEquals("other/path", generator.expandPath("other/path"));
    
            // Test another exact mapping
            generator.filePathMap.put("${temp}", "/tmp");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/dcerpc/DcerpcSecurityProviderTest.java

            // Verify that the wrap method was called exactly once
            verify(dcerpcSecurityProvider, times(1)).wrap(mockNdrBuffer);
        }
    
        @Test
        void testUnwrapMethodIsCalled() throws DcerpcException {
            // Test that the unwrap method can be called without throwing an exception
            dcerpcSecurityProvider.unwrap(mockNdrBuffer);
    
            // Verify that the unwrap method was called exactly once with the mockNdrBuffer
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/SmbResourceLocatorInternalTest.java

            when(locator.handleDFSReferral(referral, reqPath)).thenReturn(resolved);
    
            String out = locator.handleDFSReferral(referral, reqPath);
            assertEquals(resolved, out);
    
            // Verify exact argument interaction
            verify(locator, times(1)).handleDFSReferral(referral, reqPath);
            verifyNoMoreInteractions(locator);
        }
    
        // Edge / invalid: null referral or empty/blank path
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.9K bytes
    - Viewed (0)
Back to top