Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 377 for module1 (0.04 sec)

  1. api/maven-api-core/src/test/java/org/apache/maven/api/JavaPathTypeTest.java

         * Tests the formatting of an option with a module name.
         */
        @Test
        public void testModularOption() {
            String[] formatted = JavaPathType.patchModule("my.module").option(paths());
            assertEquals(2, formatted.length);
            assertEquals("--patch-module", formatted[0]);
            assertEquals(toPlatformSpecific("my.module=src/foo.java:src/bar.java"), formatted[1]);
        }
    
        /**
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Nov 13 14:20:26 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * depending on whether {@link #CLASSES} or {@link #MODULES} is present.
         *
         * @param moduleName name of the module on which to apply the path
         * @return an identification of the patch-module path for the given module.
         *
         * @see Modular#moduleName()
         */
        @Nonnull
        public static Modular patchModule(@Nonnull String moduleName) {
            return PATCH_MODULE.new Modular(moduleName);
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Dec 15 11:13:42 UTC 2025
    - 15.7K bytes
    - Viewed (1)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/PathType.java

         * Returns the unique name of this path type, including the module to patch if any.
         * For example, if this type is {@link JavaPathType#MODULES}, then this method returns {@code "MODULES"}.
         * But if this type was created by {@code JavaPathType.patchModule("foo.bar")}, then this method returns
         * {@code "PATCH_MODULE:foo.bar"}.
         *
         * @return the programmatic name together with the module name on which it applies
         * @see #toString()
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Jan 07 12:02:00 UTC 2025
    - 5K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverResult.java

         * @return module name of the dependency at the given path, or empty if the dependency is not modular
         * @throws IOException if the module information of the specified dependency cannot be read
         */
        Optional<String> getModuleName(@Nonnull Path dependency) throws IOException;
    
        /**
         * Returns the Java module descriptor of the dependency at the given path.
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Mar 05 14:29:21 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  5. okhttp-coroutines/src/main/java9/module-info.java

    @SuppressWarnings("module")
    module okhttp3.coroutines {
      requires okhttp3;
      exports okhttp3.coroutines;
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:22:22 UTC 2025
    - 108 bytes
    - Viewed (0)
  6. okhttp-sse/src/main/java9/module-info.java

    @SuppressWarnings("module")
    module okhttp3.sse {
      requires okhttp3;
      exports okhttp3.sse;
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:22:22 UTC 2025
    - 94 bytes
    - Viewed (0)
  7. mockwebserver-deprecated/src/main/java9/module-info.java

    @SuppressWarnings("module")
    module okhttp3.mockwebserver {
      requires okhttp3;
      exports okhttp3.mockwebserver;
      requires java.logging;
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:22:22 UTC 2025
    - 139 bytes
    - Viewed (0)
  8. okhttp-java-net-cookiejar/src/main/java9/module-info.java

    @SuppressWarnings("module")
    module okhttp3.java.net.cookiejar {
      requires okhttp3;
      exports okhttp3.java.net.cookiejar;
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:22:22 UTC 2025
    - 124 bytes
    - Viewed (0)
  9. compat/maven-resolver-provider/src/site/apt/dependency-types.apt

    | <<<test-jar>>>        | <<<tests>>>   | <<<jar>>>  | java      | classes, patch module |                       |
    *-----------------------+---------------+------------+-----------+-----------------------+-----------------------+
    | <<<modular-jar>>> *   | <<<tests>>>   | <<<jar>>>  | java      | modules               |                       |
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. okhttp-dnsoverhttps/src/main/java9/module-info.java

    @SuppressWarnings("module")
    module okhttp3.dnsoverhttps {
      requires okhttp3;
      exports okhttp3.dnsoverhttps;
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:22:22 UTC 2025
    - 112 bytes
    - Viewed (0)
Back to top