- Sort Score
- Num 10 results
- Language All
Results 691 - 700 of 755 for consume (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/webapp/js/marked.min.js
`)?"":` `)+r.raw,s.text+=`
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:21:57 GMT 2026 - 41.5K bytes - Click Count (0) -
docs/ko/docs/deployment/docker.md
<div class="termy"> ```console $ docker build -t myimage . ---> 100% ``` </div> /// tip | 팁 끝에 있는 `.`에 주목하세요. 이는 `./`와 동일하며, Docker에게 컨테이너 이미지를 빌드할 때 사용할 디렉터리를 알려줍니다. 이 경우 현재 디렉터리(`.`)입니다. /// ### 도커 컨테이너 시작하기 { #start-the-docker-container } * 여러분의 이미지에 기반하여 컨테이너를 실행합니다: <div class="termy"> ```console
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 32.6K bytes - Click Count (0) -
docs/ja/docs/_llm-test.md
# 宇宙にあいさつを表示 echo "Hello universe" ``` ...そしてコンソールのコード例です... ```console $ <font color="#4E9A06">fastapi</font> run <u style="text-decoration-style:solid">main.py</u> <span style="background-color:#009485"><font color="#D3D7CF"> FastAPI </font></span> Starting server Searching for package file structure ``` ...さらに別のコンソールのコード例です... ```console // ディレクトリ "Code" を作成 $ mkdir code // そのディレクトリに移動 $ cd code ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 13.5K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/response-model.md
/// info | 說明 要使用 `EmailStr`,請先安裝 [`email-validator`](https://github.com/JoshData/python-email-validator)。 請先建立一個[虛擬環境](../virtual-environments.md)、啟用它,然後安裝,例如: ```console $ pip install email-validator ``` 或: ```console $ pip install "pydantic[email]" ``` /// 而我們使用這個模型同時宣告輸入與輸出: {* ../../docs_src/response_model/tutorial002_py310.py hl[16] *} 現在,當瀏覽器建立一個帶有密碼的使用者時,API 會在回應中回傳相同的密碼。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 14.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
* </pre> * * <h3>Option 2: Set individual SP URLs</h3> * <pre> * # SP Entity ID (Audience URI in IdP) * saml.sp.entityid=https://your-fess-server.example.com/sso/metadata * * # Assertion Consumer Service URL * saml.sp.assertion_consumer_service.url=https://your-fess-server.example.com/sso/ * * # Single Logout Service URL * saml.sp.single_logout_service.url=https://your-fess-server.example.com/sso/logout
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 03:13:33 GMT 2026 - 20.2K bytes - Click Count (3) -
go.mod
github.com/klauspost/reedsolomon v1.12.4 github.com/lib/pq v1.10.9 github.com/lithammer/shortuuid/v4 v4.2.0 github.com/miekg/dns v1.1.65 github.com/minio/cli v1.24.2 github.com/minio/console v1.7.7-0.20250905210349-2017f33b26e1 github.com/minio/csvparser v1.0.0 github.com/minio/dnscache v0.1.1 github.com/minio/dperf v0.6.3 github.com/minio/highwayhash v1.0.3 github.com/minio/kms-go/kes v0.3.1
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Oct 10 18:57:03 GMT 2025 - 12.2K bytes - Click Count (0) -
docs/ko/docs/tutorial/request-files.md
/// info | 정보 업로드된 파일을 전달받기 위해 먼저 [`python-multipart`](https://github.com/Kludex/python-multipart)를 설치해야합니다. [가상 환경](../virtual-environments.md)을 생성하고, 활성화한 다음, 예를 들어 다음과 같이 설치하세요: ```console $ pip install python-multipart ``` 업로드된 파일들은 "폼 데이터"의 형태로 전송되기 때문에 이 작업이 필요합니다. /// ## `File` 임포트 { #import-file } `fastapi` 에서 `File` 과 `UploadFile` 을 임포트 합니다:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 8.3K bytes - Click Count (0) -
src/bytes/buffer.go
} // ReadRune reads and returns the next UTF-8-encoded // Unicode code point from the buffer. // If no bytes are available, the error returned is io.EOF. // If the bytes are an erroneous UTF-8 encoding, it // consumes one byte and returns U+FFFD, 1. func (b *Buffer) ReadRune() (r rune, size int, err error) { if b.empty() { // Buffer is empty, reset to recover space. b.Reset() return 0, 0, io.EOF } c := b.buf[b.off]
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Nov 14 19:01:17 GMT 2025 - 16.5K bytes - Click Count (0) -
cmd/data-usage-cache.go
d.replaceHashed(path, nil, *flat) return } total := d.totalChildrenRec(path.Key()) if total < limit { return } // Appears to be printed with _MINIO_SERVER_DEBUG=off // console.Debugf(" %d children found, compacting %v\n", total, path) leaves := make([]struct { objects uint64 path dataUsageHash }, total) // Collect current leaves that have children. leaves = leaves[:0]
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 34.7K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/RateLimiter.java
} /** * Reserves the given number of permits from this {@code RateLimiter} for future use, returning * the number of microseconds until the reservation can be consumed. * * @return time in microseconds to wait until the resource can be acquired, never negative */ final long reserve(int permits) { checkPermits(permits); synchronized (mutex()) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 26 20:05:27 GMT 2025 - 21.8K bytes - Click Count (0)