- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 302 for tomcat (0.6 sec)
-
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java
if (!plugin.isExtensions() && artifacts.size() == 1 && artifacts.get(0).getFile() != null) { /* * This is purely for backward-compat with 2.x where <extensions> consisting of a single artifact where * loaded into the core and hence available to plugins, in contrast to bigger extensions that wereRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 10.8K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CliUtils.java
@Nonnull public static Path getCanonicalPath(Path path) { requireNonNull(path, "path"); return path.toAbsolutePath().normalize(); } @Nonnull public static Map<String, String> toMap(Properties properties) { requireNonNull(properties, "properties"); HashMap<String, String> map = new HashMap<>(); for (String key : properties.stringPropertyNames()) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 13 18:30:29 UTC 2025 - 5K bytes - Viewed (0) -
docs/es/docs/python-types.md
{* ../../docs_src/python_types/tutorial009c_py310.py hl[1,4] *} Y entonces no tendrás que preocuparte por nombres como `Optional` y `Union`. 😎 #### Tipos genéricos { #generic-types } Estos tipos que toman parámetros de tipo en corchetes se llaman **Tipos Genéricos** o **Genéricos**, por ejemplo: //// tab | Python 3.10+ Puedes usar los mismos tipos integrados como genéricos (con corchetes y tipos dentro): * `list`Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 16.4K bytes - Viewed (1) -
cmd/common-main.go
buf, err := os.ReadFile(cxml) if err != nil { return err } ctxt.CrossDomainXML = string(buf) } // Check "no-compat" flag from command line argument. ctxt.StrictS3Compat = !ctx.IsSet("no-compat") && !ctx.GlobalIsSet("no-compat") switch { case ctx.IsSet("config-dir"): ctxt.ConfigDir = ctx.String("config-dir") ctxt.configDirSet = true case ctx.GlobalIsSet("config-dir"):
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 32.5K bytes - Viewed (3) -
docs/es/docs/history-design-future.md
</blockquote> ## Investigación { #investigation } Al usar todas las alternativas anteriores, tuve la oportunidad de aprender de todas ellas, tomar ideas y combinarlas de la mejor manera que pude encontrar para mà y los equipos de desarrolladores con los que he trabajado. Por ejemplo, estaba claro que idealmente deberÃa estar basado en las anotaciones de tipos estándar de Python.Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 10:15:01 UTC 2025 - 4.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/DefaultMavenProjectBuilder.java
private List<ArtifactRepository> normalizeToArtifactRepositories( List<?> repositories, ProjectBuildingRequest request) throws ProjectBuildingException { /* * This provides backward-compat with 2.x that allowed plugins like the maven-remote-resources-plugin:1.0 to * populate the builder configuration with model repositories instead of artifact repositories. */
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 12.2K bytes - Viewed (0) -
impl/maven-core/src/test/projects/plugin-manager/project-with-inheritance/pom.xml
<module>maven-reporting-api</module> <module>maven-project-builder</module> <module>maven-mercury</module> <module>maven-embedder</module> <module>maven-toolchain</module> <module>maven-compat</module> <module>maven-repository</module> <module>maven-repository-mercury</module> </modules> <!--start--> <dependencies> <dependency> <groupId>junit</groupId>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 22.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java
throw new PluginResolutionException(plugin, e.getResult().getExceptions(), e); } catch (DependencyResolutionException e) { List<Exception> exceptions = Stream.concat( e.getResult().getCollectExceptions().stream(), e.getResult().getArtifactResults().stream() .filter(r -> !r.isResolved())
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 15:32:43 UTC 2025 - 12.3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/EqualsTester.java
} for (int run = 0; run < REPETITIONS; run++) { testItems(); delegate.test(); } return this; } private void testItems() { for (Object item : Iterables.concat(equalityGroups)) { assertTrue(item + " must not be Object#equals to null", !item.equals(null)); assertTrue( item + " must not be Object#equals to an arbitrary object of another class",Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 6.1K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InetAddresses.java
return forUriStringOrNull(ipString, /* parseScope= */ false) != null; } /** * Evaluates whether the argument is an IPv6 "compat" address. * * <p>An "IPv4 compatible", or "compat", address is one with 96 leading bits of zero, with the * remaining 32 bits interpreted as an IPv4 address. These are conventionally represented in
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0)