Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Dieset (0.72 sec)

  1. apache-maven/src/assembly/component.xml

          <lineEnding>unix</lineEnding>
          <fileMode>0755</fileMode>
        </fileSet>
        <fileSet>
          <directory>src/assembly/maven/conf</directory>
          <outputDirectory>conf</outputDirectory>
        </fileSet>
        <fileSet>
          <directory>src/assembly/maven/lib</directory>
          <outputDirectory>lib</outputDirectory>
        </fileSet>
      </fileSets>
    
      <files>
        <file>
          <sources>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Jun 04 19:03:41 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/slf4j/MavenSlf4jFriend.java

     * Use with precaution, since this is not normally intended for production use.
     */
    public class MavenSlf4jFriend {
        /**
         * Reset Slf4j internal state.
         */
        public static void reset() {
            LoggerFactory.reset();
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  3. src/site/svgo.config.mjs

     * specific language governing permissions and limitations
     * under the License.
     */
    
    export default {
        js2svg: {
            indent: 1,
            pretty: true,
          },
        plugins: [
          'preset-default',
          {
            name: "removeAttrs",
            params: {
              attrs: [
                "g:class",
                "path:class",
              ]
            }
          },
          ],
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 24 18:29:19 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. maven-slf4j-provider/src/main/java/org/apache/maven/slf4j/MavenLoggerFactory.java

            if (this.logLevelRecorder != null) {
                throw new IllegalStateException("LogLevelRecorder has already been set.");
            }
            this.logLevelRecorder = logLevelRecorder;
            reset();
        }
    
        @Override
        public Optional<LogLevelRecorder> getLogLevelRecorder() {
            return Optional.ofNullable(logLevelRecorder);
        }
    
        protected Logger createLogger(String name) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:36:58 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. apache-maven/src/assembly/src.xml

          </excludes>
        </fileSet>
        <fileSet>
          <directory>${project.build.directory}/maven-shared-archive-resources/META-INF</directory>
          <outputDirectory>/</outputDirectory>
          <includes>
            <include>DEPENDENCIES</include>
            <!-- exclude the license and notice as they are not as accurate as the ones from above -->
          </includes>
        </fileSet>
      </fileSets>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 27 13:14:24 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("target", pom.getValue("build/plugins[1]/configuration/domParam/copy/fileset/@dir"));
            assertNull(pom.getValue("build/plugins[1]/configuration/domParam/copy/fileset/@todir"));
            assertNull(pom.getValue("build/plugins[1]/configuration/domParam/copy/fileset/@overwrite"));
        }
    
        /** MNG-4053*/
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

            return "Scm {connection=" + getConnection() + "}";
        }
                ]]>
              </code>
            </codeSegment>
          </codeSegments>
        </class>
        <class>
          <name>FileSet</name>
          <version>3.0.0+</version>
          <superClass>PatternSet</superClass>
          <description>A PatternSet for files.</description>
          <fields>
            <field>
              <name>directory</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java

                                // Note this version was selected before to get the appropriate POM
                                // But it was reset by the call to setVersionRange on restricting the version
                                ResolutionNode[] resetNodes = {previous, node};
                                for (int j = 0; j < 2; j++) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 36.7K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    java.io.InputStream { private java.io.StringReader in; public void StringInputStream(String); public int read() throws java.io.IOException; public void close() throws java.io.IOException; public synchronized void mark(int); public synchronized void reset() throws java.io.IOException; public boolean markSupported(); } org/codehaus/plexus/util/StringOutputStream.class package org.codehaus.plexus.util; public synchronized class StringOutputStream extends java.io.OutputStream { private StringBuffer buf;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 164.6K bytes
    - Viewed (0)
  10. maven-core/src/test/resources-project-builder/foo/sub/pom.xml

                </goals>
              </execution>
    
              <execution>
                <id>archetype-test-fileset</id>
                <phase>process-test-resources</phase>
                <configuration>
                  <tasks>
                    <property name="test.projects.name" value="fileset" />
                    <property name="test.projects.version" value="1.0" />
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 08:59:31 UTC 2023
    - 15.6K bytes
    - Viewed (0)
Back to top