Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 361 for Britton (0.05 sec)

  1. src/main/java/jcifs/internal/smb2/rdma/Smb2RdmaTransform.java

            return 16; // 8 + 4 + 4
        }
    
        /**
         * Encode this structure to byte array
         *
         * @param dst destination buffer
         * @param dstIndex starting index
         * @return number of bytes written
         */
        public int encode(byte[] dst, int dstIndex) {
            SMBUtil.writeInt8(offset, dst, dstIndex);
            SMBUtil.writeInt4(token, dst, dstIndex + 8);
            SMBUtil.writeInt4(length, dst, dstIndex + 12);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/netbios/SessionServicePacketTest.java

        void testWriteHeaderWireFormat() {
            packet.type = SessionServicePacket.SESSION_REQUEST;
            packet.length = 0x1234;
    
            byte[] dst = new byte[10];
            int written = packet.writeHeaderWireFormat(dst, 0);
    
            assertEquals(4, written);
            assertEquals((byte) SessionServicePacket.SESSION_REQUEST, dst[0]);
            assertEquals((byte) 0x00, dst[1]); // No extended bit
            assertEquals((byte) 0x12, dst[2]);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

             * Writes a stopword item to the temporary file.
             * If the item is being updated, it writes the new version.
             *
             * @param oldItem The original item from the dictionary.
             * @return The written item, or null if the item was deleted.
             * @throws DictionaryException if the file was updated concurrently.
             */
            public StopwordsItem write(final StopwordsItem oldItem) {
                try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/com/SmbComRenameTest.java

            // When
            int result = smbComRename.writeParameterWordsWireFormat(dst, dstIndex);
    
            // Then
            assertEquals(2, result);
    
            // Verify that search attributes are written correctly
            int expectedAttributes = SmbConstants.ATTR_HIDDEN | SmbConstants.ATTR_SYSTEM | SmbConstants.ATTR_DIRECTORY;
            assertEquals((byte) (expectedAttributes & 0xFF), dst[dstIndex]);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/LongAdder.java

    /*
     * Written by Doug Lea with assistance from members of JCP JSR-166
     * Expert Group and released to the public domain, as explained at
     * http://creativecommons.org/publicdomain/zero/1.0/
     */
    
    /*
     * Source:
     * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/LongAdder.java?revision=1.17
     */
    
    package com.google.common.cache;
    
    import com.google.common.annotations.GwtCompatible;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

         * @return the number of bytes written
         */
        protected abstract int writeParameterWordsWireFormat(byte[] dst, int dstIndex);
    
        /**
         * Writes the data bytes portion of the SMB message to the wire format.
         *
         * @param dst the destination buffer
         * @param dstIndex the starting offset in the buffer
         * @return the number of bytes written
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 38.9K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/info/Smb2SetInfoRequestTest.java

                assertArrayEquals(testFileId, actualFileId);
    
                // Verify that info.encode was called
                verify(mockInfo, times(1)).encode(any(byte[].class), anyInt());
    
                // Verify total bytes written
                assertTrue(bytesWritten > 32); // At least the fixed part plus some info
            } catch (Exception e) {
                throw new RuntimeException(e);
            }
        }
    
        @ParameterizedTest
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/META-INF/NOTICE.vm

    in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holders nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED....
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Sep 10 19:27:25 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

             * If the item is being updated, it writes the new version.
             *
             * @param oldItem The original item from the dictionary.
             * @return The written item, or null if the item was deleted.
             * @throws DictionaryException if the file was updated concurrently.
             */
            public StemmerOverrideItem write(final StemmerOverrideItem oldItem) {
                try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/lock/Smb2LockResponseTest.java

                SMBUtil.writeInt2(0, readBuffer, 12); // Reserved bytes
    
                // When
                int written = response.writeBytesWireFormat(writeBuffer, 5);
                int read = response.readBytesWireFormat(readBuffer, 10);
    
                // Then
                assertEquals(0, written);
                assertEquals(4, read);
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
Back to top