- Sort Score
- Num 10 results
- Language All
Results 171 - 180 of 714 for shall (0.02 seconds)
-
src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java
} /** * Encodes a small integer (1 byte) in NDR format. * * @param s the small integer value to encode */ public void enc_ndr_small(final int s) { this.buf[this.index] = (byte) (s & 0xFF); advance(1); } /** * Decodes a small integer (1 byte) from NDR format. * * @return the decoded small integer value */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 10.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/ByteStreamsTest.java
assertEquals(-1, read); lin.reset(); byte[] small = new byte[5]; read = lin.read(small); assertEquals(2, read); assertEquals(big[0], small[0]); assertEquals(big[1], small[1]); lin.reset(); read = lin.read(small, 2, 3); assertEquals(2, read); assertEquals(big[0], small[2]); assertEquals(big[1], small[3]); } public void testLimit_mark() throws Exception {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 19:26:39 GMT 2026 - 22K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/metadata.md
## API 的中繼資料 { #metadata-for-api } 你可以設定下列欄位,這些欄位會用在 OpenAPI 規格與自動產生的 API 文件介面中: | 參數 | 型別 | 說明 | |------------|------|-------------| | `title` | `str` | API 的標題。 | | `summary` | `str` | API 的簡短摘要。<small>自 OpenAPI 3.1.0、FastAPI 0.99.0 起可用。</small> | | `description` | `str` | API 的簡短說明。可使用 Markdown。 | | `version` | `string` | API 的版本號。這是你自己的應用程式版本,不是 OpenAPI 的版本,例如 `2.5.0`。 | | `terms_of_service` | `str` | 指向 API 服務條款的 URL。若提供,必須是 URL。 |Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 5.6K bytes - Click Count (0) -
.ci/templates.t/pull-request-gradle-unix.yml
RUNTIME_JAVA_HOME=$HOME/.java/$ES_RUNTIME_JAVA JAVA8_HOME=$HOME/.java/java8 JAVA11_HOME=$HOME/.java/java11 JAVA15_HOME=$HOME/.java/openjdk15 - shell: | #!/usr/local/bin/runbld --redirect-stderrCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Jul 01 20:27:05 GMT 2021 - 1.3K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+branch-protection.yml
description: Elasticsearch %BRANCH% branch protection. node: master triggers: - timed: "H 7 * * *" scm: [] parameters: [] builders: - shell: | #!/bin/bash set +x STATUS=$(curl -s https://api.github.com/repos/elastic/elasticsearch/branches/%BRANCH% | jq '.protected') echo "Branch %BRANCH% protection status is: $STATUS"Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu May 06 21:46:09 GMT 2021 - 715 bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+multijob+third-party-tests-geoip.yml
properties-content: | JAVA_HOME=$HOME/.java/$ES_BUILD_JAVA RUNTIME_JAVA_HOME=$HOME/.java/$ES_RUNTIME_JAVA geoip_use_service=true - shell: | #!/usr/local/bin/runbld --redirect-stderrCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu May 06 21:46:09 GMT 2021 - 783 bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+pull-request+part-2-fips.yml
properties-content: | JAVA_HOME=$HOME/.java/$ES_BUILD_JAVA RUNTIME_JAVA_HOME=$HOME/.java/java11 JAVA15_HOME=$HOME/.java/openjdk15 - shell: | #!/usr/local/bin/runbld --redirect-stderrCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Sep 16 01:16:48 GMT 2021 - 1.4K bytes - Click Count (0) -
mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/DeprecationBridge.kt
shutdownOutput = true, ), ) } SocketPolicy.STALL_SOCKET_AT_START -> { result.onRequestStart(SocketEffect.Stall) } SocketPolicy.NO_RESPONSE -> { result.onResponseStart(SocketEffect.Stall) } SocketPolicy.RESET_STREAM_AT_START -> { result.onRequestStart(CloseStream(http2ErrorCode)) } }Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 4.3K bytes - Click Count (1) -
guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java
private enum TimeoutsToUse { ANY(Timeout.values()), PAST(Timeout.MIN, Timeout.MINUS_SMALL, Timeout.ZERO), FUTURE(Timeout.SMALL, Timeout.MAX), SMALL(Timeout.SMALL), FINITE(Timeout.MIN, Timeout.MINUS_SMALL, Timeout.ZERO, Timeout.SMALL), INFINITE(Timeout.LARGE, Timeout.MAX); final ImmutableList<Timeout> timeouts; TimeoutsToUse(Timeout... timeouts) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 26.7K bytes - Click Count (0) -
ISSUES.md
If you open a GitHub Issue, here is our policy: 1. It must be a bug/performance issue or a feature request or a build issue or a documentation issue (for small doc fixes please send a PR instead). 1. Make sure the Issue Template is filled out. 1. The issue should be related to the repo it is created in. **Here's why we have this policy:** We want to focus on the work that benefits the whole community, e.g., fixing bugs and adding features. Individual supportCreated: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Thu Feb 11 22:37:27 GMT 2021 - 606 bytes - Click Count (0)