- Sort Score
- Num 10 results
- Language All
Results 211 - 220 of 4,691 for Done (0.08 seconds)
-
guava-testlib/src/com/google/common/testing/EquivalenceTester.java
* .addEquivalenceGroup("hello", "h" + "ello") * .addEquivalenceGroup("world", "wor" + "ld") * .test(); * } * * <p>Note that testing {@link Object#equals(Object)} is more simply done using the {@link * EqualsTester}. It includes an extra test against an instance of an arbitrary class without having * to explicitly add another equivalence group. * * @author Gregory Kick * @since 10.0 */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 4.1K bytes - Click Count (0) -
src/bytes/bytes.go
// It returns the byte index in s of the first Unicode // code point satisfying f(c), or -1 if none do. func IndexFunc(s []byte, f func(r rune) bool) int { return indexFunc(s, f, true) } // LastIndexFunc interprets s as a sequence of UTF-8-encoded code points. // It returns the byte index in s of the last Unicode // code point satisfying f(c), or -1 if none do. func LastIndexFunc(s []byte, f func(r rune) bool) int {
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Mar 12 17:56:55 GMT 2026 - 36.3K bytes - Click Count (0) -
docs/distributed/decom-encrypted-sse-s3.sh
./mc admin decom start myminio/ http://localhost:9000/tmp/xl/{1...10}/disk{0...1} until $(./mc admin decom status myminio/ | grep -q Complete); do echo "waiting for decom to finish..." sleep 1 done kill $pid_1 kill $pid_2 sleep 5 (minio server --address ":9001" http://localhost:9001/tmp/xl/{11...30}/disk{0...3} 2>&1 >/tmp/removed.log) & pid=$!Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon May 27 19:17:46 GMT 2024 - 4.5K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ForbiddenPatternsTask.java
} File outputMarker = getOutputMarker(); outputMarker.getParentFile().mkdirs(); Files.write(outputMarker.toPath(), "done".getBytes(StandardCharsets.UTF_8)); } @OutputFile public File getOutputMarker() { return new File(projectLayout.getBuildDirectory().getAsFile().get(), "markers/" + getName()); }Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 6.8K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/info/BuildParams.java
/** * Initialize global build parameters. This method accepts and a initialization function which in turn accepts a * {@link MutableBuildParams}. Initialization can be done in "stages", therefore changes override existing values, and values from * previous calls to {@link #init(Consumer)} carry forward. In cases where you want to clear existing valuesCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 22 07:24:59 GMT 2021 - 7.7K bytes - Click Count (0) -
docs/distributed/DECOMMISSION.md
- On Kubernetes setups, the statefulset specification needs to be modified by changing the command line input for the MinIO container. Once the relevant changes are done, proceed to execute `kubectl apply -f statefulset.yaml`.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Jul 11 14:59:49 GMT 2022 - 8.3K bytes - Click Count (0) -
docs/en/docs/tutorial/stream-json-lines.md
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 4.3K bytes - Click Count (0) -
compat/maven-model-builder/src/site/apt/index.apt
[] [] * Inheritance Assembly Inheritance Assembly consists in filling current model empty fields with values taken from parent model. It is done in <<<InheritanceAssembler>>> ({{{./apidocs/org/apache/maven/model/inheritance/InheritanceAssembler.html}javadoc}}), with its <<<DefaultInheritanceAssembler>>> implementation
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 03 08:42:52 GMT 2025 - 13.2K bytes - Click Count (0) -
docs/ko/docs/tutorial/server-sent-events.md
`data` ํ๋๋ ํญ์ JSON์ผ๋ก ์ธ์ฝ๋ฉ๋ฉ๋๋ค. Pydantic ๋ชจ๋ธ์ ํฌํจํด JSON์ผ๋ก ์ง๋ ฌํํ ์ ์๋ ๊ฐ์ ๋ชจ๋ ์ ๋ฌํ ์ ์์ต๋๋ค. ## ์์ ๋ฐ์ดํฐ { #raw-data } JSON ์ธ์ฝ๋ฉ ์์ด ๋ฐ์ดํฐ๋ฅผ ๋ณด๋ด์ผ ํ๋ค๋ฉด, `data` ๋์ `raw_data`๋ฅผ ์ฌ์ฉํ์ธ์. ๋ฏธ๋ฆฌ ํฌ๋งท๋ ํ ์คํธ, ๋ก๊ทธ ๋ผ์ธ, ๋๋ `[DONE]`๊ณผ ๊ฐ์ ํน์ํ <dfn title="ํน์ํ ์กฐ๊ฑด์ด๋ ์ํ๋ฅผ ๋ํ๋ด๋ ๋ฐ ์ฌ์ฉ๋๋ ๊ฐ">"์ผํฐ๋"</dfn> ๊ฐ์ ๋ณด๋ผ ๋ ์ ์ฉํฉ๋๋ค. {* ../../docs_src/server_sent_events/tutorial003_py310.py hl[17] *} /// note | ์ฐธ๊ณCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:56:39 GMT 2026 - 5.3K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/AggregateFuture.java
* setFuture called on it: Neither of those can happen until we've finished processing all * the completed inputs. And we're still processing at least one input, the one that * triggered handleException.) * * TODO(cpovirk): Think about whether we could/should use Verify to check the return value of * addCausalChain. */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 16K bytes - Click Count (0)