Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for usedChars (0.24 seconds)

  1. src/main/java/jcifs/pac/PacDataInputStream.java

            final int unusedChars = readInt();
            final int usedChars = readInt();
    
            if (unusedChars > totalChars || usedChars > totalChars - unusedChars) {
                throw new PACDecodingException("Malformed string in PAC");
            }
    
            this.dis.skip(unusedChars * 2);
            final char[] chars = new char[usedChars];
            for (int l = 0; l < usedChars; l++) {
                chars[l] = (char) readShort();
            }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  2. src/test/java/jcifs/pac/PacLogonInfoTest.java

            int totalChars = testString.length();
            writeLittleEndianInt(dos, totalChars); // totalChars
            writeLittleEndianInt(dos, 0); // unusedChars
            writeLittleEndianInt(dos, totalChars); // usedChars
    
            // Write the actual characters (as shorts in little-endian)
            for (char c : testString.toCharArray()) {
                writeLittleEndianShort(dos, (short) c);
            }
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 12.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

                    }
                }
                if (logger.isDebugEnabled()) {
                    logger.debug("[RAG:ANSWER] History included. totalHistory={}, includedTurns={}/{}, usedChars={}, budgetChars={}",
                            history.size(), turns.size() - firstIncludedTurn, turns.size(), budgetChars - remaining, budgetChars);
                }
            } else if (budgetChars > CONTEXT_TRUNCATION_BUFFER) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
Back to Top