- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 38 for fatjar (0.65 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/Type.java
* The fat-JAR is a self-contained JAR and its transitive dependencies will not be resolved, if any. * This type is new in Maven 4. */ String FATJAR = "fatjar"; /** * Artifact type name for a JAR file to unconditionally place on the class path. * If the JAR is modular, its module information are ignored. * This type is new in Maven 4. */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.5K bytes - Viewed (0) -
docs/es/docs/deployment/versions.md
## Fijar tu versión de `fastapi` Lo primero que debes hacer es "fijar" la versión de **FastAPI** que estás usando a la versión específica más reciente que sabes que funciona correctamente para tu aplicación.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 17:46:44 UTC 2024 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/LoggerAdapter.java
*/ package org.codelibs.core.log; /** * Adapter for using any logging framework. * * @author koichik */ interface LoggerAdapter { boolean isFatalEnabled(); void fatal(String message); void fatal(String message, Throwable t); boolean isErrorEnabled(); void error(String message); void error(String message, Throwable t); boolean isWarnEnabled();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/Logger.java
} /** * Outputs FATAL information. * * @param message * Message * @param throwable * Exception */ public void fatal(final Object message, final Throwable throwable) { log.fatal(message.toString(), throwable); } /** * Outputs FATAL information. * * @param message
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 12.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/JclLoggerAdapter.java
@Override public boolean isFatalEnabled() { return logger.isFatalEnabled(); } @Override public void fatal(final String message) { logger.fatal(message); } @Override public void fatal(final String message, final Throwable t) { logger.fatal(message, t); } @Override public boolean isErrorEnabled() { return logger.isErrorEnabled(); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProblemCollector.java
* Returns {@code true} if there is at least one problem collected with severity equal or more severe than * {@link org.apache.maven.api.services.BuilderProblem.Severity#FATAL}. */ default boolean hasFatalProblems() { return hasProblemsFor(BuilderProblem.Severity.FATAL); } /** * Returns {@code true} if there is at least one problem collected with severity equal or more severe than * passed in severity.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jul 18 17:30:19 UTC 2025 - 11.4K bytes - Viewed (0) -
src/test/java/org/codelibs/core/log/LoggerTest.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/JulLoggerAdapter.java
@Override public boolean isFatalEnabled() { return logger.isLoggable(Level.SEVERE); } @Override public void fatal(final String message) { logger.logp(Level.SEVERE, sourceClass, null, message); } @Override public void fatal(final String message, final Throwable t) { logger.logp(Level.SEVERE, sourceClass, null, message, t); } @Override
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/FailedPlan.kt
* to use `H2_PRIOR_KNOWLEDGE` but the URL's scheme is `https:`. * * Preemptive proxy authentication failed. * * Planning failures are not necessarily fatal. For example, even if we can't DNS lookup the first * proxy in a list, looking up a subsequent one may succeed. */ internal class FailedPlan( e: Throwable, ) : RoutePlanner.Plan {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 1.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/ClassPathTest.java
ClassLoader classLoader = ClassPathTest.class.getClassLoader(); File notJar = File.createTempFile("not_a_jar", "txt"); try { assertThat(new ClassPath.LocationInfo(notJar, classLoader).scanResources()).isEmpty(); } finally { notJar.delete(); } } public void testGetClassPathEntry() throws MalformedURLException, URISyntaxException {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 20:58:01 UTC 2025 - 23K bytes - Viewed (0)