- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 981 for already (0.09 sec)
-
android/guava/src/com/google/common/reflect/TypeVisitor.java
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 3.6K bytes - Viewed (0) -
cmd/prepare-storage.go
if !ok { m = make(map[string]int) printOnce[endpoint] = m if once { m[err.Error()]++ peersLogAlwaysIf(ctx, err) return } } // Once is set and we are here means error was already // printed once. if once { return } // once not set, check if same error occurred 3 times in // a row, then make sure we print it to call attention. if m[err.Error()] > 2 {Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Jul 12 20:51:54 UTC 2024 - 11.1K bytes - Viewed (1) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RoutePlanner.kt
import okhttp3.Address import okhttp3.HttpUrl /** * Policy on choosing which connection to use for an exchange and any retries that follow. This uses * the following strategies: * * 1. If the current call already has a connection that can satisfy the request it is used. Using * the same connection for an initial exchange and its follow-ups may improve locality. *
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue May 27 14:58:02 UTC 2025 - 4.2K bytes - Viewed (0) -
docs/en/docs/virtual-environments.md
```console $ deactivate ``` </div> This way, when you run `python` it won't try to run it from that virtual environment with the packages installed there. ## Ready to Work { #ready-to-work } Now you're ready to start working on your project. /// tip Do you want to understand what's all that above? Continue reading. ๐๐ค ///
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 02 05:09:25 UTC 2025 - 22.8K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md
### Return values { #return-values } And they can return values or not, the values won't be used. So, you can reuse a normal dependency (that returns a value) you already use somewhere else, and even though the value won't be used, the dependency will be executed: {* ../../docs_src/dependencies/tutorial006_an_py39.py hl[11,16] *}Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.9K bytes - Viewed (0) -
src/bufio/bufio.go
const maxConsecutiveEmptyReads = 100 // NewReaderSize returns a new [Reader] whose buffer has at least the specified // size. If the argument io.Reader is already a [Reader] with large enough // size, it returns the underlying [Reader]. func NewReaderSize(rd io.Reader, size int) *Reader { // Is it already a Reader? b, ok := rd.(*Reader) if ok && len(b.buf) >= size { return b } r := new(Reader)
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Wed Sep 03 14:04:47 UTC 2025 - 22K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/Graph.java
return ret; } cycle.removeLast(); stateMap.put(v, DfsState.VISITED); } else if (state == DfsState.VISITING) { // we are already visiting this vertex, this mean we have a cycle int pos = cycle.lastIndexOf(v.label); List<String> ret = cycle.subList(pos, cycle.size()); ret.add(v.label);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.6K bytes - Viewed (0) -
docs/fr/llm-prompt.md
Do not try to translate everything. In particular, keep common programming terms when that is the established usage in the French docs (e.g. ยซframeworkยป, ยซendpointยป, ยซplug-inยป, ยซpayloadยป). Use French where the existing docs already consistently use French (e.g. ยซrequรชteยป, ยซrรฉponseยป). Keep class names, function names, modules, file names, and CLI commands unchanged. ### List of English terms and their preferred French translations
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 10:41:43 UTC 2025 - 4.1K bytes - Viewed (0) -
helm/minio/templates/_helper_create_bucket.txt
echo "Creating bucket '$BUCKET'" ${MC} mb myminio/$BUCKET fi elif [ -z $OBJECTLOCKING ]; then echo "Creating bucket '$BUCKET'" ${MC} mb myminio/$BUCKET else echo "Bucket '$BUCKET' already exists." fi fi # set versioning for bucket if objectlocking is disabled or not set if [ $OBJECTLOCKING = false ]; then if [ ! -z $VERSIONING ]; then if [ $VERSIONING = true ]; then
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Thu Aug 07 09:47:02 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/resources/fess_message_ko.properties
# - - - - - - - - - -/ errors.login.failure = ๋ก๊ทธ์ธ์ ์คํจํ์ต๋๋ค. errors.app.illegal.transition = ์๋ชป๋ ์ ํ์ ๋๋ค. ๋ค์ ์๋ํ์ญ์์ค. errors.app.db.already.deleted = ๋ค๋ฅธ ํ๋ก์ธ์ค์ ์ํด ์ญ์ ๋์์ ์ ์์ต๋๋ค. ๋ค์ ์๋ํ์ญ์์ค. errors.app.db.already.updated = ๋ค๋ฅธ ํ๋ก์ธ์ค์ ์ํด ์ ๋ฐ์ดํธ๋์์ ์ ์์ต๋๋ค. ๋ค์ ์๋ํ์ญ์์ค. errors.app.db.already.exists = ๋ฐ์ดํฐ๊ฐ ์ด๋ฏธ ์กด์ฌํฉ๋๋ค. ๋ค์ ์๋ํ์ญ์์ค. errors.app.double.submit.request = ์ด ์์ฒญ ์ ์ ์ฒ๋ฆฌ๋์์ ์ ์์ต๋๋ค. ๋ค์ ์๋ํ์ญ์์ค.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 14.1K bytes - Viewed (0)