Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LAST_NAME (0.13 sec)

  1. docs/en/docs/python-types.md

    ```Python
        first_name, last_name
    ```
    
    to:
    
    ```Python
        first_name: str, last_name: str
    ```
    
    That's it.
    
    Those are the "type hints":
    
    {* ../../docs_src/python_types/tutorial002.py hl[1] *}
    
    That is not the same as declaring default values like would be with:
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    It's a different thing.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  2. docs/fa/docs/python-types.md

    دقیقاً این بخش، پارامترهای تابع رو، از:
    
    ```Python
        first_name, last_name
    ```
    
    به:
    
    ```Python
        first_name: str, last_name: str
    ```
    
    عوض می‌کنیم.
    
    همینه.
    
    اینا همون "نوع‌نماها" هستن:
    
    {* ../../docs_src/python_types/tutorial002.py hl[1] *}
    
    این با تعریف مقدار پیش‌فرض فرق داره، مثل:
    
    ```Python
        first_name="john", last_name="doe"
    ```
    
    یه چیز متفاوته.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Jul 21 12:20:57 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/NetServerEnum2Test.java

            assertEquals(5000, netServerEnum2.timeout);
        }
    
        /**
         * Test the reset method.
         */
        @Test
        void testReset() {
            String lastName = "LAST_NAME";
            netServerEnum2.reset(0, lastName);
            assertEquals(lastName, netServerEnum2.lastName);
        }
    
        /**
         * Test the writeSetupWireFormat method.
         */
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.6K bytes
    - Viewed (0)
Back to top