- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 371 for Modulen (0.11 sec)
-
README.md
-------------------- Building your native images with [GraalVM] should work automatically. See the okcurl module for an example build. ```shell $ ./gradlew okcurl:nativeImage $ ./okcurl/build/graal/okcurl https://httpbin.org/get ``` Java Modules ------------ OkHttp (5.2+) implements Java 9 Modules. With this in place Java builds should fail if apps attempt to use internal packages. ```
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Oct 30 21:39:59 UTC 2025 - 9.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java
List<MavenProject> modules = requestPomProject.getCollectedProjects() != null ? requestPomProject.getCollectedProjects() : Collections.emptyList(); List<MavenProject> result = new ArrayList<>(modules); result.add(requestPomProject); return result; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 11 16:38:19 UTC 2025 - 18.5K bytes - Viewed (0) -
build.gradle.kts
if (project.name == "container-tests") return@subprojects if (project.name == "module-tests") return@subprojects apply(plugin = "checkstyle") apply(plugin = "ru.vyarus.animalsniffer") // The 'java' plugin has been applied, but it is not compatible with the Android plugins. // These are applied inside the okhttp module for that case specifically if (project.name != "okhttp") {
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Nov 01 12:18:11 UTC 2025 - 11.5K bytes - Viewed (1) -
apache-maven/src/assembly/maven/conf/maven-user.properties
# # Controls caching behavior for different request types during Maven builds. # Format: RequestType { scope:SCOPE ref:REFERENCE_TYPE } # # SCOPE OPTIONS: # session - Cache for entire Maven session (all modules in multi-module build) # request - Cache only for current request + its child requests # none - Disable caching entirely # # REFERENCE OPTIONS: # hard - Strong reference (stays in memory, faster access)Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Sep 29 14:45:25 UTC 2025 - 2.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecyclePluginAnalyzer.java
return plugins.keySet(); } /** * Performs a lookup using Plexus API to make sure we can look up only "visible" (see Maven classloading) components * from current module and for example not extensions coming from other modules. */ private LifecycleMapping lookupLifecycleMapping(final String packaging) { return lookup.lookupOptional(LifecycleMapping.class, packaging).orElse(null); }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 9K bytes - Viewed (0) -
pyproject.toml
[tool.mypy] plugins = ["pydantic.mypy"] strict = true [[tool.mypy.overrides]] module = "fastapi.concurrency" warn_unused_ignores = false ignore_missing_imports = true [[tool.mypy.overrides]] module = "fastapi.tests.*" ignore_missing_imports = true check_untyped_defs = true [[tool.mypy.overrides]] module = "docs_src.*" disallow_incomplete_defs = false disallow_untyped_defs = false
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 12:54:56 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
/** Configuration key for login server module name. */ protected static final String SPNEGO_LOGIN_SERVER_MODULE = "spnego.login.server.module"; /** Configuration key for login client module name. */ protected static final String SPNEGO_LOGIN_CLIENT_MODULE = "spnego.login.client.module"; /** Configuration key for Kerberos configuration file path. */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3) -
maven-tests/mvnw.cmd
if ($USE_MVND) { Write-Error "Checksum validation is not supported for maven-mvnd. `nPlease disable validation by removing 'distributionSha256Sum' from your maven-wrapper.properties." } Import-Module $PSHOME\Modules\Microsoft.PowerShell.Utility -Function Get-FileHash if ((Get-FileHash "$TMP_DOWNLOAD_DIR/$distributionUrlName" -Algorithm SHA256).Hash.ToLower() -ne $distributionSha256Sum) {
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Sep 25 18:22:49 UTC 2025 - 6.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java
* This value can determine whether a dependency will be placed on the class-path or on the module-path. * For example, if the {@code module-info.class} entry of a <abbr>JAR</abbr> file exists only in the * {@code META-INF/versions/17/} sub-directory, then the default location of that dependency will be * the module-path only if the {@code --release} option is equal or greater than 17. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 07:30:49 UTC 2025 - 23K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java
return filtered; } // Distinct the projects to avoid duplicates. Duplicates are possible in multi-module projects. // // Given a scenario where there is an aggregate POM with modules A, B, C, D, and E and project E depends on // A, B, C, and D. If the aggregate POM is being filtered for non-transitive and downstream dependencies whereRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Jun 19 16:34:39 UTC 2025 - 6.4K bytes - Viewed (0)