- Sort Score
 - Result 10 results
 - Languages All
 
Results 601 - 610 of 5,095 for tstring (0.04 sec)
- 
				
				
src/test/java/jcifs/smb1/smb1/SmbComDeleteDirectoryTest.java
int result = sdd.readBytesWireFormat(buffer, 0); assertEquals(0, result); } /** * Test toString method. */ @Test void testToString() { SmbComDeleteDirectory sdd = new SmbComDeleteDirectory("testDir"); String result = sdd.toString(); assertTrue(result.contains("SmbComDeleteDirectory")); assertTrue(result.contains("directoryName=testDir")); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.7K bytes - Viewed (0) - 
				
				
src/test/java/jcifs/smb1/smb1/SmbComLogoffAndXTest.java
assertEquals(0, msg.readBytesWireFormat(null, index)); } @Test @DisplayName("toString formats correctly") void toStringFormatsCorrectly() { SmbComLogoffAndX msg = new SmbComLogoffAndX(null); String s = msg.toString(); assertNotNull(s, "toString should not be null"); assertTrue(s.startsWith("SmbComLogoffAndX["), "expected prefix " + "SmbComLogoffAndX[" + " but got " + s);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.8K bytes - Viewed (0) - 
				
				
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-HeadersCommon.kt
internal fun Headers.commonName(index: Int): String = namesAndValues.getOrNull(index * 2) ?: throw IndexOutOfBoundsException("name[$index]") internal fun Headers.commonValue(index: Int): String = namesAndValues.getOrNull(index * 2 + 1) ?: throw IndexOutOfBoundsException("value[$index]") internal fun Headers.commonValues(name: String): List<String> { var result: MutableList<String>? = null for (i in 0 until size) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 5.8K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java
return true; } @Override public String toString() { return "StopwordsItem [id=" + id + ", inputs=" + input + ", newInputs=" + newInput + "]"; } /** * Converts the item to a string representation for writing to a file. * * @return The stopword as a string. */ public String toLineString() { if (isUpdated()) {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.6K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsRelatedQuery.java
/** createdBy */ protected String createdBy; /** createdTime */ protected Long createdTime; /** queries */ protected String[] queries; /** term */ protected String term; /** updatedBy */ protected String updatedBy; /** updatedTime */ protected Long updatedTime; /** virtualHost */ protected String virtualHost;Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.6K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsRequestHeader.java
/** createdBy */ protected String createdBy; /** createdTime */ protected Long createdTime; /** name */ protected String name; /** updatedBy */ protected String updatedBy; /** updatedTime */ protected Long updatedTime; /** value */ protected String value; /** webConfigId */ protected String webConfigId;Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.6K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/core/text/DecimalFormatUtil.java
} /** * Normalizes the string representation of a number. * * @param s * A string representing a number * @return The normalized string * @see #normalize(String, Locale) */ public static String normalize(final String s) { return normalize(s, LocaleUtil.getDefault()); } /**Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.5K bytes - Viewed (0) - 
				
				
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java
private static final String PROTWORDS = "protwords"; List<ProtwordsItem> protwordsItemList; /** * Constructor for ProtwordsFile. * @param id the file identifier * @param path the file path * @param timestamp the file timestamp */ public ProtwordsFile(final String id, final String path, final Date timestamp) { super(id, path, timestamp); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.5K bytes - Viewed (0) - 
				
				
src/test/java/org/codelibs/fess/validation/CronExpressionTest.java
private String defaultCron; @CronExpression(groups = SpecialGroup.class) private String specialCron; public String getDefaultCron() { return defaultCron; } public void setDefaultCron(String defaultCron) { this.defaultCron = defaultCron; } public String getSpecialCron() {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.2K bytes - Viewed (0) - 
				
				
src/test/java/jcifs/internal/smb1/com/SmbComTreeDisconnectTest.java
} } /** * Test toString method */ @Test @DisplayName("Test toString returns properly formatted string") public void testToString() { // Given smbComTreeDisconnect = new SmbComTreeDisconnect(config); // When String result = smbComTreeDisconnect.toString(); // Then assertNotNull(result);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.5K bytes - Viewed (0)