- Sort Score
- Num 10 results
- Language All
Results 1171 - 1180 of 3,502 for getI (0.14 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/ja/docs/tutorial/first-steps.md
`@app.get("/")`は直下の関数が下記のリクエストの処理を担当することを**FastAPI**に伝えます: * パス `/` * <dfn title="HTTP GET メソッド"><code>get</code> オペレーション</dfn> /// info | `@decorator` 情報 Pythonにおける`@something`シンタックスはデコレータと呼ばれます。 「デコレータ」は関数の上に置きます。かわいらしい装飾的な帽子のようです(この用語の由来はそこにあると思います)。 「デコレータ」は直下の関数を受け取り、それを使って何かを行います。 私たちの場合、このデコレーターは直下の関数が**オペレーション** `get`を使用した**パス** `/`に対応することを**FastAPI** に通知します。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 15.9K bytes - Click Count (0) -
.teamcity/src/main/kotlin/model/PerformanceTestSpec.kt
override fun channel(): String = "adhoc-%teamcity.build.branch%" override val type: PerformanceTestType get() = PerformanceTestType.AD_HOC override val failsStage: Boolean get() = false val buildSpecs: List<FlameGraphGenerationBuildSpec> get() = scenarios.flatMap { scenario -> Os.values().flatMap { os ->Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 12 09:12:03 GMT 2025 - 3.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/AbstractIndexedListIterator.java
private final int size; private int position; /** Returns the element with the specified index. This method is called by {@link #next()}. */ @ParametricNullness protected abstract E get(int index); /** * Constructs an iterator across a sequence of the given size whose initial position is 0. That * is, the first call to {@link #next()} will return the first element (or throw {@linkCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 3.2K bytes - Click Count (0) -
src/main/java/jcifs/smb/DfsImpl.java
synchronized (this.dcLock) { CacheEntry<DfsReferralDataInternal> ce = this.dcCache.get(dom); if (ce != null && System.currentTimeMillis() > ce.expiration) { ce = null; } if (ce != null) { final DfsReferralDataInternal ri = ce.map.get(DC_ENTRY); if (ri == NEGATIVE_ENTRY) { return null; }
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 29.7K bytes - Click Count (0) -
cmd/admin-handlers-users.go
writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(s3Err), r.URL) return } userProvider := mux.Vars(r)["userProvider"] user := r.Form.Get("user") tokenRevokeType := r.Form.Get("tokenRevokeType") fullRevoke := r.Form.Get("fullRevoke") == "true" isTokenSelfRevoke := user == "" if !isTokenSelfRevoke { var err error user, err = getUserWithProvider(ctx, userProvider, user, false)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 90.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/primitives/ImmutableIntArrayTest.java
assertThat(iia.get(0)).isEqualTo(0); assertThat(iia.get(2)).isEqualTo(3); assertThat(iia.subArray(1, 3).get(1)).isEqualTo(3); } public void testGet_bad() { ImmutableIntArray iia = ImmutableIntArray.of(0, 1, 3); assertThrows(IndexOutOfBoundsException.class, () -> iia.get(-1)); assertThrows(IndexOutOfBoundsException.class, () -> iia.get(3));
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 12 14:49:24 GMT 2025 - 20.6K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/HttpMethod.kt
fun permitsRequestBody(method: String): Boolean = !(method == "GET" || method == "HEAD") fun redirectsWithBody(method: String): Boolean = method == "PROPFIND" fun redirectsToGet(method: String): Boolean = method != "PROPFIND" fun isCacheable(requestMethod: String): Boolean = requestMethod == "GET" || requestMethod == "QUERY"
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Oct 03 17:41:45 GMT 2025 - 1.7K bytes - Click Count (0) -
src/archive/tar/example_test.go
tw := tar.NewWriter(&buf) var files = []struct { Name, Body string }{ {"readme.txt", "This archive contains some text files."}, {"gopher.txt", "Gopher names:\nGeorge\nGeoffrey\nGonzo"}, {"todo.txt", "Get animal handling license."}, } for _, file := range files { hdr := &tar.Header{ Name: file.Name, Mode: 0600, Size: int64(len(file.Body)), } if err := tw.WriteHeader(hdr); err != nil {
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Nov 16 16:54:08 GMT 2017 - 1.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsCrawlingInfoBhv.java
final RESULT result = entityType.newInstance(); result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime"))); result.setExpiredTime(DfTypeUtil.toLong(source.get("expiredTime"))); result.setName(DfTypeUtil.toString(source.get("name"))); result.setSessionId(DfTypeUtil.toString(source.get("sessionId"))); return updateEntity(source, result);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 9.5K bytes - Click Count (0) -
fastapi/openapi/utils.py
status_text: str | None = status_code_ranges.get( str(additional_status_code).upper() ) or http.client.responses.get(int(additional_status_code)) description = ( process_response.get("description") or openapi_response.get("description") or status_textCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 15 11:44:39 GMT 2026 - 25.6K bytes - Click Count (0)