Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Reset (0.15 sec)

  1. maven-core/src/test/resources-project-builder/id-container-joining-with-empty-elements/pom.xml

            <version>2.1-SNAPSHOT</version>
            <executions>
              <execution>
                <id>equal-build-exec-id</id>
                <phase>initialize</phase>
                <goals>
                  <goal>reset</goal>
                </goals>
                <configuration>
                  <logFile>target/exec.log</logFile>
                  <string>test</string>
                </configuration>
              </execution>
            </executions>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2.8K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/plugin-injection-merge-order/pom.xml

                </configuration>
                <executions>
                  <execution>
                    <id>first</id>
                    <phase>validate</phase>
                    <goals>
                      <goal>reset</goal>
                    </goals>
                  </execution>
                </executions>
              </plugin>
              <plugin>
                <groupId>org.apache.maven.its.plugins</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 4.4K bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/plugin-management-for-implicit-plugin/child/pom.xml

            <artifactId>maven-it-plugin-log-file</artifactId>
            <executions>
              <execution>
                <id>test</id>
                <phase>initialize</phase>
                <goals>
                  <goal>reset</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.6K bytes
    - Viewed (0)
  4. api/maven-api-settings/src/main/mdo/settings.mdo

        private String sourceLevel = USER_LEVEL;
        private boolean sourceLevelSet = false;
    
        public void setSourceLevel(String sourceLevel) {
            if (sourceLevelSet) {
                throw new IllegalStateException("Cannot reset sourceLevel attribute; it is already set to: " + sourceLevel);
            } else if (!(USER_LEVEL.equals(sourceLevel) || PROJECT_LEVEL.equals(sourceLevel)  || GLOBAL_LEVEL.equals(sourceLevel))) {
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 33.3K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

              </association>
            </field>
          </fields>
          <codeSegments>
            <codeSegment>
              <version>4.0.0/4.0.99</version>
              <code>
                <![CDATA[
        /**
         * Reset the {@code pluginsMap} field to {@code null}
         */
        public void flushPluginMap() {
        }
    
        /**
         * @return a Map of plugins field with {@code Plugins#getKey()} as key
         * @see Plugin#getKey()
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  6. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

            private boolean sourceLevelSet = false;
    
            public void setSourceLevel(String sourceLevel) {
                if (sourceLevelSet) {
                    throw new IllegalStateException("Cannot reset sourceLevel attribute; it is already set to: " + sourceLevel);
                } else if (!(USER_LEVEL.equals(sourceLevel) || GLOBAL_LEVEL.equals(sourceLevel))) {
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 8.5K bytes
    - Viewed (0)
Back to top