Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for inputCount (1.36 sec)

  1. src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponseTest.java

            int inputOffsetField = inputCount > 0 ? payloadStart : 0;
            int outputOffsetField = outputCount > 0 ? payloadStart + inputCount : 0;
    
            // inputOffset (relative to header start)
            SMBUtil.writeInt4(inputOffsetField, buf, pos);
            pos += 4;
            // inputCount
            SMBUtil.writeInt4(inputCount, buf, pos);
            pos += 4;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlResponse.java

            this.outputData = this.outputBuffer == null ? createOutputDecodable() : null;
    
            if (this.inputData != null) {
                this.inputData.decode(buffer, inputOffset, inputCount);
            }
            bufferIndex = Math.max(inputOffset + inputCount, bufferIndex);
    
            if (this.outputBuffer != null) {
                if (outputCount > this.outputBuffer.length) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/Futures.java

          if (localState != null) {
            // Don't print the actual array! We don't want inCompletionOrder(list).toString() to have
            // quadratic output.
            return "inputCount=["
                + localState.inputFutures.length
                + "], remaining=["
                + localState.incompleteOutputCount.get()
                + "]";
          }
          return null;
        }
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 64.3K bytes
    - Viewed (0)
Back to top