- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 330 for virtual (0.06 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
} /** * Processes the given path through the virtual host helper to handle * virtual host configurations and path modifications. * * @param path the HTML path to process * @return the processed path with virtual host handling applied */ protected HtmlNext virtualHost(final HtmlNext path) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 18 04:42:56 GMT 2026 - 14K bytes - Click Count (0) -
cmd/metrics-v3-system-process.go
processVirtualMemoryBytesMD = NewGaugeMD(processVirtualMemoryBytes, "Virtual memory size in bytes") processVirtualMemoryMaxBytesMD = NewGaugeMD(processVirtualMemoryMaxBytes, "Maximum virtual memory size in bytes") ) func loadProcStatMetrics(ctx context.Context, stat procfs.ProcStat, m MetricValues) { if stat.CPUTime() > 0 {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Jun 20 17:55:03 GMT 2024 - 6.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java
testData.add(createRelatedContent("python", "Python Programming", "")); mockBhv.setTestData(testData); int count = relatedContentHelper.load(); assertEquals(1, count); // One virtual host key (empty) String[] results = relatedContentHelper.getRelatedContents("java"); assertEquals(1, results.length); assertEquals("Java Programming", results[0]);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.6K bytes - Click Count (0) -
docs/en/docs/advanced/websockets.md
# WebSockets { #websockets } You can use [WebSockets](https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API) with **FastAPI**. ## Install `websockets` { #install-websockets } Make sure you create a [virtual environment](../virtual-environments.md), activate it, and install `websockets` (a Python library that makes it easy to use the "WebSocket" protocol): <div class="termy"> ```console $ pip install websockets ---> 100% ```Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 07 09:29:03 GMT 2026 - 5.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
return queryContext; } /** * Builds virtual host query filters to restrict search results to the current virtual host. * This method adds filters based on the virtual host key, except for admin searches. * * @param queryContext the query context to modify * @param searchRequestType the type of search request to determine if virtual host filtering should be applied */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 19.9K bytes - Click Count (0) -
docs/ja/docs/environment-variables.md
</div> //// この情報は、[Virtual Environments](virtual-environments.md)について学ぶ際にも役立ちます。 ## まとめ { #conclusion } これで、**環境変数**とは何か、Pythonでどのように使用するかについて、基本的な理解が得られたはずです。 環境変数についての詳細は、[Wikipedia の環境変数](https://en.wikipedia.org/wiki/Environment_variable)も参照してください。 多くの場合、環境変数がどのように役立ち、すぐに適用できるのかはあまり明確ではありません。しかし、開発中のさまざまなシナリオで何度も登場するため、知っておくとよいでしょう。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 9.4K bytes - Click Count (0) -
tensorflow/c/eager/gradients.h
// return registry->Register("Add", AddRegisterer); // } class GradientFunction { public: virtual absl::Status Compute( AbstractContext* ctx, absl::Span<AbstractTensorHandle* const> grad_outputs, absl::Span<AbstractTensorHandle*> grad_inputs) = 0; virtual ~GradientFunction() {} }; // Metadata from the forward operation that is made available to the
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 12 05:11:17 GMT 2024 - 6.9K bytes - Click Count (0) -
docs/zh/docs/tutorial/request-forms-and-files.md
# 请求表单与文件 { #request-forms-and-files } FastAPI 支持同时使用 `File` 和 `Form` 定义文件和表单字段。 /// info | 信息 接收上传的文件和/或表单数据,首先安装 [`python-multipart`](https://github.com/Kludex/python-multipart)。 请先创建并激活一个[虚拟环境](../virtual-environments.md),然后再安装,例如: ```console $ pip install python-multipart ``` /// ## 导入 `File` 与 `Form` { #import-file-and-form } {* ../../docs_src/request_forms_and_files/tutorial001_an_py310.py hl[3] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 1.3K bytes - Click Count (0) -
docs/en/docs/tutorial/request-files.md
You can define files to be uploaded by the client using `File`. /// info To receive uploaded files, first install [`python-multipart`](https://github.com/Kludex/python-multipart). Make sure you create a [virtual environment](../virtual-environments.md), activate it, and then install it, for example: ```console $ pip install python-multipart ``` This is because uploaded files are sent as "form data". ///
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 7K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/request-forms-and-files.md
# 請求中的表單與檔案 { #request-forms-and-files } 你可以使用 `File` 與 `Form` 同時定義檔案與表單欄位。 /// info 要接收上傳的檔案與/或表單資料,請先安裝 [`python-multipart`](https://github.com/Kludex/python-multipart)。 請先建立並啟用一個 [虛擬環境](../virtual-environments.md),然後再安裝,例如: ```console $ pip install python-multipart ``` /// ## 匯入 `File` 與 `Form` { #import-file-and-form } {* ../../docs_src/request_forms_and_files/tutorial001_an_py310.py hl[3] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 1.4K bytes - Click Count (0)