- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 76 for getaaa (0.82 sec)
-
src/main/java/jcifs/smb/DfsReferral.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvTargetName.java
this(encode(targetName)); } /** * Gets the target name from this AV pair * * @return the target name */ public String getTargetName() { return new String(getRaw(), UTF16LE); } /** * @param targetName * @return */ private static byte[] encode(final String targetName) { return targetName.getBytes(UTF16LE); }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultData.java
*/ void setTransformerName(String transformerName); /** * Retrieves the data as a byte array. * * @return a byte array containing the data. */ byte[] getData(); /** * Retrieves the data as a String. * * @return the data in String format. */ String getDataAsString(); /** * Sets the data for this AccessResultData instance.Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.2K bytes - Viewed (10) -
src/test/java/org/codelibs/curl/io/ContentOutputStreamTest.java
@Test public void testGetDataInMemory() throws IOException { // getData() should return the written data when in memory ContentOutputStream cos = new ContentOutputStream(10, Curl.tmpDir); byte[] data = new byte[] { 0, 1, 2, 3, 4 }; cos.write(data); assertTrue(cos.isInMemory()); byte[] result = cos.getData(); assertNotNull(result); assertArrayEquals(data, result);Registered: Sat Dec 20 09:13:53 UTC 2025 - Last Modified: Wed Nov 12 14:01:04 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvPairs.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/FileTransformer.java
* </p> * * <p> * The {@link #storeData(ResponseData, ResultData)} method is the main entry point for storing * the content of a crawled resource. The {@link #getData(AccessResultData)} method retrieves * the stored file path as a File object. * </p> */ public class FileTransformer extends HtmlTransformer { /** Logger instance for this class */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ioctl/SrvPipePeekResponse.java
*/ public int getMessageLength() { return this.messageLength; } /** * Gets the data peeked from the pipe * @return the data */ public byte[] getData() { return this.data; } /** * {@inheritDoc} * * @see Decodable#decode(byte[], int, int) */ @OverrideRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvTimestamp.java
return data; } /** * Gets the timestamp value from this AV pair * * @return the timestamp */ public long getTimestamp() { return SMBUtil.readInt8(getRaw(), 0); }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/av/AvPairsTest.java
AvPair decoded = decodedPairs.get(i); assertEquals(original.getType(), decoded.getType(), "Type should match at index " + i); assertTrue(Arrays.equals(original.getRaw(), decoded.getRaw()), "Raw data should match at index " + i); } } /** * Test decode with AvSingleHost type */ @Test @DisplayName("Decode should create AvSingleHost instance")
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/DomUtil.java
*/ public static void appendText(final Text text, final StringBuilder buf) { assertArgumentNotNull("text", text); assertArgumentNotNull("buf", buf); buf.append(encodeText(text.getData())); } /** * Appends the string representation of a {@link CDATASection}. * * @param cdataSection * The CDATA section. Must not be {@literal null}. * @param bufRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.1K bytes - Viewed (0)