Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 171 - 180 of 654 for normalde (0.4 seconds)

  1. CONTRIBUTING.md

    * Be careful when using features introduced in Java 9 or later. Some parts of Gradle still need to run on Java 8.
    * Normalize file paths in tests. The `org.gradle.util.internal.TextUtil` class has some useful functions for this purpose.
    
    You can consult the [Architecture documentation](architecture) to learn about some of the architecture of Gradle.
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 18:43:39 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  2. docs/en/docs/tutorial/bigger-applications.md

    And as most of your logic will now live in its own specific module, the main file will be quite simple.
    
    ### Import `FastAPI` { #import-fastapi }
    
    You import and create a `FastAPI` class as normally.
    
    And we can even declare [global dependencies](dependencies/global-dependencies.md) that will be combined with the dependencies for each `APIRouter`:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 19.2K bytes
    - Click Count (0)
  3. docs/de/docs/advanced/json-base64-bytes.md

    Base64 kann Binärdaten in Strings kodieren, dafür werden jedoch mehr Zeichen benötigt als in den ursprünglichen Binärdaten; es ist daher in der Regel weniger effizient als der Umgang mit normalen Dateien.
    
    Verwenden Sie base64 nur, wenn Sie Binärdaten unbedingt in JSON einbetten müssen und dafür keine Dateien verwenden können.
    
    ## Pydantic `bytes` { #pydantic-bytes }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:48:21 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  4. docs/en/docs/advanced/advanced-python-types.md

    ```
    
    The good news is, in most cases, you will be able to simply use `|` to define unions of types:
    
    ```python
    def say_hi(name: str | None):
        print(f"Hey {name}!")
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 11 18:32:12 GMT 2026
    - 2K bytes
    - Click Count (0)
  5. docs/en/docs/advanced/response-headers.md

    And then you can set headers in that *temporal* response object.
    
    {* ../../docs_src/response_headers/tutorial002_py310.py hl[1, 7:8] *}
    
    And then you can return any object you need, as you normally would (a `dict`, a database model, etc).
    
    And if you declared a `response_model`, it will still be used to filter and convert the object you returned.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  6. docs/fr/docs/tutorial/query-params-str-validations.md

    Dans ces cas, vous pouvez utiliser une **fonction de validation personnalisée** qui est appliquée après la validation normale (par ex. après avoir validé que la valeur est une `str`).
    
    Vous pouvez y parvenir en utilisant [`AfterValidator` de Pydantic](https://docs.pydantic.dev/latest/concepts/validators/#field-after-validator) à l’intérieur de `Annotated`.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 19K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

            DynamicProperties existingProps = SingletonLaContainerFactory.getContainer().getComponent("systemProperties");
            existingProps.setProperty("ldap.security.principal", "cn=%s,dc=example,dc=com");
    
            // Normal username
            assertEquals("cn=admin,dc=example,dc=com", fessConfig.getLdapSecurityPrincipal("admin"));
    
            // Asterisk injection attempt
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 25.4K bytes
    - Click Count (0)
  8. src/main/webapp/css/style.css

    	margin-top: 0;
    }
    
    #result .title a:visited {
    	color: #014c8c;
    }
    
    #result .body {
    	display: flex;
    	align-items: flex-start;
    }
    
    #result .site cite {
    	color: #093;
    	font-style: normal;
    }
    
    #result .more {
    	display: none;
    }
    
    #result .info {
    	font-size: 80%;
    }
    
    #result .url-copy {
    	color: #007bff;
    }
    
    #result .url-copied {
    	color: #2c974b;
    }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 12 06:14:02 GMT 2025
    - 2K bytes
    - Click Count (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/internal/concurrent/TaskRunnerRealBackendTest.kt

          log.put("normal task running")
          return@schedule -1L
        }
    
        queue.idleLatch().await(500, TimeUnit.MILLISECONDS)
    
        assertThat(log.take()).isEqualTo("failing task running")
        assertThat(log.take()).isEqualTo("uncaught exception: java.lang.RuntimeException: boom!")
        assertThat(log.take()).isEqualTo("normal task running")
        assertThat(log).isEmpty()
      }
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Dec 27 13:39:56 GMT 2024
    - 3.5K bytes
    - Click Count (0)
  10. docs/es/docs/tutorial/path-operation-configuration.md

    En estos casos, podría tener sentido almacenar las tags en un `Enum`.
    
    **FastAPI** soporta eso de la misma manera que con strings normales:
    
    {* ../../docs_src/path_operation_configuration/tutorial002b_py310.py hl[1,8:10,13,18] *}
    
    ## Resumen y Descripción { #summary-and-description }
    
    Puedes añadir un `summary` y `description`:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 4.2K bytes
    - Click Count (0)
Back to Top