- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 121 for MODULES (0.03 sec)
-
module.xml
<?xml version="1.0" encoding="UTF-8"?> <project name="module" basedir="."> <property name="modules.dir" value="${basedir}/modules" /> <property name="target.dir" value="${basedir}/target/modules" /> <!-- Maven Repository --> <property name="maven.snapshot.repo.url" value="https://central.sonatype.com/repository/maven-snapshots" /> <property name="maven.release.repo.url" value="https://maven.codelibs.org" /> <property name="opensearch.version" value="3.4.0" />
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 18 09:50:31 UTC 2025 - 4K bytes - Viewed (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;Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Sep 21 06:22:22 UTC 2025 - 317 bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java
coords, PathScope.TEST_COMPILE, Arrays.asList(JavaPathType.CLASSES, JavaPathType.MODULES)); List<Path> classes = dispatched.get(JavaPathType.CLASSES); List<Path> modules = dispatched.get(JavaPathType.MODULES); List<Path> unresolved = dispatched.get(PathType.UNRESOLVED); assertEquals(3, dispatched.size());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Sep 17 10:01:14 UTC 2025 - 10.2K bytes - Viewed (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:Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Dec 26 10:43:02 UTC 2025 - 2.2K bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t12scm/maven/p0/1.0/p0-1.0.pom
<scm> <connection>scm:svn:http://host/p0</connection> <developerConnection>scm:svn:https://host/p0</developerConnection> <url>http://host/viewer?path=/p0</url> </scm> <modules> <module>modules/p1</module> </modules>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 412 bytes - Viewed (0) -
compat/maven-compat/src/test/resources/inheritance-repo/t12scm/p0/pom.xml
<scm> <connection>scm:svn:http://host/p0</connection> <developerConnection>scm:svn:https://host/p0</developerConnection> <url>http://host/viewer?path=/p0</url> </scm> <modules> <module>modules/p1</module> </modules>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 412 bytes - Viewed (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...
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Mar 30 23:08:36 UTC 2025 - 3K bytes - Viewed (0) -
compat/pom.xml
<groupId>org.apache.maven</groupId> <artifactId>maven</artifactId> <version>4.1.0-SNAPSHOT</version> </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>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Nov 16 17:53:28 UTC 2025 - 1.9K bytes - Viewed (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()
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Fri Dec 26 10:43:02 UTC 2025 - 1.8K bytes - Viewed (0) -
impl/maven-core/src/test/projects/lifecycle-listener/lifecycle-participant-reactor-dependency-injection/pom.xml
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 305 bytes - Viewed (0)