Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Content (0.42 sec)

  1. maven-model-builder/src/site/apt/index.apt

    
    **  Notice
    
      * after model interpolation, <<<$\{...\}>>> content can remain in the model that will be evaluated later
      when setting plugin parameters. This happens in particular with <<<settings.*>>> values for
      {{{../maven-settings/settings.html}Settings Model}},
    
      * encoding configuration have been defined as POM properties looking like POM content but not added to POM model to maintain
      compatibility with previous Maven versions:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    "Modified Works" shall mean any work in Source Code or other form that
    results from an addition to, deletion from, or modification of the
    contents of the Program, including, for purposes of clarity any new file
    in Source Code form that contains any contents of the Program. Modified
    Works shall not include works that contain only declarations,
    interfaces, types, classes, structures, or files of the Program solely
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    License, whose permissions for other licensees extend to the entire
    whole, and thus to each and every part regardless of who wrote it.
    
    Thus, it is not the intent of this section to claim rights or contest
    your rights to work written entirely by you; rather, the intent is to
    exercise the right to control the distribution of derivative or
    collective works based on the Program.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. src/mdo/reader.vm

        /**
         * Method interpolatedTrimmed.
         *
         * @param value a value object.
         * @param context a context object.
         * @return String
         */
        private String interpolatedTrimmed(String value, String context) {
            return getTrimmedValue(contentTransformer.transform(value, context));
        } //-- String interpolatedTrimmed(String, String)
    
        /**
         * Method nextTag.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  5. src/mdo/merger.vm

            if (source == null) {
                return target;
            }
            Map<Object, Object> context = new HashMap<>();
            if (hints != null) {
                context.putAll(hints);
            }
            return merge${root.name}(target, source, sourceDominant, context);
        }
    
    #foreach ( $class in $model.allClasses )
      #if ( $class.name != "InputSource" && $class.name != "InputLocation" )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  6. src/mdo/reader-stax.vm

        /**
         * Method interpolatedTrimmed.
         *
         * @param value a value object.
         * @param context a context object.
         * @return String
         */
        private String interpolatedTrimmed(String value, String context) {
            return getTrimmedValue(contentTransformer.transform(value, context));
        } //-- String interpolatedTrimmed(String, String)
    
        /**
         * Method nextTag.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  7. maven-core/plugin-manager.txt

    - we also seem to have artifact information tangled inside the plugin model
    - we have to deal with scripting implementations (groovy, beanshell, ruby)
    - we need to deal with a shared context for plugins, like the guarded mojos
    - we need to deal with plugins as core application logic which can also interact with plugins
    
    * Along with this comes the testing strategies that make this work
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
Back to top