- Sort Score
- Num 10 results
- Language All
Results 141 - 150 of 342 for fOo (0.02 seconds)
-
guava-tests/test/com/google/common/base/StringsTest.java
assertThat(Strings.lenientFormat("%s")).isEqualTo("%s"); assertThat(Strings.lenientFormat("%s", 5)).isEqualTo("5"); assertThat(Strings.lenientFormat("foo", 5)).isEqualTo("foo [5]"); assertThat(Strings.lenientFormat("foo", 5, 6, 7)).isEqualTo("foo [5, 6, 7]"); assertThat(Strings.lenientFormat("%s %s %s", "%s", 1, 2)).isEqualTo("%s 1 2"); assertThat(Strings.lenientFormat("", 5, 6)).isEqualTo(" [5, 6]");
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 15:59:55 GMT 2026 - 11.4K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/RequestCommonTest.kt
val requestWithoutCache = Request.Builder().url("http://localhost/api").build() val builtRequestWithoutCache = requestWithoutCache.newBuilder().url("http://localhost/api/foo").build() assertThat(builtRequestWithoutCache.url).isEqualTo( "http://localhost/api/foo".toHttpUrl(), ) val requestWithCache = Request .Builder() .url("http://localhost/api") .build() // cache url object
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 11K bytes - Click Count (0) -
android/guava/src/com/google/common/reflect/TypeToInstanceMap.java
/** * Maps the specified class to the specified value. Does <i>not</i> associate this value with any * of the class's supertypes. * * <p>{@code putInstance(Foo.class, foo)} is equivalent to {@code * putInstance(TypeToken.of(Foo.class), foo)}. * * @return the value previously associated with this class (possibly {@code null}), or {@code * null} if there was no previous entry. */ @CanIgnoreReturnValue
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 3.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/eventbus/SubscriberTest.java
new EqualsTester() .addEqualityGroup( Subscriber.create(bus, "foo", charAt), Subscriber.create(bus, "foo", charAt)) .addEqualityGroup(Subscriber.create(bus, "bar", charAt)) .addEqualityGroup(Subscriber.create(bus, "foo", concat)) .testEquals(); } private Method getTestSubscriberMethod(String name) { try {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 26 21:52:12 GMT 2025 - 4.8K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CacheTest.kt
.build(), ) val url = server.url("/same") // First QUERY request with body "foo" val request1 = Request .Builder() .url(url) .query("foo".toRequestBody()) .cacheUrlOverride(url.newBuilder().addQueryParameter("body", "foo").build()) .build() val response1 = client.newCall(request1).execute()
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Mar 20 09:13:37 GMT 2026 - 121K bytes - Click Count (0) -
dbflute_fess/playsql/_readme.txt
The defaultValueMap.dataprop is for common columns like this: /- - - - - - - - - - - - - - - - - - - - map:{ ; REGISTER_DATETIME = sysdate ; REGISTER_USER = foo ; REGISTER_PROCESS = bar ; UPDATE_DATETIME = sysdate ; UPDATE_USER = foo ; UPDATE_PROCESS = bar ; VERSION_NO = 0 }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jul 04 22:46:31 GMT 2015 - 1.3K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptions.java
* <th>{@literal Map} Property Name</th> * </tr> * <tr> * <td>{@literal foo}</td> * <td>{@literal foo}</td> * </tr> * <tr> * <td>{@literal foo_bar}</td> * <td>{@literal foo.bar}</td> * </tr> * <tr> * <td>{@literal foo_bar_baz}</td> * <td>{@literal foo.bar.baz}</td> * </tr> * </table> * * @param beanDelimiter
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 17.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/net/UrlEscapersTest.java
// Plus for spaces assertEscaping(e, "+", ' '); assertEscaping(e, "%2B", '+'); assertThat(e.escape("safe with spaces")).isEqualTo("safe+with+spaces"); assertThat(e.escape("foo@bar.com")).isEqualTo("foo%40bar.com"); } public void testUrlPathSegmentEscaper() { UnicodeEscaper e = (UnicodeEscaper) urlPathSegmentEscaper(); assertPathEscaper(e); assertUnescaped(e, '+'); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 2.8K bytes - Click Count (0) -
guava-testlib/test/com/google/common/testing/TestLogHandlerTest.java
// stored log records causes a ConcurrentModificationException assertTrue(handler.getStoredLogRecords().isEmpty()); ExampleClassUnderTest.foo(); ExampleClassUnderTest.foo(); for (LogRecord unused : handler.getStoredLogRecords()) { ExampleClassUnderTest.foo(); } } @Override public final void runBare() throws Throwable { try { setUp(); runTest(); } finally {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 16:11:48 GMT 2026 - 2.9K bytes - Click Count (0) -
guava/src/com/google/common/base/Optional.java
* {@code Optional} class. However, this common usage: * * {@snippet : * for (Foo foo : possibleFoo.asSet()) { * doSomethingWith(foo); * } * } * * ... can be replaced with: * * {@snippet : * possibleFoo.ifPresent(foo -> doSomethingWith(foo)); * } * * <p><b>Java 9 users:</b> some use cases can be written with calls to {@code optional.stream()}.Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jun 04 13:03:16 GMT 2025 - 15.1K bytes - Click Count (0)