- Sort Score
- Result 10 results
- Languages All
Results 231 - 240 of 386 for lett (0.05 sec)
-
guava/src/com/google/common/collect/MoreCollectors.java
*/ @SuppressWarnings("unchecked") public static <T extends @Nullable Object> Collector<T, ?, T> onlyElement() { return (Collector) ONLY_ELEMENT; } /** * This atrocity is here to let us report several of the elements in the stream if there were more * than one, not just two. */ @SuppressWarnings("EmptyList") // ImmutableList doesn't support nullable element types
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Apr 12 15:07:59 UTC 2025 - 5.4K bytes - Viewed (0) -
docs/fr/docs/async.md
Donc, pendant ce temps, l'ordinateur pourra effectuer d'autres tΓ’ches, pendant que "fichier-lent" π se termine.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 25.4K bytes - Viewed (0) -
tests/count_test.go
t.Fatalf("Build count with select, but got %v", result.Statement.SQL.String()) } var count4 int64 if err := DB.Table("users").Joins("LEFT JOIN companies on companies.name = users.name").Where("users.name = ?", user1.Name).Count(&count4).Error; err != nil || count4 != 1 { t.Errorf("count with join, got error: %v, count %v", err, count4) } var count5 int64
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Oct 30 09:15:49 UTC 2023 - 6.9K bytes - Viewed (0) -
mockwebserver/README.md
MockWebServer ============= A scriptable web server for testing HTTP clients ### Motivation This library makes it easy to test that your app Does The Right Thing when it makes HTTP and HTTPS calls. It lets you specify which responses to return and then verify that requests were made as expected. Because it exercises your full HTTP stack, you can be confident that you're
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 19 13:40:52 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/StringUtil.java
} /** * Removes whitespace from the left side of the string. * * @param text * The text to trim * @return The resulting string */ public static final String ltrim(final String text) { return ltrim(text, null); } /** * Removes the specified characters from the left side of the string. * * @param text
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 21.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java
*/ andx.uid = uid; dstIndex += ((AndXServerMessageBlock) andx).writeAndXWireFormat(dst, dstIndex); } else { // the andx smb is not of type andx so lets just write it here and // were done. final int andxStart = dstIndex; andx.wordCount = andx.writeParameterWordsWireFormat(dst, dstIndex); dstIndex += andx.wordCount + 1;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.9K bytes - Viewed (0) -
docs/ko/docs/advanced/websockets.md
ν μ€νΈν΄λ³΄κΈ°: * μ¬λ¬ λΈλΌμ°μ νμμ μ±μ μ½λλ€. * κ° νμμ λ©μμ§λ₯Ό μμ±ν©λλ€. * ν νμ λ«μ보μΈμ. `WebSocketDisconnect` μμΈκ° λ°μνλ©°, λ€λ₯Έ λͺ¨λ ν΄λΌμ΄μΈνΈκ° λ€μκ³Ό κ°μ λ©μμ§λ₯Ό μμ ν©λλ€: ``` Client #1596980209979 left the chat ``` /// tip | ν μ μμ© νλ‘κ·Έλ¨μ μ¬λ¬ WebSocket μ°κ²°μ λ©μμ§λ₯Ό λΈλ‘λμΊμ€νΈνλ λ°©λ²μ 보μ¬μ£Όλ κ°λ¨ν μμ μ λλ€. κ·Έλ¬λ λͺ¨λ κ²μ λ©λͺ¨λ¦¬μ λ¨μΌ 리μ€νΈλ‘ μ²λ¦¬νλ―λ‘, νλ‘μΈμ€κ° μ€ν μ€μΈ λμλ§ λμνλ©° λ¨μΌ νλ‘μΈμ€μμλ§ μλν©λλ€.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Wed Nov 27 20:03:29 UTC 2024 - 6.3K bytes - Viewed (0) -
docs/lambda/README.md
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 7.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSetMultimapTest.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 28.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java
private static void assertSubtypeTokenBeforeSupertypeToken( Iterable<? extends TypeToken<?>> types) { int i = 0; for (TypeToken<?> left : types) { int j = 0; for (TypeToken<?> right : types) { if (left.isSupertypeOf(right)) { assertTrue(left + " should be after " + right, i >= j); } j++; } i++; } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Sep 02 17:23:59 UTC 2025 - 89K bytes - Viewed (0)