- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 336 for detect (0.29 sec)
-
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CoreExtensionSelector.java
* * @param <C> The context type. */ public interface CoreExtensionSelector<C extends LookupContext> { /** * Selects core extensions to be loaded from list of all sources detected. */ @Nonnull List<CoreExtension> selectCoreExtensions(LookupInvoker<C> invoker, C context);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Mar 13 12:50:59 UTC 2025 - 1.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/CircleCIDetector.java
*/ public class CircleCIDetector implements CIDetector { public static final String NAME = "CircleCI"; private static final String CIRCLECI = "CIRCLECI"; @Override public Optional<CIInfo> detectCI() { String ciEnv = System.getenv(CIRCLECI); if ("true".equals(ciEnv)) { return Optional.of(new CIInfo() { @Override public String name() {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Apr 13 18:50:07 UTC 2025 - 1.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/JenkinsCIDetector.java
*/ public class JenkinsCIDetector implements CIDetector { public static final String NAME = "Jenkins"; private static final String WORKSPACE = "WORKSPACE"; @Override public Optional<CIInfo> detectCI() { String workspace = System.getenv(WORKSPACE); if (workspace != null && !workspace.trim().isEmpty()) { return Optional.of(new CIInfo() { @OverrideRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Apr 13 18:50:07 UTC 2025 - 1.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/GithubCIDetector.java
public static final String NAME = "GitHub"; private static final String GITHUB_ACTIONS = "GITHUB_ACTIONS"; private static final String RUNNER_DEBUG = "RUNNER_DEBUG"; @Override public Optional<CIInfo> detectCI() { String ciEnv = System.getenv(GITHUB_ACTIONS); if ("true".equals(ciEnv)) { return Optional.of(new CIInfo() { @Override public String name() {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Apr 13 18:50:07 UTC 2025 - 1.7K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/TravisCIDetector.java
public static final String NAME = "Travis"; private static final String TRAVIS = "TRAVIS"; private static final String TRAVIS_DEBUG_MODE = "TRAVIS_DEBUG_MODE"; @Override public Optional<CIInfo> detectCI() { String ciEnv = System.getenv(TRAVIS); if ("true".equals(ciEnv)) { return Optional.of(new CIInfo() { @Override public String name() {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Apr 13 18:50:07 UTC 2025 - 1.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.29.md
- Fixed attaching volumes after detach errors. Now volumes that failed to detach are not treated as attached. Kubernetes will make sure they are fully attached before they can be used by pods. ([#120595](https://github.com/kubernetes/kubernetes/pull/120595), [@jsafrane](https://github.com/jsafrane))
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Wed Mar 12 00:36:01 UTC 2025 - 429.6K bytes - Viewed (1) -
internal/disk/stat_openbsd.go
Free: uint64(s.F_bsize) * uint64(s.F_bavail), Files: uint64(s.F_files), Ffree: uint64(s.F_ffree), FSType: getFSType(s.F_fstypename[:]), } if info.Free > info.Total { return info, fmt.Errorf("detected free space (%d) > total drive space (%d), fs corruption at (%s). please run 'fsck'", info.Free, info.Total, path) } info.Used = info.Total - info.Free return info, nil }
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Mon Feb 26 19:34:50 UTC 2024 - 1.8K bytes - Viewed (0) -
docs/es/docs/tutorial/dependencies/classes-as-dependencies.md
En ambos casos, tendrá: * Un parámetro de query `q` opcional que es un `str`. * Un parámetro de query `skip` que es un `int`, con un valor por defecto de `0`. * Un parámetro de query `limit` que es un `int`, con un valor por defecto de `100`. En ambos casos, los datos serán convertidos, validados, documentados en el esquema de OpenAPI, etc. ## Úsalo { #use-it }Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 7.1K bytes - Viewed (0) -
docs/es/docs/advanced/additional-responses.md
/// /// info | Información A menos que especifiques un media type diferente explícitamente en tu parámetro `responses`, FastAPI asumirá que el response tiene el mismo media type que la clase de response principal (por defecto `application/json`). Pero si has especificado una clase de response personalizada con `None` como su media type, FastAPI usará `application/json` para cualquier response adicional que tenga un modelo asociado. ///
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 9.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/GenericCIDetector.java
* detector result IF there are also any other returned via discovered services. */ public class GenericCIDetector implements CIDetector { public static final String NAME = "Generic"; private static final String CI = "CI"; @Override public Optional<CIInfo> detectCI() { String ciEnv = System.getenv(CI);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Apr 13 18:50:07 UTC 2025 - 1.9K bytes - Viewed (0)