Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for stats (0.17 sec)

  1. apache-maven/src/main/appended-resources/licenses/EPL-1.0.txt

    including direct, indirect, special, incidental and consequential damages,
    such as lost profits;
    
    iii) states that any provisions which differ from this Agreement are offered
    by that Contributor alone and not by any other party; and
    
    iv) states that source code for the Program is available from such Contributor,
    and informs licensees how to obtain it in a reasonable manner on or through
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Sep 17 05:50:12 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  2. maven-compat/src/main/resources/META-INF/maven/plugin.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <plugin>
      <description>Maven Internal State-Management Plugins</description>
      <groupId>org.apache.maven.plugins.internal</groupId>
      <artifactId>maven-state-management</artifactId>
      <version>2.1</version>
      <goalPrefix>statemgmt</goalPrefix>
      <isolatedRealm>false</isolatedRealm>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue May 28 09:19:32 GMT 2013
    - 9.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/TransformedArtifact.java

            throw new UnsupportedOperationException("transformed artifact file cannot be set");
        }
    
        @Override
        public synchronized File getFile() {
            try {
                String state = mayUpdate();
                if (state == null) {
                    return null;
                }
                return target.toFile();
            } catch (IOException | NoSuchAlgorithmException | XMLStreamException | ModelBuildingException e) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/di/SessionScoped.java

    import static java.lang.annotation.ElementType.TYPE;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    /**
     * Indicates that annotated component should be instantiated before session execution starts
     * and discarded after session execution completes.
     *
     * TODO: this is currently not implemented
     *
     * @since 4.0.0
     */
    @Scope
    @Documented
    @Retention(RUNTIME)
    @Target({TYPE, METHOD})
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Feb 05 09:45:47 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  5. api/maven-api-di/src/main/java/org/apache/maven/api/di/SessionScoped.java

    import static java.lang.annotation.ElementType.TYPE;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    /**
     * Indicates that annotated component should be instantiated before session execution starts
     * and discarded after session execution completes.
     *
     * TODO: this is currently not implemented
     *
     * @since 4.0.0
     */
    @Scope
    @Documented
    @Retention(RUNTIME)
    @Target({TYPE, METHOD})
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Apr 22 13:58:08 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DependencyContext.java

     *
     * @since 3.0
     */
    // TODO From a concurrency perspective, this class is not good. The combination of mutable/immutable state is not nice
    public class DependencyContext {
    
        private final MavenProject project;
    
        private final Collection<String> scopesToCollectForCurrentProject;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:55:54 GMT 2024
    - 3.6K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ChecksumAlgorithmService.java

            ChecksumCalculator getCalculator();
        }
    
        /**
         * The checksum calculator.
         */
        interface ChecksumCalculator {
            /**
             * Updates the checksum algorithm inner state with input.
             *
             * @throws NullPointerException if passed in buffer is {@code null}.
             */
            void update(@Nonnull ByteBuffer input);
    
            /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Dec 21 08:05:10 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmManager.java

         * <p>
         * Using ClassWorld to determine plugin/extensions realm parent classloaders gives m2e and integration test harness
         * flexibility to load multiple version of maven into dedicated classloaders without assuming state of jvm system
         * classloader.
         */
        private static final ClassLoader PARENT_CLASSLOADER = ClassWorld.class.getClassLoader();
    
        private final Logger logger = LoggerFactory.getLogger(getClass());
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:53:42 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  9. LICENSE

          reproduction, and distribution of the Work otherwise complies with
          the conditions stated in this License.
    
       5. Submission of Contributions. Unless You explicitly state otherwise,
          any Contribution intentionally submitted for inclusion in the Work
          by You to the Licensor shall be under the terms and conditions of
          this License, without any additional terms or conditions.
    Plain Text
    - Registered: Wed Apr 24 00:11:08 GMT 2024
    - Last Modified: Thu Feb 20 19:53:57 GMT 2020
    - 11.1K bytes
    - Viewed (0)
  10. api/maven-api-plugin/src/main/mdo/plugin.mdo

              <description>
                Whether this parameter is required for the Mojo to function. This is used to validate the configuration
                for a Mojo before it is injected, and before the Mojo is executed from some half-state.
              </description>
            </field>
            <field>
              <name>editable</name>
              <version>1.0.0+</version>
              <type>boolean</type>
              <defaultValue>true</defaultValue>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Apr 14 17:14:22 GMT 2024
    - 23.6K bytes
    - Viewed (0)
Back to top