- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 589 for v1 (0.01 seconds)
-
docs/ja/docs/advanced/behind-a-proxy.md
"root_path": "/api/v1" } ``` /// tip | 豆知識 `http://127.0.0.1:8000/app` にアクセスしているにもかかわらず、オプション `--root-path` から取得した `root_path` が `/api/v1` と表示されている点に注目してください。 /// 次に、Traefik のポートでプレフィックス付きの URL [http://127.0.0.1:9999/api/v1/app](http://127.0.0.1:9999/api/v1/app) を開きます。 同じレスポンスが得られます: ```JSON { "message": "Hello World", "root_path": "/api/v1" } ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 18.9K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractClosingFutureTest.java
<V1, V2, U> ClosingFunction2<V1, V2, U> waitFor(ClosingFunction2<V1, V2, U> closingFunction2) { return waitFor(closingFunction2, ClosingFunction2.class); } @SuppressWarnings("unchecked") // proxy for a generic class <V1, V2, U> AsyncClosingFunction2<V1, V2, U> waitFor( AsyncClosingFunction2<V1, V2, U> asyncClosingFunction2) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 63K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateResponse.java
LeaseV2CreateContextResponse v2 = getLeaseV2Context(); if (v2 != null) { return v2.getLeaseKey(); } LeaseV1CreateContextResponse v1 = getLeaseV1Context(); if (v1 != null) { return v1.getLeaseKey(); } return null; } /** * Get the lease state from the response * @return the lease state or 0 if no lease was granted
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:49:49 GMT 2025 - 15.4K bytes - Click Count (0) -
android/guava/src/com/google/common/graph/ValueGraphBuilder.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Apr 02 14:49:41 GMT 2026 - 7.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/it/search/FavoritesApiTests.java
import org.junit.jupiter.api.Test; import io.restassured.RestAssured; import io.restassured.path.json.JsonPath; import io.restassured.response.Response; /** * Integration tests for the Favorites API (/api/v1/favorites and /api/v1/documents/{docId}/favorite) * This test requires crawled documents and favorites feature to be properly configured */ @Tag("it") @Disabled("Requires favorites feature to be enabled and crawled documents")
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Dec 20 03:03:44 GMT 2025 - 9.9K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/arm64.s
VADD V1, V2, V3 // 4384e15e VADD V1, V3, V3 // 6384e15e VSUB V12, V30, V30 // de87ec7e VSUB V12, V20, V30 // 9e86ec7e VFMLA V1.D2, V12.D2, V1.D2 // 81cd614e VFMLA V1.S2, V12.S2, V1.S2 // 81cd210e VFMLA V1.S4, V12.S4, V1.S4 // 81cd214e VFMLS V1.D2, V12.D2, V1.D2 // 81cde14e
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Feb 27 20:41:17 GMT 2026 - 96.2K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableListMultimap.java
public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1) { ImmutableListMultimap.Builder<K, V> builder = ImmutableListMultimap.builder(); builder.put(k1, v1); return builder.build(); } /** Returns an immutable multimap containing the given entries, in order. */ public static <K, V> ImmutableListMultimap<K, V> of(K k1, V v1, K k2, V v2) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Dec 09 15:58:48 GMT 2025 - 19.3K bytes - Click Count (0) -
internal/s3select/sql/funceval.go
return arg, nil } return FromNull(), nil } func nullif(v1, v2 *Value) (res *Value, err error) { // Handle Null cases if v1.IsNull() || v2.IsNull() { return v1, nil } err = inferTypesForCmp(v1, v2) if err != nil { return nil, err } atleastOneNumeric := v1.isNumeric() || v2.isNumeric() bothNumeric := v1.isNumeric() && v2.isNumeric() if atleastOneNumeric || !bothNumeric {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 13.2K bytes - Click Count (0) -
src/cmd/api/testdata/src/pkg/p4/p4.go
// license that can be found in the LICENSE file. package p4 type Pair[T1 interface{ M() }, T2 ~int] struct { f1 T1 f2 T2 } func NewPair[T1 interface{ M() }, T2 ~int](v1 T1, v2 T2) Pair[T1, T2] { return Pair[T1, T2]{f1: v1, f2: v2} } func (p Pair[X1, _]) First() X1 { return p.f1 } func (p Pair[_, X2]) Second() X2 { return p.f2 } // Deprecated: Use something else.
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Dec 02 16:29:41 GMT 2022 - 552 bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/ClosingFuture.java
* the arguments, or if any has already been {@linkplain #finishToFuture() finished} */ public static <V1 extends @Nullable Object, V2 extends @Nullable Object> Combiner2<V1, V2> whenAllSucceed(ClosingFuture<V1> future1, ClosingFuture<V2> future2) { return new Combiner2<>(future1, future2); } /**Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 101.7K bytes - Click Count (0)