Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 205 for Serialization (0.09 sec)

  1. docs/SMB3_IMPLEMENTATION_PLAN.md

    ```
    
    #### 2.2 Implementation Tasks
    - [ ] Implement persistent/durable handle contexts
    - [ ] Add handle GUID generation and tracking
    - [ ] Implement handle state serialization
    - [ ] Create reconnection logic with handle replay
    - [ ] Add timeout management for durable handles
    - [ ] Implement handle lease association
    - [ ] Add persistent handle capability negotiation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  2. docs/tr/docs/tutorial/path-params.md

    /// check | Ek bilgi
    
    Bu sayede, fonksiyon içerisinde hata denetimi, kod tamamlama gibi konularda editör desteğine kavuşacaksınız.
    
    ///
    
    ## Veri <abbr title="Dönüşüm: serialization, parsing ve marshalling olarak da biliniyor">Dönüşümü</abbr>
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exception/InvalidQueryExceptionTest.java

            assertEquals(messageCode, exception.getMessageCode());
        }
    
        public void test_verifySerialVersionUID() {
            // Setup
            final String message = "Test serialization capability";
            final VaMessenger<FessMessages> messageCode = messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY);
    
            // Execute
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java

            assertEquals("[Test]", defaultMap.get(FessEnv.MAIL_SUBJECT_TEST_PREFIX));
            assertEquals("root@localhost", defaultMap.get(FessEnv.MAIL_RETURN_PATH));
        }
    
        // Test serialization
        public void xtest_serialization() {
            // Verify that serialVersionUID is defined
            assertTrue(fessEnv instanceof java.io.Serializable);
    
            // Test that the SimpleImpl class can be instantiated
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  5. docs/id/docs/index.md

    * <abbr title="juga disebut: serialization, parsing, marshalling">Konversi</abbr> input data: berasal dari jaringan ke data dan tipe Python. Membaca dari:
        * JSON.
        * Parameter path.
        * Parameter query.
        * Cookie.
        * Header.
        * Form.
        * File.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  6. docs/az/docs/index.md

    * Məlumatların Təsdiqlənməsi:
        * Məlumat etibarsız olduqda avtomatik olaraq aydın xətalar göstərir.
        * Hətta çox dərin JSON obyektlərində belə doğrulama aparır.
    * Daxil olan məlumatları <abbr title="Çevrilmə: serialization, parsing, marshalling olaraq da bilinir">çevirmək</abbr> üçün aşağıdakı məlumat növlərindən istifadə edilir:
        * JSON.
        * <abbr title="Yol: Path">Yol</abbr> parametrləri.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  7. docs/ja/docs/index.md

    - データの検証:
      - データが無効な場合に自動でエラーをクリアします。
      - 深い入れ子になった JSON オブジェクトでも検証が可能です。
    - 入力データの<abbr title="also known as: serialization, parsing, marshalling">変換</abbr>: ネットワークから Python のデータや型に変換してから読み取ります:
      - JSON.
      - パスパラメータ
      - クエリパラメータ
      - クッキー
      - ヘッダー
      - フォーム
      - ファイル
    - 出力データの<abbr title="also known as: serialization, parsing, marshalling">変換</abbr>: Python のデータや型からネットワークデータへ変換します (JSON として):
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 21.3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/ntlmssp/Type2MessageTest.java

    import jcifs.NameServiceClient;
    import jcifs.NetbiosAddress;
    import jcifs.util.Hexdump;
    
    /**
     * Comprehensive test suite for Type2Message NTLM authentication message.
     * Tests all constructors, parsing, and serialization functionality.
     */
    @DisplayName("Type2Message Comprehensive Tests")
    class Type2MessageTest {
    
        private static final byte[] TEST_CHALLENGE = new byte[] { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08 };
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 38.9K bytes
    - Viewed (0)
  9. docs/en/docs/index.md

    * <abbr title="also known as: serialization, parsing, marshalling">Conversion</abbr> of input data: coming from the network to Python data and types. Reading from:
        * JSON.
        * Path parameters.
        * Query parameters.
        * Cookies.
        * Headers.
        * Forms.
        * Files.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 21.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java

         * The simple implementation for configuration.
         * @author FreeGen
         */
        public static class SimpleImpl extends ObjectiveConfig implements FessEnv {
    
            /** The serial version UID for object serialization. (Default) */
            private static final long serialVersionUID = 1L;
    
            public String getLastaDiSmartDeployMode() {
                return get(FessEnv.lasta_di_SMART_DEPLOY_MODE);
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10K bytes
    - Viewed (0)
Back to top