Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 465 for OFFSET (0.45 sec)

  1. src/main/java/jcifs/smb/SpnegoContext.java

            } else {
                resp = negotitate(inputBuf, offset, len);
            }
    
            if (resp == null) {
                return null;
            }
            return resp.toByteArray();
        }
    
        private SpnegoToken negotitate(final byte[] inputBuf, final int offset, final int len) throws CIFSException {
            final SpnegoToken spToken = getToken(inputBuf, offset, len);
            byte[] inputToken = null;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbConstants.java

         */
        int SECURITY_USER = 0x01;
    
        /**
         * Offset of command field in SMB header.
         */
        int CMD_OFFSET = 4;
        /**
         * Offset of error code field in SMB header.
         */
        int ERROR_CODE_OFFSET = 5;
        /**
         * Offset of flags field in SMB header.
         */
        int FLAGS_OFFSET = 9;
        /**
         * Offset of signature field in SMB header.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkTest.java

                // Then
                assertEquals(EXPECTED_SIZE, bytesWritten);
    
                // Verify source offset
                assertEquals(sourceOffset, SMBUtil.readInt8(buffer, startIndex));
    
                // Verify target offset
                assertEquals(targetOffset, SMBUtil.readInt8(buffer, startIndex + 8));
    
                // Verify length
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/pac/PacUnicodeString.java

         * Constructs a new PacUnicodeString instance.
         *
         * @param length the actual length of the string in bytes
         * @param maxLength the maximum allocated length for the string in bytes
         * @param pointer the pointer/offset to the string data
         */
        public PacUnicodeString(final short length, final short maxLength, final int pointer) {
            this.length = length;
            this.maxLength = maxLength;
            this.pointer = pointer;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  5. okcurl/src/main/kotlin/okhttp3/curl/logging/OneLineLogFormat.kt

          .optionalStart()
          .appendFraction(NANO_OF_SECOND, 3, 3, true)
          .toFormatter()
    
      private val offset = ZoneOffset.systemDefault()
    
      override fun format(record: LogRecord): String {
        val message = formatMessage(record)
    
        val time = Instant.ofEpochMilli(record.millis).atZone(offset)
    
        return if (record.thrown != null) {
          val sw = StringWriter(4096)
          val pw = PrintWriter(sw)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 2.1K bytes
    - Viewed (1)
  6. src/test/java/jcifs/internal/smb1/com/SmbComQueryInformationTest.java

            assertEquals(0, used, "readBytesWireFormat is unimplemented and must return 0");
        }
    
        private static byte[] subArray(byte[] src, int offset, int length) {
            byte[] dst = new byte[length];
            System.arraycopy(src, offset, dst, 0, length);
            return dst;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb1/smb1/NetShareEnumResponseTest.java

            data[18] = 0;
            data[19] = 0; // remark offset
    
            // Entry 2: IPC$, type 3 (IPC), remark "Inter-Process Communication"
            System.arraycopy("IPC$".getBytes(StandardCharsets.US_ASCII), 0, data, 20, 4);
            data[34] = 0x03;
            data[35] = 0x00; // type = 3
            data[36] = 60;
            data[37] = 0;
            data[38] = 0;
            data[39] = 0; // remark offset
    
            // Remarks data
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

         *
         * @param value the content to append
         * @param offset the index of the first {@code char} to append
         * @param len the number of {@code char}s to append
         * @return the current builder
         */
        @Nonnull
        default MessageBuilder a(char[] value, int offset, int len) {
            return append(String.valueOf(value, offset, len));
        }
    
        /**
         * Append content to the message buffer.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Nov 02 09:29:52 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/trans/nt/FileNotifyInformationImpl.java

            return this.action;
        }
    
        @Override
        public String getFileName() {
            return this.fileName;
        }
    
        /**
         * Gets the offset to the next entry.
         *
         * @return the next entry offset in bytes
         */
        public int getNextEntryOffset() {
            return this.nextEntryOffset;
        }
    
        /**
         * Constructs a file notify information from the given buffer.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableMultiset.java

      @GwtIncompatible // not present in emulated superclass
      @Override
      int copyIntoArray(@Nullable Object[] dst, int offset) {
        for (Multiset.Entry<E> entry : entrySet()) {
          Arrays.fill(dst, offset, offset + entry.getCount(), entry.getElement());
          offset += entry.getCount();
        }
        return offset;
      }
    
      @Override
      public boolean equals(@Nullable Object object) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 20.6K bytes
    - Viewed (0)
Back to top