Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 377 for Source (0.07 sec)

  1. maven-builder-support/src/test/resources/source.txt

    Robert Scholte <******@****.***> 1419621788 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 26 19:23:08 UTC 2014
    - 12 bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/Source.java

     * @see org.apache.maven.api.services.ProjectBuilder#build(Session, Source)
     * @see org.apache.maven.api.services.SettingsBuilder#build(Session, Source, Source, Source)
     * @see org.apache.maven.api.services.ToolchainsBuilder#build(Session, Source, Source)
     */
    @Experimental
    public interface Source {
    
        /**
         * Provides access the file to be parsed, if this source is backed by a file.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. maven-builder-support/src/main/java/org/apache/maven/building/Source.java

    import java.io.InputStream;
    
    /**
     * Provides access to the contents of a source independently of the backing store (e.g. file system, database, memory).
     *
     */
    public interface Source {
    
        /**
         * Gets a byte stream to the source contents. Closing the returned stream is the responsibility of the caller.
         *
         * @return A byte stream to the source contents, never {@code null}.
         * @throws IOException in case of IO issue
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. maven-core/src/test/projects/project-builder/MNG-6983/parent-pom.xml

                                <id>add-source-config</id>
                                <phase>generate-sources</phase>
                                <goals>
                                    <goal>add-source</goal>
                                </goals>
                                <configuration>
                                    <sources>
                                        <source>.</source>
                                    </sources>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Oct 03 10:51:51 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/FileToRawModelMerger.java

            // don't merge
        }
    
        @Override
        protected void mergeModel_Licenses(
                Model.Builder builder, Model target, Model source, boolean sourceDominant, Map<Object, Object> context) {
            // don't merge
        }
    
        @Override
        protected void mergeModel_MailingLists(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. maven-builder-support/src/test/java/org/apache/maven/building/StringSourceTest.java

            source = new StringSource("Hello World!", "LOCATION");
            assertEquals("LOCATION", source.getLocation());
        }
    
        @Test
        void testGetContent() {
            StringSource source = new StringSource(null);
            assertEquals("", source.getContent());
    
            source = new StringSource("Hello World!", "LOCATION");
            assertEquals("Hello World!", source.getContent());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblemCollector.java

        }
    
        public void setSource(String source) {
            this.source = source;
            this.sourceModel = null;
        }
    
        public void setSource(Model source) {
            this.sourceModel = source;
            this.source = null;
    
            if (rootModel == null) {
                rootModel = source;
            }
        }
    
        private String getSource() {
            if (source == null && sourceModel != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. maven-model/src/main/java/org/apache/maven/model/InputLocation.java

         *
         * @param target
         * @param indices
         * @param source
         * @return InputLocation
         */
        public static InputLocation merge(
                InputLocation target, InputLocation source, java.util.Collection<Integer> indices) {
            if (source == null) {
                return target;
            } else if (target == null) {
                return source;
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 19 07:06:15 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProblemCollector.java

        }
    
        public void setSource(String source) {
            this.source = source;
            this.sourceModel = null;
        }
    
        public void setSource(Model source) {
            this.sourceModel = source;
            this.source = null;
    
            if (rootModel == null) {
                rootModel = source;
            }
        }
    
        private String getSource() {
            if (source == null && sourceModel != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. apache-maven/src/assembly/component.xml

      </fileSets>
    
      <files>
        <file>
          <sources>
            <source>src/assembly/shared/validate.cmd</source>
            <source>src/assembly/shared/mvnvalidate.cmd</source>
            <source>src/assembly/shared/init.cmd</source>
            <source>src/assembly/shared/mvnlauncher.cmd</source>
            <source>src/assembly/shared/run.cmd</source>
          </sources>
          <destName>mvn.cmd</destName>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Jun 04 19:03:41 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top