- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 1,358 for toString (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/opensearch/user/bsbhv/BsUserBhv.java
result.setBusinessCategory(DfTypeUtil.toString(source.get("businessCategory"))); result.setCarLicense(DfTypeUtil.toString(source.get("carLicense"))); result.setCity(DfTypeUtil.toString(source.get("city"))); result.setDepartmentNumber(DfTypeUtil.toString(source.get("departmentNumber"))); result.setDescription(DfTypeUtil.toString(source.get("description")));
Created: 2025-12-20 09:19 - Last Modified: 2025-03-15 06:53 - 12K bytes - Click Count (0) -
guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java
Created: 2025-12-26 12:43 - Last Modified: 2025-07-14 14:44 - 15.7K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/MojoLogWrapper.java
@Override public void debug(CharSequence content) { if (isDebugEnabled()) { logger.debug(toString(content)); } } private String toString(CharSequence content) { if (content == null) { return ""; } else { return content.toString(); } } @Override public void debug(CharSequence content, Throwable error) {Created: 2025-12-28 03:35 - Last Modified: 2025-06-06 14:28 - 3.3K bytes - Click Count (0) -
src/test/java/jcifs/smb/DfsReferralTest.java
DfsReferral dfsReferral = new DfsReferral(mockData); // Verify that toString() returns the expected string from the mock data object assertEquals(expectedToString, dfsReferral.toString(), "toString() should return the result of the wrapped DfsReferralData's toString() method."); }
Created: 2025-12-20 13:44 - Last Modified: 2025-08-14 05:31 - 1.6K bytes - Click Count (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java
assertTrue(restriction.isLowerBoundInclusive(), CHECK_LOWER_BOUND_INCLUSIVE); assertEquals("1.4", restriction.getUpperBound().toString(), CHECK_UPPER_BOUND); assertTrue(restriction.isUpperBoundInclusive(), CHECK_UPPER_BOUND_INCLUSIVE); restriction = restrictions.get(2); assertEquals("1.5", restriction.getLowerBound().toString(), CHECK_LOWER_BOUND);
Created: 2025-12-28 03:35 - Last Modified: 2025-03-30 23:08 - 44.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/ToStringHelperTest.java
assertEquals(expected, helper.toString()); // Call toString again assertEquals(expected, helper.toString()); // Make sure the cached value is reset when we modify the helper at all String expected2 = "TestClass{field1=1, value1, field2=value2, 2}"; helper.addValue(2); assertEquals(expected2, helper.toString()); } @GwtIncompatible // Class names are obfuscated in GWTCreated: 2025-12-26 12:43 - Last Modified: 2025-05-13 18:46 - 21.4K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/exception/CrawlerSystemExceptionTest.java
} /** * Test toString method */ public void test_toString() { CrawlerSystemException exception1 = new CrawlerSystemException("Test message"); String toString1 = exception1.toString(); assertNotNull(toString1); assertTrue(toString1.contains("CrawlerSystemException")); assertTrue(toString1.contains("Test message"));Created: 2025-12-20 11:21 - Last Modified: 2025-09-03 14:42 - 20K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/NtlmChallengeTest.java
} @Nested @DisplayName("toString() Tests") class ToStringTests { @Test @DisplayName("toString with valid data produces expected format") void testToStringWithValidData() { byte[] challenge = new byte[] { (byte) 0x01, (byte) 0x02, (byte) 0x03, (byte) 0xFF }; UniAddress dc = mock(UniAddress.class); when(dc.toString()).thenReturn("SERVER123");Created: 2025-12-20 13:44 - Last Modified: 2025-08-14 05:31 - 6K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/UnicodeStringTest.java
// Test toString with empty string and zterm = true UnicodeString emptyUnicodeStringTrue = new UnicodeString("", true); assertEquals("", emptyUnicodeStringTrue.toString(), "toString should return empty string for empty input with zterm"); // Test toString with empty string and zterm = falseCreated: 2025-12-20 13:44 - Last Modified: 2025-08-14 05:31 - 9.3K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/com/SmbComTreeDisconnectTest.java
} /** * Test toString method behavior - requires valid configuration */ @Test @DisplayName("Test toString requires valid configuration") public void testToStringRequiresValidConfig() { // Constructor with null config throws exception, so we can't test toString with null config // Instead, test that toString works with a valid config // GivenCreated: 2025-12-20 13:44 - Last Modified: 2025-08-14 05:31 - 18.5K bytes - Click Count (0)