- Sort Score
- Num 10 results
- Language All
Results 1751 - 1760 of 2,409 for pong (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava/src/com/google/common/collect/AbstractListMultimap.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Apr 12 15:07:59 GMT 2025 - 4.6K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/ExecutionError.java
* provide a non-nullable {@code cause}, as many users expect to find one. */ public ExecutionError(@Nullable Error cause) { super(cause); } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Feb 13 17:34:21 GMT 2025 - 4K bytes - Click Count (0) -
guava-tests/test/com/google/common/hash/HashingInputStreamTest.java
public void testHash_hashesCorrectlyForSkipping() throws Exception { HashCode expectedHash = sha512().hashBytes(new byte[] {'m', 's'}); HashingInputStream in = new HashingInputStream(sha512(), buffer); long numOfByteSkipped = in.skip(2); assertEquals(2, numOfByteSkipped); byte[] buf = new byte[4]; int numOfByteRead = in.read(buf, 0, buf.length); assertEquals(2, numOfByteRead);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 19 18:53:45 GMT 2026 - 5.1K bytes - Click Count (0) -
src/main/java/org/codelibs/core/exception/ClSQLException.java
import org.codelibs.core.message.MessageFormatter; /** * {@link SQLException} for S2Util. * * @author higa */ public class ClSQLException extends SQLException { private static final long serialVersionUID = 4098267431221202677L; /** * The message code. */ private final String messageCode; /** * The arguments for the message. */Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Jul 05 00:11:05 GMT 2025 - 5.4K bytes - Click Count (0) -
guava/src/com/google/common/collect/StandardRowSortedTable.java
checkNotNull(fromKey); return new StandardRowSortedTable<R, C, V>(sortedBackingMap().tailMap(fromKey), factory) .rowMap(); } } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Jul 18 15:05:43 GMT 2025 - 4.4K bytes - Click Count (0) -
build-tools-internal/src/main/resources/checkstyle_suppressions.xml
configuration of classes that aren't in packages. --> <suppress files="test[/\\]framework[/\\]src[/\\]test[/\\]java[/\\]Dummy.java" checks="PackageDeclaration" /> <!-- Intentionally has long example curl commands to coincide with sibling Painless tests. --> <suppress files="modules[/\\]lang-painless[/\\]src[/\\]test[/\\]java[/\\]org[/\\]elasticsearch[/\\]painless[/\\]ContextExampleTests.java" checks="LineLength" />
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 5.5K bytes - Click Count (0) -
docs/fr/docs/advanced/json-base64-bytes.md
Si vous allez sur les `/docs`, vous verrez que le champ `data` attend des octets encodés en base64 : <div class="screenshot"> <img src="/img/tutorial/json-base64-bytes/image01.png"> </div> Vous pourriez envoyer une requête comme : ```json { "description": "Some data", "data": "aGVsbG8=" } ``` /// tip | Astuce `aGVsbG8=` est l'encodage base64 de `hello`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:33:45 GMT 2026 - 2.8K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/header-param-models.md
FastAPI 會從請求的標頭為每個欄位擷取資料,並交給你已定義的 Pydantic 模型實例。 ## 檢視文件 { #check-the-docs } 你可以在 `/docs` 的文件介面看到所需的標頭: <div class="screenshot"> <img src="/img/tutorial/header-param-models/image01.png"> </div> ## 禁止額外標頭 { #forbid-extra-headers } 在某些特殊情境(可能不常見)下,你可能想限制允許接收的標頭。 你可以使用 Pydantic 的模型設定來 `forbid` 任何 `extra` 欄位: {* ../../docs_src/header_param_models/tutorial002_an_py310.py hl[10] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:15:26 GMT 2026 - 2.3K bytes - Click Count (0) -
docs/uk/docs/tutorial/cookie-param-models.md
## Перевірка у документації { #check-the-docs } Ви можете побачити визначені cookies в інтерфейсі документації за адресою `/docs`: <div class="screenshot"> <img src="/img/tutorial/cookie-param-models/image01.png"> </div> /// info | Інформація Майте на увазі, що оскільки **браузери обробляють cookies** особливим чином і «за лаштунками», вони **не** дозволяють **JavaScript** легко з ними працювати.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 12:42:01 GMT 2026 - 4.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java
* @return optional entity containing the scheduled job data, or empty if creation fails */ private static OptionalEntity<ScheduledJob> getEntity(final CreateForm form, final String username, final long currentTime) { switch (form.crudMode) { case CrudMode.CREATE: return OptionalEntity.of(new ScheduledJob()).map(entity -> { entity.setCreatedBy(username);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 21.8K bytes - Click Count (0)