Search Options

Results per page
Sort
Preferred Languages
Advance

Results 431 - 440 of 665 for 16 (0.01 sec)

  1. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

                    System.arraycopy(material, 24, challenge, 0, 8);
                    setChallenge(challenge);
                    break;
                }
            }
            final int offset = readULong(material, 16); // offset of targetname start
            if (offset == 32 || material.length == 32) {
                return;
            }
            for (int i = 32; i < 40; i++) {
                if (material[i] != 0) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/openapi-callbacks.md

    * And it could also have a declaration of the response it should return, e.g. `response_model=InvoiceEventReceived`.
    
    {* ../../docs_src/openapi_callbacks/tutorial001.py hl[16:18,21:22,28:32] *}
    
    There are 2 main differences from a normal *path operation*:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  3. docs/pt/docs/advanced/openapi-callbacks.md

    * E também deveria ter uma declaração de um código de status de resposta, por exemplo. `response_model=InvoiceEventReceived`.
    
    {* ../../docs_src/openapi_callbacks/tutorial001.py hl[16:18,21:22,28:32] *}
    
    Há 2 diferenças principais de uma *operação de rota* normal:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/lsarpc.java

                    _dst = _dst.deferred;
                    final int _namess = this.count;
                    _dst.enc_ndr_long(_namess);
                    final int _namesi = _dst.index;
                    _dst.advance(16 * _namess);
    
                    _dst = _dst.derive(_namesi);
                    for (int _i = 0; _i < _namess; _i++) {
                        this.names[_i].encode(_dst);
                    }
                }
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 44.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        int FILE_READ_ATTRIBUTES = 0x00000080; // 8
        /** File write attributes access right */
        int FILE_WRITE_ATTRIBUTES = 0x00000100; // 9
        /** Delete access right */
        int DELETE = 0x00010000; // 16
        /** Read control access right */
        int READ_CONTROL = 0x00020000; // 17
        /** Write DAC access right */
        int WRITE_DAC = 0x00040000; // 18
        /** Write owner access right */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb1/net/SmbShareInfoTest.java

            assertTrue(str.contains(specialRemark));
        }
    
        @Test
        @DisplayName("Test type masking with 0xFFFF")
        void testTypeMasking() {
            // Test that only lower 16 bits are considered for type determination
            int typeWithUpperBits = 0xFFFF0001; // Should be treated as type 1 (printer)
            SmbShareInfo info = new SmbShareInfo(TEST_NET_NAME, typeWithUpperBits, TEST_REMARK);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

                if (wordCount > 2) {
                    readParameterWordsWireFormat(buffer, bufferIndex + 4);
    
                    /* The SMB_COM_NT_CREATE_ANDX response wordCount is wrong. There's an
                     * extra 16 bytes for some "Offline Files (CSC or Client Side Caching)"
                     * junk. We need to bump up the wordCount here so that this method returns
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  8. docs/ru/docs/tutorial/handling-errors.md

    Обработчик исключения получит объект `Request` и исключение.
    
    {* ../../docs_src/handling_errors/tutorial004.py hl[2,14:16] *}
    
    Теперь, если перейти к `/items/foo`, то вместо стандартной JSON-ошибки с:
    
    ```JSON
    {
        "detail": [
            {
                "loc": [
                    "path",
                    "item_id"
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. docs/ru/docs/tutorial/path-params.md

    ///
    
    ### Определение *параметра пути*
    
    Определите *параметр пути*, используя в аннотации типа класс перечисления (`ModelName`), созданный ранее:
    
    {* ../../docs_src/path_params/tutorial005.py hl[16] *}
    
    ### Проверьте документацию
    
    Поскольку доступные значения *параметра пути* определены заранее, интерактивная документация может наглядно их отображать:
    
    <img src="/img/tutorial/path-params/image03.png">
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/NtlmContext.java

                    }
                } catch (final GeneralSecurityException e) {
                    throw new CIFSException("Failed to encrypt MIC", e);
                }
            }
    
            final byte[] sig = new byte[16];
            SMBUtil.writeInt4(1, sig, 0); // version
            System.arraycopy(trunc, 0, sig, 4, 8); // checksum
            SMBUtil.writeInt4(seqNum, sig, 12); // seqNum
    
            return sig;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 17.3K bytes
    - Viewed (0)
Back to top