Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 72 for 56 (0.32 sec)

  1. android/guava/src/com/google/common/hash/HashCode.java

            (byte) (hash >> 8),
            (byte) (hash >> 16),
            (byte) (hash >> 24),
            (byte) (hash >> 32),
            (byte) (hash >> 40),
            (byte) (hash >> 48),
            (byte) (hash >> 56)
          };
        }
    
        @Override
        public int asInt() {
          return (int) hash;
        }
    
        @Override
        public long asLong() {
          return hash;
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java

            // Server start time
            SMBUtil.writeTime(System.currentTimeMillis() - 3600000, buffer, offset + 48);
    
            // Security buffer offset and length
            SMBUtil.writeInt2(128, buffer, offset + 56); // Offset
            SMBUtil.writeInt2(0, buffer, offset + 58); // Length
    
            // Negotiate context offset
            SMBUtil.writeInt4(0, buffer, offset + 60);
    
            return buffer;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  3. cmd/apierrorcode_string.go

    	_ = x[ErrBucketRemoteArnInvalid-52]
    	_ = x[ErrBucketRemoteRemoveDisallowed-53]
    	_ = x[ErrRemoteTargetNotVersionedError-54]
    	_ = x[ErrReplicationSourceNotVersionedError-55]
    	_ = x[ErrReplicationNeedsVersioningError-56]
    	_ = x[ErrReplicationBucketNeedsVersioningError-57]
    	_ = x[ErrReplicationDenyEditError-58]
    	_ = x[ErrRemoteTargetDenyAddError-59]
    	_ = x[ErrReplicationNoExistingObjects-60]
    	_ = x[ErrReplicationValidationError-61]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  4. docs/es/docs/tutorial/dependencies/dependencies-with-yield.md

    {* ../../docs_src/dependencies/tutorial007.py hl[4] *}
    
    El código posterior a la declaración `yield` se ejecuta después de crear el response pero antes de enviarla:
    
    {* ../../docs_src/dependencies/tutorial007.py hl[5:6] *}
    
    /// tip | Consejo
    
    Puedes usar funciones `async` o regulares.
    
    **FastAPI** hará lo correcto con cada una, igual que con dependencias normales.
    
    ///
    
    ## Una dependencia con `yield` y `try`
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    {* ../../docs_src/dependencies/tutorial007.py hl[4] *}
    
    The code following the `yield` statement is executed after creating the response but before sending it:
    
    {* ../../docs_src/dependencies/tutorial007.py hl[5:6] *}
    
    /// tip
    
    You can use `async` or regular functions.
    
    **FastAPI** will do the right thing with each, the same as with normal dependencies.
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  6. docs/SMB3_IMPLEMENTATION_PLAN.md

    - Modify `SmbSession` for handle replay during reconnection
    - Update `Smb2CreateRequest/Response` for durable contexts
    
    ---
    
    ### Phase 3: Multi-Channel Support
    **Priority: MEDIUM** | **Estimated Effort: 5-6 weeks**
    
    Multi-channel enables using multiple network connections for improved performance and reliability.
    
    #### 3.1 Core Multi-Channel Infrastructure
    ```
    Package: jcifs.internal.smb2.multichannel
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  7. src/test/java/jcifs/http/NtlmSspTest.java

            message[51] = 0;
    
            // Session Key (empty, offset 154)
            message[52] = 0; // Length
            message[53] = 0;
            message[54] = 0; // Max Length
            message[55] = 0;
            message[56] = (byte) 154; // Offset
            message[57] = 0;
            message[58] = 0;
            message[59] = 0;
    
            // Flags (NTLMSSP_NEGOTIATE_UNICODE)
            message[60] = 0x01; // NTLMSSP_NEGOTIATE_UNICODE
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/Smb2TransformHeaderTest.java

            buffer[index++] = (byte) ((testSessionId >> 40) & 0xFF);
            buffer[index++] = (byte) ((testSessionId >> 48) & 0xFF);
            buffer[index++] = (byte) ((testSessionId >> 56) & 0xFF);
    
            // When
            Smb2TransformHeader decodedHeader = Smb2TransformHeader.decode(buffer, 0);
    
            // Then
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java

                byte[] buffer = new byte[20];
                System.arraycopy("Test".getBytes(), 0, buffer, 0, 4);
                buffer[4] = 0; // null terminator
                System.arraycopy("String".getBytes(), 0, buffer, 5, 6);
    
                String result = testBlock.readString(buffer, 0, buffer.length, 10, false);
    
                assertEquals("Test", result);
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.CommonServerMessageBlockRequest#size()
         */
        @Override
        public int size() {
            int size = Smb2Constants.SMB2_HEADER_LENGTH + 56;
            int nameLen = 2 * this.name.length();
            if (nameLen == 0) {
                nameLen++;
            }
    
            size += size8(nameLen);
            if (this.createContexts != null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
Back to top