Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for defecto (0.06 sec)

  1. docs/es/docs/tutorial/query-params.md

    * Validación de datos
    * Documentación automática
    
    ## Valores por defecto
    
    Como los parámetros de query no son una parte fija de un path, pueden ser opcionales y pueden tener valores por defecto.
    
    En el ejemplo anterior, tienen valores por defecto de `skip=0` y `limit=10`.
    
    Entonces, ir a la URL:
    
    ```
    http://127.0.0.1:8000/items/
    ```
    
    sería lo mismo que ir a:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. docs/es/llm-prompt.md

    * testing (as in software testing): escribir pruebas (do not translate to "probar")
    * code base: code base (do not translate to "base de código")
    * default: por defecto (do not translate to "predeterminado")
    * default values: valores por defecto (do not translate to "valores predeterminados")
    * media type: media type (do not translate to "tipo de medio")
    * instantiate: crear un instance (do not translate to "instanciar")
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Jul 26 18:57:50 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_es.properties

    labels.user_favorite_enabled=Registro de favoritos
    labels.web_api_json_enabled=Respuesta JSON
    labels.app_value=Propiedad del sistema
    labels.default_label_value=Valor de etiqueta por defecto
    labels.default_sort_value=Valor de ordenación por defecto
    labels.virtual_host_value=Host virtual
    labels.append_query_param_enabled=Añadir parámetro de búsqueda
    labels.login_required=Requiere inicio de sesión
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
  4. docs/es/docs/index.md

    <details markdown="1">
    <summary>Acerca del comando <code>fastapi dev main.py</code>...</summary>
    
    El comando `fastapi dev` lee tu archivo `main.py`, detecta la app **FastAPI** en él y arranca un servidor usando <a href="https://www.uvicorn.org" class="external-link" target="_blank">Uvicorn</a>.
    
    Por defecto, `fastapi dev` comenzará con auto-recarga habilitada para el desarrollo local.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/LanguageHelper.java

                    return l;
                }
            }
            return null;
        }
    
        /**
         * Sets the language detector.
         *
         * @param detector The language detector.
         */
        public void setDetector(final LanguageDetector detector) {
            this.detector = detector;
        }
    
        /**
         * Creates a script for updating a document with language information.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  6. .github/workflows/detect-conflicts.yml

    name: "Conflict detector"
    on:
      push:
      pull_request_target:
        types: [synchronize]
    
    jobs:
      main:
        permissions:
          contents: read
          pull-requests: write
        runs-on: ubuntu-latest
        steps:
          - name: Check if PRs have merge conflicts
            uses: eps1lon/actions-label-merge-conflict@v3
            with:
              dirtyLabel: "conflicts"
              repoToken: "${{ secrets.GITHUB_TOKEN }}"
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 08:33:44 UTC 2025
    - 499 bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseInputValidationTest.java

            SMBUtil.writeInt2(65535, buffer2, 58);
    
            // Test should detect buffer overflow (this is working correctly!)
            SMBProtocolDecodingException exception = assertThrows(SMBProtocolDecodingException.class, () -> {
                response.readBytesWireFormat(buffer, 0);
            });
    
            // The validation correctly detects when buffer extends beyond available data
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java

            doc.put("content", "xyz");
    
            // Without a real detector, this will throw NullPointerException
            try {
                languageHelper.updateDocument(doc);
                fail("Should throw NullPointerException without detector");
            } catch (NullPointerException e) {
                // Expected since we don't have a detector
            }
        }
    
        public void test_updateDocument_emptyDoc() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/lease/Smb2LeaseStateTest.java

            assertEquals(0x05, Smb2LeaseState.SMB2_LEASE_READ_WRITE);
            assertEquals(0x07, Smb2LeaseState.SMB2_LEASE_FULL);
        }
    
        @Test
        @DisplayName("Should detect read caching correctly")
        void testHasReadCaching() {
            assertTrue(Smb2LeaseState.hasReadCaching(Smb2LeaseState.SMB2_LEASE_READ_CACHING));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 00:16:17 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/TreeConnectResponseTest.java

            }
    
            @Test
            @DisplayName("Should detect DFS from share flags")
            void testIsShareDfsWithShareFlags() throws Exception {
                // Test with DFS flag
                setPrivateField(response, "shareFlags", Smb2TreeConnectResponse.SMB2_SHAREFLAG_DFS);
                assertTrue(response.isShareDfs(), "Should detect DFS from DFS flag");
    
                // Test with DFS_ROOT flag
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top