Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Breiding (0.24 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         * builds an empty map.
         *
         * <p>If the {@code resolve} parameter value is {@code false}, then some or all map values may
         * be null instead of the actual module name. This option can avoid the cost of reading module
         * descriptors when only the modules existence needs to be verified.</p>
         *
         * <p><b>Algorithm:</b>
         * If the given path is a directory, then there is a choice:
         * </p>
         * <ul>
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         * @param test the test output directory, or {@code null} if none
         * @param cache cache of module information about each dependency
         * @throws IOException if an error occurred while reading module information
         *
         * TODO: this is currently not called
         */
        void addOutputDirectory(Path main, Path test, PathModularizationCache cache) throws IOException {
            if (outputModules != null) {
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java

            assertThat(e.getResults(), contains(projectBuildingResultWithProblemMessage("Version must be a constant")));
        }
    
        /**
         * Ensure that when re-reading a pom, it should not use the cached Model
         *
         * @throws Exception in case of issue
         */
        @Test
        void rereadPom_mng7063() throws Exception {
            final Path pom = projectRoot.resolve("pom.xml");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jun 19 15:04:04 GMT 2023
    - 16.5K bytes
    - Viewed (0)
  4. maven-core/src/site/apt/offline-mode.apt

      the file:// protocol and living on a truly local filesystem when
      offline.
    
    ** Plugin Resolution
    
      This is similar to dependency resolution. Plugin repositories not
      using file:// or not residing on a local (not shared) filesystem will
      be unavailable.
    
    
    * Implications for Mojo Execution
    
    ** Deployment mojos
    
      The concept of deployment is dependent on the availability of a some
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 18 00:24:53 GMT 2024
    - 10.6K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManager.java

                    channel = new RandomAccessFile(touchfile, "rw").getChannel();
                    lock = channel.lock();
    
                    if (touchfile.canRead()) {
                        getLogger().debug("Reading resolution-state from: " + touchfile);
                        props.load(Channels.newInputStream(channel));
                    }
    
                    props.setProperty(key, Long.toString(System.currentTimeMillis()));
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         * builds an empty map.
         *
         * <p>If the {@code resolve} parameter value is {@code false}, then some or all map values may
         * be null instead of the actual module name. This option can avoid the cost of reading module
         * descriptors when only the modules existence needs to be verified.</p>
         *
         * <p><b>Algorithm:</b>
         * If the given path is a directory, then there is a choice:
         * </p>
         * <ul>
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         * @param test the test output directory, or {@code null} if none
         * @param cache cache of module information about each dependency
         * @throws IOException if an error occurred while reading module information
         *
         * TODO: this is currently not called
         */
        void addOutputDirectory(Path main, Path test, PathModularizationCache cache) throws IOException {
            if (outputModules != null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 14.2K bytes
    - Viewed (0)
Back to top