Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for MODULES (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/PomDiscovery.java

            Element rootElement = parentPom.root();
            if (rootElement == null) {
                return;
            }
    
            // Find modules element
            Element modulesElement = rootElement.child(MODULES).orElse(null);
            if (modulesElement == null) {
                return;
            }
    
            // Process each module
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  8. 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;
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:22:22 UTC 2025
    - 156 bytes
    - Viewed (0)
  9. module-tests/build.gradle.kts

      testImplementation(libs.junit.jupiter.api)
      testRuntimeOnly(libs.junit.jupiter.engine)
      testRuntimeOnly(libs.junit.platform.launcher)
    }
    
    application {
      mainClass = "okhttp3.modules.Main"
      mainModule = "okhttp3.modules"
    }
    
    jlinkApplication {
      stripDebug = true
      stripJavaDebugAttributes = true
      compress.set("zip-9")
      addModules.addAll("jdk.crypto.ec", "java.logging")
      vm.set("server")
    }
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:45:42 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  10. module-tests/src/test/java/okhttp3/modules/test/JavaModuleTest.java

     * limitations under the License.
     */
    
    package okhttp3.modules.test;
    
    import mockwebserver3.MockResponse;
    import mockwebserver3.MockWebServer;
    import okhttp3.Call;
    import okhttp3.Headers;
    import okhttp3.HttpUrl;
    import okhttp3.OkHttpClient;
    import okhttp3.Response;
    import okhttp3.logging.HttpLoggingInterceptor;
    import okhttp3.modules.OkHttpCaller;
    import org.junit.jupiter.api.Test;
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:22:22 UTC 2025
    - 2.1K bytes
    - Viewed (0)
Back to top