- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 4,811 for tstring (2.74 sec)
-
src/main/java/org/codelibs/fess/job/ExecJob.java
* @param appendValue the value to append to the property value */ protected void addSystemProperty(final List<String> cmdList, final String name, final String defaultValue, final String appendValue) { final String value = System.getProperty(name); if (value != null) { final StringBuilder buf = new StringBuilder();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/primitives/UnsignedLongsBenchmark.java
private static final long[] divisors = new long[ARRAY_SIZE]; private static final String[] decimalStrings = new String[ARRAY_SIZE]; private static final String[] binaryStrings = new String[ARRAY_SIZE]; private static final String[] hexStrings = new String[ARRAY_SIZE]; private static final String[] prefixedHexStrings = new String[ARRAY_SIZE]; @BeforeExperiment void setUp() { for (int i = 0; i < ARRAY_SIZE; i++) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 4.4K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Joiner.java
/** * Returns a string containing the string representation of each of {@code parts}, using the * previously configured separator between each. * * @since 11.0 */ public final String join(Iterator<?> parts) { return appendTo(new StringBuilder(), parts).toString(); } /** * Returns a string containing the string representation of each of {@code parts}, using the
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 19.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/PluginExceptionTest.java
} public void test_toStringMethod() { // Test toString method behavior String message = "Plugin toString test"; PluginException exception = new PluginException(message); String toStringResult = exception.toString(); assertNotNull(toStringResult); assertTrue(toStringResult.contains(PluginException.class.getName()));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/RequestParameterTest.java
assertEquals(expected, param.toString()); } public void test_toString_withEmptyValues() { // Test toString with empty values String name = "emptyParam"; String[] values = {}; RequestParameter param = new RequestParameter(name, values); String expected = "[emptyParam, []]"; assertEquals(expected, param.toString()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/HashingTest.java
.testEquals(); assertEquals(hashFunction1a.toString(), hashFunction1b.toString()); assertEquals(hashFunction2a.toString(), hashFunction2b.toString()); assertEquals(hashFunction3a.toString(), hashFunction3b.toString()); assertEquals(hashFunction4a.toString(), hashFunction4b.toString()); } static void assertSeedlessHashFunctionEquals(Class<?> clazz) throws Exception {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 26.4K bytes - Viewed (2) -
src/main/java/jcifs/pac/kerberos/KerberosEncData.java
import jcifs.pac.ASN1Util; import jcifs.pac.PACDecodingException; import jcifs.util.Encdec; /** * Represents encrypted Kerberos ticket data. */ public class KerberosEncData { private String userRealm; private String userPrincipalName; private ArrayList<InetAddress> userAddresses; private List<KerberosAuthData> userAuthorizations; /** * Constructs KerberosEncData from encrypted token bytes. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 12.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FileAuthenticationDbm.java
protected final String _tablePropertyName = "FileAuthentication"; public String getTableDbName() { return _tableDbName; } @Override public String getTableDispName() { return _tableDispName; } @Override public String getTablePropertyName() { return _tablePropertyName; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbUnsupportedOperationExceptionTest.java
assertTrue(ex instanceof SmbException, "Should be an SmbException"); // toString should include the class name and the message String ts = ex.toString(); assertTrue(ts.contains("SmbUnsupportedOperationException"), "toString should contain class name"); assertTrue(ts.contains(ex.getMessage()), "toString should contain the detail message"); } @ParameterizedTest(name = "Message preserved: [{0}]")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.2K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java
*/ public class DefaultArtifact implements Artifact { private String groupId; private String artifactId; private String baseVersion; private final String type; private final String classifier; private volatile String scope; private volatile File file; private ArtifactRepository repository; private String downloadUrl; private ArtifactFilter dependencyFilter;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 23 17:27:08 UTC 2025 - 14.6K bytes - Viewed (0)