- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 319 for Modules (0.06 seconds)
-
build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts
fun ComponentMetadataHandler.declareCapabilityPreference(module: String) { withModule<CapabilityRule>(module) { params(name) params("${providedBy.size + 1}") } } /** * For all modules providing a capability, always use the preferred module, even if there's no conflict. * In other words, will forcefully upgrade all modules providing a capability to a selected module. *
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Jul 18 11:32:19 GMT 2025 - 9.3K bytes - Click Count (0) -
module.xml
<antcall target="remove.jars" /> </target> <target name="install.module"> <get dest="${target.dir}"> <url url="${repo.url}/${module.groupId}/${module.name.prefix}${module.name}/${module.version}/${module.name.prefix}${module.name}-${module.zip.version}.zip" /> </get> <unzip dest="${modules.dir}/${module.name}" src="${target.dir}/${module.name.prefix}${module.name}-${module.zip.version}.zip"> <patternset> <include name="**" />
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Dec 18 09:50:31 GMT 2025 - 4K bytes - Click Count (0) -
module-tests/src/test/java/module-info.java
@SuppressWarnings("module") module okhttp3.modules.test { requires okhttp3; requires okhttp3.logging; requires mockwebserver3; requires mockwebserver3.junit5; requires jdk.crypto.ec; requires org.junit.jupiter.api; requires okhttp3.modules; opens okhttp3.modules.test to org.junit.platform.commons;Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun Sep 21 06:22:22 GMT 2025 - 317 bytes - Click Count (0) -
compat/pom.xml
</parent> <artifactId>maven-compat-modules</artifactId> <packaging>pom</packaging> <name>Maven Compatibility Modules</name> <modules> <module>maven-plugin-api</module> <module>maven-builder-support</module> <module>maven-model</module> <module>maven-model-builder</module> <module>maven-settings</module> <module>maven-settings-builder</module> <module>maven-artifact</module>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Nov 16 17:53:28 GMT 2025 - 1.9K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java
// JUnit has an "Automatic-Module-Name", so it appears on the module path. Map<PathType, List<Path>> dispatched = session.resolveDependencies( coords, PathScope.TEST_COMPILE, Arrays.asList(JavaPathType.CLASSES, JavaPathType.MODULES)); List<Path> classes = dispatched.get(JavaPathType.CLASSES); List<Path> modules = dispatched.get(JavaPathType.MODULES);Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 10.2K bytes - Click Count (0) -
module-tests/src/main/java/module-info.java
@SuppressWarnings("module") module okhttp3.modules { requires okhttp3; requires okhttp3.logging; requires jdk.crypto.ec; exports okhttp3.modules;Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun Sep 21 06:22:22 GMT 2025 - 156 bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/PomDiscovery.java
if (rootElement == null) { return; } // Find modules element Element modulesElement = rootElement.child(MODULES).orElse(null); if (modulesElement == null) { return; } // Process each module List<Element> moduleElements = modulesElement.children(MODULE).toList(); for (Element moduleElement : moduleElements) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 4.8K bytes - Click Count (0) -
tests/test_tutorial/test_debugging/test_tutorial001.py
@pytest.fixture(name="client") def get_client(): mod = importlib.import_module(MOD_NAME) client = TestClient(mod.app) return client def test_uvicorn_run_is_not_called_on_import(): if sys.modules.get(MOD_NAME): del sys.modules[MOD_NAME] # pragma: no cover with unittest.mock.patch("uvicorn.run") as uvicorn_run_mock: importlib.import_module(MOD_NAME) uvicorn_run_mock.assert_not_called()
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Fri Dec 26 10:43:02 GMT 2025 - 1.8K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t12scm/ProjectInheritanceTest.java
assertEquals( project1.getScm().getDeveloperConnection(), project0.getScm().getDeveloperConnection() + "/modules/p1"); } @Test void testScmInfoCalculatedCorrectlyOnChildOnlyRead() throws Exception { File localRepo = getLocalRepositoryPath(); File pom1 = new File(localRepo, "p0/modules/p1/pom.xml"); // load the child project, which inherits from p0...
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sun Mar 30 23:08:36 GMT 2025 - 3K bytes - Click Count (0) -
tests/test_tutorial/test_settings/test_app01.py
if mod_name in sys.modules: del sys.modules[mod_name] monkeypatch.setenv("ADMIN_EMAIL", "******@****.***") main_mod = importlib.import_module(mod_name) return TestClient(main_mod.app) def test_settings_validation_error(mod_name: str, monkeypatch: MonkeyPatch): monkeypatch.delenv("ADMIN_EMAIL", raising=False) if mod_name in sys.modules:Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Fri Dec 26 10:43:02 GMT 2025 - 2.2K bytes - Click Count (0)