Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 120 for Subject (0.42 sec)

  1. maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java

                    if (debug) {
                        List<Object> feedback = interpolator.getFeedback();
                        if (feedback != null && !feedback.isEmpty()) {
                            logger.debug("Maven encountered the following problems during initial POM interpolation:");
    
                            Object last = null;
                            for (Object next : feedback) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  2. src/mdo/model-v3.vm

        }
    
          #end
        #end
        #if ( $locationTracking )
        public InputLocation getLocation(Object key) {
            ${packageModelV4}.InputLocation loc = getDelegate().getLocation(key);
            return loc != null ? new InputLocation(loc) : null;
        }
    
        public void setLocation(Object key, InputLocation location) {
            update(${packageModelV4}.${class.name}.newBuilder(getDelegate(), true)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. src/mdo/writer.vm

         * Method setFileComment.
         *
         * @param fileComment a fileComment object.
         */
        public void setFileComment(String fileComment) {
            this.fileComment = fileComment;
        } //-- void setFileComment(String)
    
        /**
         * Method write.
         *
         * @param writer a writer object
         * @param ${rootLcapName} a ${root.name} object
         * @throws java.io.IOException java.io.IOException if any
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-10/plexus-classworlds-1.2-alpha-10.jar

    String); } org/codehaus/plexus/classworlds/launcher/Configurator$1.class package org.codehaus.plexus.classworlds.launcher; final synchronized class Configurator$1 implements java.util.Comparator { void Configurator$1(Configurator); public int compare(Object, Object); } org/codehaus/plexus/classworlds/launcher/Configurator$2.class package org.codehaus.plexus.classworlds.launcher; final synchronized class Configurator$2 implements java.io.FilenameFilter { void Configurator$2(Configurator, String, String);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 41.5K bytes
    - Viewed (0)
  5. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

                    default:
                        throw new IllegalStateException("invalid item: " + item.getClass());
                }
            }
    
            @Override
            public boolean equals(Object o) {
                if (this == o) {
                    return true;
                }
                if (o == null || getClass() != o.getClass()) {
                    return false;
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 26K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

            RepositoryCache cache = session.getCache();
            if (cache != null && !ConfigUtils.getBoolean(session, false, "aether.versionResolver.noCache")) {
                cacheKey = new Key(session, request);
    
                Object obj = cache.get(session, cacheKey);
                if (obj instanceof Record) {
                    Record record = (Record) obj;
                    result.setVersion(record.version);
                    result.setRepository(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

         * Suppress SNAPSHOT updates.
         *
         * @issue MNG-2681
         */
        private boolean noSnapshotUpdates = false;
    
        private boolean useLegacyLocalRepositoryManager = false;
    
        private Map<String, Object> data;
    
        public DefaultMavenExecutionRequest() {}
    
        public static MavenExecutionRequest copy(MavenExecutionRequest original) {
            DefaultMavenExecutionRequest copy = new DefaultMavenExecutionRequest();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

                return nullify(metadata.getVersion());
            }
    
            private String nullify(String str) {
                return (str == null || str.isEmpty()) ? null : str;
            }
    
            public Object getKey() {
                return metadata.toString();
            }
    
            public String getRemoteFilename() {
                return metadata.getType();
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

        /**
         * @since 3.3.0
         */
        EventSpyDispatcher getEventSpyDispatcher();
    
        /**
         * @since 3.3.0
         */
        Map<String, Object> getData();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Dec 20 13:03:57 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  10. maven-core/src/site/apt/offline-mode.apt

      should result in modification of the active profile in the MavenSettings
      instance, just as definition of the active profile from the command-line
      should result in similar modification. This object is not meant to be
      static within the build process, but rather to be setup as an aggregation of
      all settings-related information passed into the system.
    
    ** Control over downloads
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top