- Sort Score
- Result 10 results
- Languages All
Results 1151 - 1160 of 1,602 for goString (0.05 sec)
-
src/test/java/org/codelibs/core/lang/MethodUtilTest.java
} /** * */ @Test public void testIsToStringMethod() { final Method toStringMethod = ClassUtil.getMethod(getClass(), "toString"); assertThat(MethodUtil.isToStringMethod(toStringMethod), is(true)); final Method hashCodeMethod = ClassUtil.getMethod(getClass(), "hashCode");
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/Collections2.java
for (Object o : c) { if (!self.contains(o)) { return false; } } return true; } /** An implementation of {@link Collection#toString()}. */ static String toStringImpl(final Collection<?> collection) { StringBuilder sb = newStringBuilderForCollection(collection.size()).append('['); boolean first = true; for (Object o : collection) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 23.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java
public <T> void testToString() { assertEquals(String.class.getName(), new TypeToken<String>() {}.toString()); assertEquals("T", TypeToken.of(new TypeCapture<T>() {}.capture()).toString()); assertEquals("java.lang.String", new Entry<String, Integer>() {}.keyType().toString()); } private static <K, V> TypeToken<Map<K, V>> mapOf(Class<K> keyType, Class<V> valueType) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 21:13:09 UTC 2024 - 89.1K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
msg = "duplicate declaration of version " + Objects.toString(dependency.getVersion(), "(?)"); } else { msg = "version " + Objects.toString(existing.getVersion(), "(?)") + " vs " + Objects.toString(dependency.getVersion(), "(?)"); } addViolation( problems,
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 77.1K bytes - Viewed (0) -
guava/src/com/google/common/io/BaseEncoding.java
try { encodeTo(result, bytes, off, len); } catch (IOException impossible) { throw new AssertionError(impossible); } return result.toString(); } /** * Returns an {@code OutputStream} that encodes bytes using this encoding into the specified * {@code Writer}. When the returned {@code OutputStream} is closed, so is the backing {@code
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 41.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
highlightQueries.stream().forEach(q -> { buf.append("&hq=").append(LaFunctions.u(q)); }); data.setAppendHighlightParams(buf.toString()); } queryResponseList.setExecTime(systemHelper.getCurrentTimeAsLong() - startTime); final NumberFormat nf = NumberFormat.getInstance(params.getLocale()); nf.setMaximumIntegerDigits(2);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 19.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 8.2K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Address.kt
this.hostnameVerifier == that.hostnameVerifier && this.certificatePinner == that.certificatePinner && this.url.port == that.url.port } override fun toString(): String { return "Address{" + "${url.host}:${url.port}, " + (if (proxy != null) "proxy=$proxy" else "proxySelector=$proxySelector") + "}" }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/Log.java
* convenience, to enable developers to pass things like <code>java.lang.StringBuffer</code> directly into the logger, * rather than formatting first by calling <code>toString()</code>. * * @since 4.0.0 */ @Experimental @Provider public interface Log { /** * {@return true if the <b>debug</b> error level is enabled} */ boolean isDebugEnabled();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 5.4K bytes - Viewed (0) -
build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocPropertiesBuilderTest.groovy
_ * classMetaData.className >> name return classMetaData } def classDoc(String name = 'org.gradle.Class') { ClassDoc doc = Mock() _ * doc.name >> name _ * doc.toString() >> "ClassDoc '$name'" return doc } def property(String name, ClassMetaData classMetaData) { return property([:], name, classMetaData) }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 7.6K bytes - Viewed (0)