- Sort Score
- Num 10 results
- Language All
Results 1321 - 1330 of 1,420 for read0 (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
android/guava/src/com/google/common/collect/LinkedListMultimap.java
* <p>Keys and values may be null. All optional multimap methods are supported, and all returned * views are modifiable. * * <p>This class is not threadsafe when any concurrent operations update the multimap. Concurrent * read operations will work correctly. To allow concurrent update operations, wrap your multimap * with a call to {@link Multimaps#synchronizedListMultimap}. * * <p>See the Guava User Guide article on <a href=Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 26.6K bytes - Click Count (0) -
docs/en/docs/deployment/concepts.md
* Kubernetes with an Ingress Controller like Nginx * With an external component like cert-manager for certificate renewals * Handled internally by a cloud provider as part of their services (read below ๐)Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 18.5K bytes - Click Count (1) -
cmd/format-erasure.go
return nil, err } return getFormatErasureInQuorum(formats) } // ecDrivesNoConfig returns the erasure coded drives in a set if no config has been set. // It will attempt to read it from env variable and fall back to drives/2. func ecDrivesNoConfig(setDriveCount int) (int, error) { sc, err := storageclass.LookupConfig(config.KVS{}, setDriveCount) if err != nil { return 0, err }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 23.1K bytes - Click Count (0) -
scripts/docs.py
for lang_path in get_lang_paths(): if lang_path.name in {"en", "em"} or not lang_path.is_dir(): continue if lang_path.name not in SUPPORTED_LANGS: # Skip languages that are not yet ready continue code = lang_path.name languages.append({code: f"/{code}/"}) for lang_dict in languages: code = list(lang_dict.keys())[0] url = lang_dict[code]
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 17:46:10 GMT 2026 - 25.4K bytes - Click Count (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
this.socket.setSoTimeout(this.closeTimeout); this.socket.receive(this.in); log.trace("NetBIOS: new data read from socket"); final int nameTrnId = NameServicePacket.readNameTrnId(this.rcv_buf, 0); final NameServicePacket response = this.responseTable.get(Integer.valueOf(nameTrnId));Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 38.5K bytes - Click Count (0) -
docs/ja/docs/tutorial/dependencies/dependencies-with-yield.md
ใใณใณใใญในใใใใผใธใฃใใจใฏใ`with`ๆใฎไธญใงไฝฟ็จใงใใPythonใชใใธใงใฏใใฎใใจใงใใ ไพใใฐใ[ใใกใคใซใ่ชญใฟ่พผใใซใฏ`with`ใไฝฟ็จใใใใจใใงใใพใ](https://docs.python.org/3/tutorial/inputoutput.html#reading-and-writing-files): ```Python with open("./somefile.txt") as f: contents = f.read() print(contents) ``` ใใฎๅพใฎ`open("./somefile.txt")`ใฏใใณใณใใญในใใใใผใธใฃใใจๅผใฐใใใชใใธใงใฏใใไฝๆใใพใใ `with`ใใญใใฏใ็ตไบใใใจใไพๅคใใใฃใใจใใฆใใใกใคใซใ็ขบใใซ้ใใพใใ `yield`ใๆใคไพๅญ้ขไฟใไฝๆใใใจใ**FastAPI** ใฏๅ ้จ็ใซใใใใณใณใใญในใใใใผใธใฃใซๅคๆใใไปใฎ้ข้ฃใใผใซใจ็ตใฟๅใใใพใใ
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 15.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/SuggestJobTest.java
readerPropsField.setAccessible(true); readerPropsField.set(reader, props); org.dbflute.helper.jprop.JavaPropertiesResult result = reader.read(); propField.set(this, result); } catch (Exception e) { // Fallback: ignore initialization errors since we override methods anyway } } }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 31.6K bytes - Click Count (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 26.4K bytes - Click Count (0) -
docs/ko/docs/tutorial/dependencies/dependencies-with-yield.md
์๋ฅผ ๋ค์ด, [with๋ฅผ ์ฌ์ฉํด ํ์ผ์ ์ฝ์ ์ ์์ต๋๋ค](https://docs.python.org/3/tutorial/inputoutput.html#reading-and-writing-files): ```Python with open("./somefile.txt") as f: contents = f.read() print(contents) ``` ๋ด๋ถ์ ์ผ๋ก `open("./somefile.txt")` ๋ "์ปจํ ์คํธ ๊ด๋ฆฌ์(Context Manager)"๋ผ๊ณ ๋ถ๋ฆฌ๋ ๊ฐ์ฒด๋ฅผ ์์ฑํฉ๋๋ค. `with` ๋ธ๋ก์ด ๋๋๋ฉด, ์์ธ๊ฐ ๋ฐ์ํ๋๋ผ๋ ํ์ผ์ ๋ซ๋๋ก ๋ณด์ฅํฉ๋๋ค.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:06:26 GMT 2026 - 14.3K bytes - Click Count (0) -
cmd/data-scanner.go
if globalIsErasure && !cache.Info.SkipHealing { // Do a heal check on an object once every n cycles. Must divide into healFolderInclude s.healObjectSelect = healObjectSelectProb } done := ctx.Done() // Read top level in bucket. select { case <-done: return cache, ctx.Err() default: } root := dataUsageEntry{} folder := cachedFolder{name: cache.Info.Name, objectHealProbDiv: 1}
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 45.5K bytes - Click Count (0)