- Sort Score
- Result 10 results
- Languages All
Results 421 - 430 of 1,787 for Defaults (0.06 sec)
-
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java
*/ default Logger logger() { return parserRequest().logger(); } /** * Shorthand for {@link MessageBuilderFactory}. */ default MessageBuilderFactory messageBuilderFactory() { return parserRequest().messageBuilderFactory(); } /** * Shorthand for {@link Lookup}. */ default Lookup lookup() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 17 08:06:47 UTC 2024 - 5.2K bytes - Viewed (0) -
docs/en/docs/tutorial/response-status-code.md
/// ## Changing the default
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 11:13:18 UTC 2024 - 3.9K bytes - Viewed (0) -
guava/src/com/google/common/reflect/AbstractInvocationHandler.java
return super.equals(obj); } /** * By default delegates to {@link Object#hashCode}. The dynamic proxies' {@code hashCode()} will * delegate to this method. Subclasses can override this method to provide custom equality. */ @Override public int hashCode() { return super.hashCode(); } /** * By default delegates to {@link Object#toString}. The dynamic proxies' {@code toString()} will
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jan 05 17:43:40 UTC 2022 - 5.2K bytes - Viewed (0) -
compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml
<version>0.0.0.0</version> <packaging>type</packaging> ]]></configuration> <description> This is the Artifact instance created from the essential project attributes: groupId, artifactId, version, and packaging (with a default packaging of 'jar'). </description> </expression> <expression> <syntax>project.parent</syntax> <configuration> <![CDATA[ <parent> <groupId>project.group</groupId>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java
* dependency management entries in transitive dependency POMs. Maven 4 enables "transitivity" by default, hence * unlike Maven2, obeys dependency management entries deep in dependency graph as well. * <br/> * Default: <code>"true"</code>. * * @since 4.0.0 */ @Config(defaultValue = "true")
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:24:08 UTC 2024 - 14K bytes - Viewed (0) -
cmd/speedtest.go
} // if the default concurrency yields zero results, throw an error. if throughputHighestResults[i].Downloads == 0 && opts.concurrencyStart == concurrency { errStr = fmt.Sprintf("no results for downloads upon first attempt, concurrency %d and duration %s", opts.concurrencyStart, opts.duration) } // if the default concurrency yields zero results, throw an error.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon May 06 09:45:10 UTC 2024 - 9.2K bytes - Viewed (0) -
apache-maven/src/assembly/maven/conf/maven.properties
${includes} = ?"${maven.user.conf}/maven.properties", \ ?"${maven.project.conf}/maven.properties" # # Settings # # Define the default three levels for settings. # The '-is' flag will override the 'maven.installation.settings' property. # The '-ps' flag will override the 'maven.project.settings' property.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:11:04 UTC 2024 - 1.8K bytes - Viewed (0) -
compat/maven-resolver-provider/src/site/apt/dependency-types.apt
~~ KIND, either express or implied. See the License for the ~~ specific language governing permissions and limitations ~~ under the License. --- Default Dependency Types --- Hervé Boutemy --- 2024-04-02 --- Default Dependency Types Reference Defined in <<<DefaultTypeProvider>>> ({{{./apidocs/org/apache/maven/repository/internal/type/DefaultTypeProvider.html}javadoc}},
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
* * @see #getArtifacts() */ @Nonnull Packaging getPackaging(); /** * Returns the project language. It is by default determined by {@link #getPackaging()}. * * @see #getPackaging() */ @Nonnull default Language getLanguage() { return getPackaging().language(); } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Sat Sep 28 09:03:24 UTC 2024 - 7.8K bytes - Viewed (0) -
docs_src/schema_extra_example/tutorial002_py310.py
from pydantic import BaseModel, Field app = FastAPI() class Item(BaseModel): name: str = Field(examples=["Foo"]) description: str | None = Field(default=None, examples=["A very nice Item"]) price: float = Field(examples=[35.4]) tax: float | None = Field(default=None, examples=[3.2]) @app.put("/items/{item_id}") async def update_item(item_id: int, item: Item): results = {"item_id": item_id, "item": item}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 479 bytes - Viewed (0)