- Sort Score
- Num 10 results
- Language All
Results 91 - 100 of 1,032 for optimal (0.06 seconds)
-
cmd/batch-replicate_test.go
source: type: minio # valid values are "s3" or "minio" bucket: mytest prefix: object-prefix1 # 'PREFIX' is optional # If your source is the 'local' alias specified to 'mc batch start', then the 'endpoint' and 'credentials' fields are optional and can be omitted # Either the 'source' or 'remote' *must* be the "local" deployment # endpoint: "http://127.0.0.1:9000"Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Aug 01 12:53:30 GMT 2024 - 7.9K bytes - Click Count (0) -
apache-maven/src/assembly/maven/bin/mvnDebug.cmd
@REM @REM JAVA_HOME (Optional) Points to a Java installation. @REM MAVEN_BATCH_ECHO (Optional) Set to 'on' to enable the echoing of the batch commands. @REM MAVEN_BATCH_PAUSE (Optional) set to 'on' to wait for a key stroke before ending. @REM MAVEN_OPTS (Optional) Java runtime options used when Maven is executed. @REM MAVEN_SKIP_RC (Optional) Flag to disable loading of mavenrc files.
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 18 11:01:21 GMT 2024 - 1.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java
* @param active Should the profile be activated? * @param optional Can the build continue if the profile does not exist? */ public void addProfileActivation(String id, boolean active, boolean optional) { final ActivationSettings settings = ActivationSettings.of(active, optional); this.activations.put(id, settings); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 11 16:38:19 GMT 2025 - 5.6K bytes - Click Count (0) -
docs/fr/docs/advanced/advanced-python-types.md
Voici un conseil issu de mon point de vue trรจs subjectif : - ๐จ รvitez d'utiliser `Optional[SomeType]` - ร la place โจ **utilisez `Union[SomeType, None]`** โจ.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:12:41 GMT 2026 - 2.3K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/TestUtils.java
when(options.all()).thenReturn(Optional.ofNullable(all)); when(options.infer()).thenReturn(Optional.ofNullable(infer)); when(options.model()).thenReturn(Optional.ofNullable(model)); when(options.plugins()).thenReturn(Optional.ofNullable(plugins)); when(options.modelVersion()).thenReturn(Optional.ofNullable(modelVersion)); return options; } /**
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 8.9K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Lookup.java
/** * Performs a lookup for optional typed component. * * @param type The component type. * @return Optional carrying component or empty optional if no such component. * @param <T> The component type. * @throws LookupException if there is some provisioning related issue. */ @Nonnull <T> Optional<T> lookupOptional(Class<T> type); /**Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jan 10 12:55:54 GMT 2024 - 3.3K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseInvokerRequest.java
} @Override public Optional<Path> rootDirectory() { return Optional.ofNullable(rootDirectory); } @Override public Optional<List<CoreExtensions>> coreExtensions() { return Optional.ofNullable(coreExtensions); } @Override public Optional<CIInfo> ciInfo() { return Optional.ofNullable(ciInfo); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jun 11 13:14:09 GMT 2025 - 4.2K bytes - Click Count (0) -
docs/ko/docs/advanced/advanced-python-types.md
`typing`์๋ `None`์ด ๋ ์ ์์์ ์ ์ธํ๋ ์ถ์ฝํ์ผ๋ก `Optional`๋ ์์ต๋๋ค. ์์ฃผ ๊ฐ์ธ์ ์ธ ๊ด์ ์์์ ํ์ ๋๋ค: - ๐จ `Optional[SomeType]` ์ฌ์ฉ์ ํผํ์ธ์ - ๋์ โจ **`Union[SomeType, None]`๋ฅผ ์ฌ์ฉํ์ธ์** โจ. ๋์ ๋๋ฑํ๋ฉฐ ๋ด๋ถ์ ์ผ๋ก๋ ๊ฐ์ต๋๋ค. ํ์ง๋ง ๋จ์ด "optional"์ ๊ฐ์ด ์ ํ ์ฌํญ์ด๋ผ๋ ์ธ์์ ์ฃผ๋ ๋ฐ๋ฉด, ์ค์ ์๋ฏธ๋ "๊ฐ์ด `None`์ด ๋ ์ ์๋ค"๋ ๋ป์ ๋๋ค. ๊ฐ์ด ์ ํ ์ฌํญ์ด ์๋๋ผ ์ฌ์ ํ ํ์์ธ ๊ฒฝ์ฐ์๋ ๊ทธ๋ ์ต๋๋ค. `Union[SomeType, None]`๊ฐ ์๋ฏธ๋ฅผ ๋ ๋ช ํํ๊ฒ ๋๋ฌ๋ธ๋ค๊ณ ์๊ฐํฉ๋๋ค. ์ด๋ ๋จ์ง ๋จ์ด์ ๋ช ์นญ์ ๋ฌธ์ ์ ๋๋ค. ํ์ง๋ง ์ด๋ฐ ๋จ์ด๊ฐ ์ฌ๋ฌ๋ถ๊ณผ ํ์์ด ์ฝ๋๋ฅผ ์ด๋ป๊ฒ ์๊ฐํ๋์ง์ ์ํฅ์ ์ค ์ ์์ต๋๋ค. ์๋ฅผ ๋ค์ด, ๋ค์ ํจ์๋ฅผ ๋ณด์ธ์: ```python
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:57:01 GMT 2026 - 2.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ActivationSettings.java
return of(active, optional, true); } static ActivationSettings of(final boolean active, final boolean optional, final boolean recursive) { return new ActivationSettings(active, optional, recursive); } static ActivationSettings activated() { return new ActivationSettings(true, false, true); } static ActivationSettings activatedOpt() {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 11 16:38:19 GMT 2025 - 2K bytes - Click Count (0) -
docs/zh/docs/advanced/advanced-python-types.md
ไธค่ ๆฏ็ญไปท็๏ผๅบๅฑๅ ถๅฎไนๆฏไธๆ ท็ใไฝๆๆดๆจ่ไฝฟ็จ `Union` ่ไธๆฏ `Optional`๏ผๅ ไธบๅ่ฏโoptionalโ๏ผๅฏ้๏ผ็่ตทๆฅไผๆ็คบ่ฏฅๅผๆฏๅฏ้็๏ผ่ๅฎ็ๆญฃ็ๅซไนๆฏโๅฎๅฏไปฅๆฏ `None`โ๏ผๅณไฝฟๅฎๅนถไธๆฏๅฏ้็๏ผไป็ถๆฏๅฟ ๅกซ็ใ ๆ่ฎคไธบ `Union[SomeType, None]` ๆด่ฝๆ็กฎ่กจ่พพๅ ถๅซไนใ ่ฟๅชๆฏๅ ณไบ่ฏ่ฏญๅๅฝๅ็้ฎ้ข๏ผไฝ่ฟไบ่ฏ่ฏญไผๅฝฑๅไฝ ๅไฝ ็้ๅๅฆไฝ็ๅพ ไปฃ็ ใ ไธพไธชไพๅญ๏ผ็่ฟๆฎตๅฝๆฐ๏ผ ```python from typing import Optional def say_hi(name: Optional[str]): print(f"Hey {name}!") ``` ๅๆฐ `name` ่ขซๅฎไนไธบ `Optional[str]`๏ผไฝๅฎๅนถไธๆฏโๅฏ้โ็๏ผไฝ ไธ่ฝไธไผ ่ฟไธชๅๆฐๅฐฑ่ฐ็จๅฝๆฐ๏ผ ```Python
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:37:57 GMT 2026 - 2K bytes - Click Count (0)