- Sort Score
- Num 10 results
- Language All
Results 961 - 970 of 1,126 for apie (0.03 seconds)
-
internal/config/subnet/config.go
Value: "", }, } // Config represents the subnet related configuration type Config struct { // The subnet license token - Deprecated Dec 2021 License string `json:"license"` // The subnet api key APIKey string `json:"apiKey"` // The HTTP(S) proxy URL to use for connecting to SUBNET Proxy string `json:"proxy"` // Transport configured with proxy_url if set optionally. transport http.RoundTripperCreated: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Feb 18 16:25:55 GMT 2025 - 3.9K bytes - Click Count (0) -
docs/ja/docs/advanced/additional-responses.md
# OpenAPI の追加レスポンス { #additional-responses-in-openapi } /// warning | 注意 これは比較的高度なトピックです。 FastAPI を使い始めたばかりであれば、これは不要かもしれません。 /// 追加のステータスコード、メディアタイプ、説明などを伴う追加レスポンスを宣言できます。 それらの追加レスポンスは OpenAPI スキーマに含まれ、API ドキュメントにも表示されます。 ただし、それらの追加レスポンスについては、ステータスコードとコンテンツを指定して `JSONResponse` などの `Response` を直接返す必要があります。 ## `model` を使った追加レスポンス { #additional-response-with-model } *path operation デコレータ*に `responses` パラメータを渡せます。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 10K bytes - Click Count (0) -
src/main/webapp/js/chat.js
/** * Fess RAG Chat JavaScript * Enhanced with Atlassian Design System patterns */ var FessChat = (function() { 'use strict'; var config = { apiUrl: '/api/v1/chat', streamUrl: '/api/v1/chat/stream', labels: { thinking: 'Thinking...', waiting: '...', error: 'An error occurred. Please try again.', sources: 'Sources', statusReady: 'AI Assistant',Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 01:36:02 GMT 2026 - 30.6K bytes - Click Count (0) -
docs/zh/docs/deployment/https.md
域可以被安全地验证并自动生成证书。 这还允许自动更新这些证书。 我们的想法是自动获取和更新这些证书,以便你可以永远免费拥有**安全的 HTTPS**。 ## 面向开发人员的 HTTPS { #https-for-developers } 这里有一个 HTTPS API 看起来是什么样的示例,我们会分步说明,并且主要关注对开发人员重要的部分。 ### 域名 { #domain-name } 第一步我们要先**获取**一些**域名(Domain Name)**。 然后可以在 DNS 服务器(可能是你的同一家云服务商提供的)中配置它。 你可能拥有一个云服务器(虚拟机)或类似的东西,并且它会有一个<dfn title="不会随时间改变。非动态的。">固定</dfn> **公共IP地址**。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 12.5K bytes - Click Count (0) -
guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedPriorityBlockingQueue.java
* (In other words, this method must allocate a new array). The caller is thus free to modify the * returned array. * * <p>This method acts as bridge between array-based and collection-based APIs. * * @return an array containing all of the elements in this queue */ @CanIgnoreReturnValue // pushed down from class to method @Override public Object[] toArray() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 21:06:42 GMT 2026 - 19K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/JobProcessingExceptionTest.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; public class JobProcessingExceptionTest extends UnitFessTestCase { @Test public void test_constructor_withCause() { // Test constructor with Throwable causeCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.2K bytes - Click Count (0) -
architecture/README.md
### Build execution model Gradle generally does some work in response to a client request. There are several different clients, for example the `gradlew` command or the tooling API client, that can send requests to a Gradle daemon. Each daemon runs one request at a time. Generally speaking, the daemons only act in response to a request from a client and do not take any action on their own.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jun 12 09:50:57 GMT 2025 - 3.6K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketExtensionsTest.kt
* limitations under the License. */ package okhttp3.internal.ws import assertk.assertThat import assertk.assertions.isEqualTo import okhttp3.Headers.Companion.headersOf import org.junit.jupiter.api.Test class WebSocketExtensionsTest { @Test fun emptyHeader() { assertThat(parse("")).isEqualTo(WebSocketExtensions()) } @Test fun noExtensionHeader() {Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 8.2K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/NullnessCasts.java
* a "null sentinel" to take its place. When the time comes to convert it back to a {@code T} to * return to a caller, the code needs to a way to return {@code null} from a method that returns * "plain {@code T}." This API provides that. */ @SuppressWarnings({"nullness", "TypeParameterUnusedInFormals", "ReturnMissingNullable"}) // The warnings are legitimate. Each time we use this method, we document why. @ParametricNullness
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Aug 13 20:49:47 GMT 2025 - 4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java
import java.util.HashMap; import java.util.Map; import java.util.regex.Pattern; import org.codelibs.fess.entity.DataStoreParams; import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInfo; public class FileListIndexUpdateCallbackImplTest extends UnitFessTestCase { public FileListIndexUpdateCallbackImpl indexUpdateCallback; @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 19.7K bytes - Click Count (0)