- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 556 for canf (0.02 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
public static final String THREADS = "T"; public static final String BUILDER = "b"; public static final String NO_TRANSFER_PROGRESS = "ntp"; public static final String CACHE_ARTIFACT_NOT_FOUND = "canf"; public static final String STRICT_ARTIFACT_DESCRIPTOR_POLICY = "sadp"; public static final String IGNORE_TRANSITIVE_REPOSITORIES = "itr"; public static final String AT_FILE = "af";Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 25 17:39:57 UTC 2025 - 14.8K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
public static final String BUILDER = "b"; public static final String NO_TRANSFER_PROGRESS = "ntp"; public static final String COLOR = "color"; public static final String CACHE_ARTIFACT_NOT_FOUND = "canf"; public static final String STRICT_ARTIFACT_DESCRIPTOR_POLICY = "sadp"; public static final String IGNORE_TRANSITIVE_REPOSITORIES = "itr"; public static final String DEBUG = "debug";Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Aug 06 04:56:48 UTC 2025 - 17.8K bytes - Viewed (0) -
apache-maven/src/assembly/maven/conf/settings.xml
| users on a machine (assuming they're all using the same Maven | installation). It's normally provided in | ${maven.installation.conf}/settings.xml. | | NOTE: This location can be overridden with the CLI option: | | -is /path/to/installation/settings.xml | | The sections in this sample file are intended to give you a running start at
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jan 22 07:44:50 UTC 2025 - 11.1K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
FileSystem fs = Jimfs.newFileSystem(Configuration.windows()); Path mavenHome = fs.getPath("C:\\maven"); Files.createDirectories(mavenHome); Path mavenConf = mavenHome.resolve("conf"); Files.createDirectories(mavenConf); Path mavenUserProps = mavenConf.resolve("maven-user.properties");
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 30.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
/** Array of fields that can be highlighted in search results */ protected String[] highlightedFields; /** Array of fields that can be searched against */ protected String[] searchFields; /** Set of fields that can be searched against for O(1) lookup */ protected Set<String> searchFieldSet; /** Array of fields that can be used for faceted search */ protected String[] facetFields;Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 21.9K bytes - Viewed (0) -
docs/en/docs/tutorial/dependencies/dependencies-with-yield.md
So, you can look for that specific exception inside the dependency with `except SomeException`. In the same way, you can use `finally` to make sure the exit steps are executed, no matter if there was an exception or not. {* ../../docs_src/dependencies/tutorial007_py39.py hl[3,5] *} ## Sub-dependencies with `yield` { #sub-dependencies-with-yield }Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 12.9K bytes - Viewed (0) -
docs/en/docs/tutorial/query-params-str-validations.md
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 15:55:38 UTC 2025 - 16.7K bytes - Viewed (0) -
docs/en/docs/contributing.md
If there is no discussion for that language, you can start by requesting the new language. For that, you can follow these steps: * Create a new discussion following the template. * Get a few native speakers to comment on the discussion and commit to help review translations for that language. Once there are several people in the discussion, the FastAPI team can evaluate it and can make it an official translation.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Sep 21 11:29:04 UTC 2025 - 15.1K bytes - Viewed (0) -
docs/en/docs/tutorial/response-model.md
# Response Model - Return Type { #response-model-return-type } You can declare the type used for the response by annotating the *path operation function* **return type**. You can use **type annotations** the same way you would for input data in function **parameters**, you can use Pydantic models, lists, dictionaries, scalar values like integers, booleans, etc. {* ../../docs_src/response_model/tutorial001_01_py310.py hl[16,21] *}Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 15:55:38 UTC 2025 - 15.5K bytes - Viewed (0) -
docs/en/docs/python-types.md
#### Union { #union } You can declare that a variable can be any of **several types**, for example, an `int` or a `str`. In Python 3.6 and above (including Python 3.10) you can use the `Union` type from `typing` and put inside the square brackets the possible types to accept.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 15.6K bytes - Viewed (0)