Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for subjectifs (0.26 seconds)

  1. docs/fr/docs/help-fastapi.md

    ///
    
    * Si la PR peut être simplifiée d'une certaine manière, vous pouvez le demander, mais il n'est pas nécessaire d'être trop pointilleux, il peut y avoir beaucoup de points de vue subjectifs (et j'aurai les miens aussi 🙈), donc il est préférable de vous concentrer sur les choses fondamentales.
    
    ### Tests { #tests }
    
    * Aidez‑moi à vérifier que la PR a des **tests**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 14.6K bytes
    - Click Count (0)
  2. docs/fr/docs/advanced/advanced-python-types.md

            print(f"Hi {name}!")
    ```
    
    `typing` propose également un raccourci pour déclarer que quelque chose peut être `None`, avec `Optional`.
    
    Voici un conseil issu de mon point de vue très subjectif :
    
    - 🚨 Évitez d'utiliser `Optional[SomeType]`
    - À la place ✨ **utilisez `Union[SomeType, None]`** ✨.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:12:41 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  3. docs/en/docs/advanced/advanced-python-types.md

    
    def say_hi(name: Union[str, None]):
            print(f"Hi {name}!")
    ```
    
    `typing` also has a shortcut to declare that something could be `None`, with `Optional`.
    
    Here's a tip from my very **subjective** point of view:
    
    * 🚨 Avoid using `Optional[SomeType]`
    * Instead ✨ **use `Union[SomeType, None]`** ✨.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 11 18:32:12 GMT 2026
    - 2K bytes
    - Click Count (0)
  4. src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java

        void equalsAndHashCode_subjectSemantics() {
            Kerb5Authenticator a = new Kerb5Authenticator((Subject) null);
            Kerb5Authenticator b = new Kerb5Authenticator((Subject) null);
    
            // Both null subjects -> equal
            assertEquals(a, b);
            assertEquals(a.hashCode(), b.hashCode());
    
            // Mixed null/non-null -> not equal
            Kerb5Authenticator c = new Kerb5Authenticator(new Subject());
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  5. src/test/java/jcifs/smb/JAASAuthenticatorTest.java

            assertEquals(orig.getUserDomain(), copy.getUserDomain());
            assertEquals(orig.getPassword(), copy.getPassword());
    
            // Test the cloning behavior with both null and non-null cached subjects
            if (first != null) {
                // If we got a valid subject, test that it's properly cached and cloned
                Subject cachedOrig = orig.getSubject();
                assertNotNull(cachedOrig);
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 9.9K bytes
    - Click Count (0)
  6. docs/en/docs/help-fastapi.md

    ///
    
    * If the PR can be simplified in a way, you can ask for that, but there's no need to be too picky, there might be a lot of subjective points of view (and I will have my own as well 🙈), so it's better if you can focus on the fundamental things.
    
    ### Tests { #tests }
    
    * Help me check that the PR has **tests**.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 12.6K bytes
    - Click Count (0)
Back to Top