Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for Chase (0.04 sec)

  1. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java

     */
    package org.apache.maven.plugin.lifecycle;
    
    /**
     * A phase mapping definition.
     *
     * @version $Revision$ $Date$
     */
    @SuppressWarnings("all")
    public class Phase implements java.io.Serializable {
    
        // --------------------------/
        // - Class/Member Variables -/
        // --------------------------/
    
        /**
         * The ID of this phase, e.g., <code>generate-sources</code>.
         */
        private String id;
    
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-10-25 12:31
    - 3.4K bytes
    - Viewed (0)
  2. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    chanel
    
    // channel : 2014-05-08 Charleston Road Registry Inc.
    channel
    
    // charity : 2018-04-11 Public Interest Registry
    charity
    
    // chase : 2015-04-30 JPMorgan Chase Bank, National Association
    chase
    
    // chat : 2014-12-04 Binky Moon, LLC
    chat
    
    // cheap : 2013-11-14 Binky Moon, LLC
    cheap
    
    // chintai : 2015-06-11 CHINTAI Corporation
    chintai
    
    Registered: 2024-11-01 11:42
    - Last Modified: 2023-12-20 23:27
    - 240.3K bytes
    - Viewed (0)
  3. RELEASE.md

    This release contains contributions from many people at Google, as well as:
    
    Registered: 2024-11-05 12:39
    - Last Modified: 2024-10-22 14:33
    - 735.3K bytes
    - Viewed (0)
  4. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    certification.aero certmgr.org cesena-forli.it cesena-forlì.it cesenaforli.it cesenaforlì.it cf cf-ipfs.com cfa cfd cg ch ch.eu.org ch.it ch.tc ch.trendhosting.cloud chambagri.fr championship.aero chanel channel channelsdvr.net charity charter.aero chase chat chattanooga.museum cheap cheap.jp cheltenham.museum cherkassy.ua cherkasy.ua chernigov.ua chernihiv.ua chernivtsi.ua chernovtsy.ua chesapeakebay.museum chiba.jp chicago.museum chicappa.jp chichibu.saitama.jp chieti.it chigasaki.kanagawa.jp ch...
    Registered: 2024-11-01 11:42
    - Last Modified: 2023-12-20 23:27
    - 40.4K bytes
    - Viewed (1)
  5. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

    import static org.apache.maven.api.Lifecycle.Phase.RESOURCES;
    import static org.apache.maven.api.Lifecycle.Phase.SOURCES;
    import static org.apache.maven.api.Lifecycle.Phase.TEST;
    import static org.apache.maven.api.Lifecycle.Phase.TEST_COMPILE;
    import static org.apache.maven.api.Lifecycle.Phase.TEST_RESOURCES;
    import static org.apache.maven.api.Lifecycle.Phase.TEST_SOURCES;
    import static org.apache.maven.api.Lifecycle.Phase.UNIT_TEST;
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-10-25 12:31
    - 19.4K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/internal/impl/Lifecycles.java

    public class Lifecycles {
    
        static Lifecycle.Phase phase(String name) {
            return new DefaultPhase(name, Collections.emptyList(), Collections.emptyList(), Collections.emptyList());
        }
    
        static Lifecycle.Phase phase(String name, Lifecycle.Phase... phases) {
            return new DefaultPhase(name, Collections.emptyList(), Collections.emptyList(), asList(phases));
        }
    
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-10-25 12:31
    - 7K bytes
    - Viewed (0)
  7. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Lifecycle.java

        /**
         * Field phases.
         */
        private java.util.List<Phase> phases;
    
        // -----------/
        // - Methods -/
        // -----------/
    
        /**
         * Method addPhase.
         *
         * @param phase a phase object.
         */
        public void addPhase(Phase phase) {
            getPhases().add(phase);
        } // -- void addPhase( Phase )
    
        /**
         * Get the ID of this lifecycle, for identification in the mojo
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-10-25 12:31
    - 2.7K bytes
    - Viewed (0)
  8. compat/maven-model-builder/src/test/resources/poms/validation/duplicate-plugin-execution.xml

            <plugin>
              <groupId>build</groupId>
              <artifactId>managed-plugin</artifactId>
              <executions>
                <execution>
                  <phase>test</phase>
                </execution>
                <execution>
                  <phase>test</phase>
                </execution>
              </executions>
            </plugin>
          </plugins>
        </pluginManagement>
        <plugins>
          <plugin>
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-10-25 12:31
    - 2.8K bytes
    - Viewed (0)
  9. apache-maven/pom.xml

            <executions>
              <execution>
                <id>create-distro-packages</id>
                <goals>
                  <goal>single</goal>
                </goals>
                <phase>package</phase>
                <configuration>
                  <descriptors>
                    <descriptor>src/assembly/bin.xml</descriptor>
                  </descriptors>
                </configuration>
              </execution>
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-10-25 13:41
    - 13.4K bytes
    - Viewed (0)
  10. api/maven-api-plugin/src/main/mdo/lifecycle.mdo

              <version>1.0.0+</version>
              <description>The phase mappings for this lifecycle.</description>
              <association>
                <type>Phase</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
          </fields>
        </class>
        <class>
          <name>Phase</name>
          <version>1.0.0+</version>
          <description>A phase mapping definition.</description>
          <fields>
    Registered: 2024-11-03 03:35
    - Last Modified: 2024-08-29 05:48
    - 5.6K bytes
    - Viewed (0)
Back to top