Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Hoolehan (0.36 sec)

  1. maven-core/lifecycle-executor.txt

            <skip implementation="boolean" default-value="false">${remoteresources.skip}</skip>
            <outputDirectory implementation="java.io.File">${project.build.directory}/maven-shared-archive-resources</outputDirectory>
            <excludeArtifactIds implementation="java.lang.String" default-value="">${excludeArtifactIds}</excludeArtifactIds>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 17:22:19 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  2. src/mdo/reader.vm

         * any.
         * @return boolean
         */
        private boolean getBooleanValue(String s, String attribute, XMLStreamReader parser, boolean defaultValue)
            throws XMLStreamException {
            if (s != null && s.length() != 0) {
                return Boolean.valueOf(s).booleanValue();
            }
            return defaultValue;
        } //-- boolean getBooleanValue(String, String, XMLStreamReader, String)
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  3. src/mdo/model-version.vm

        }
        #end
    
    #end
        private boolean has(String str) {
            return str != null;
        }
    
        private boolean has(Path path) {
            return path != null;
        }
    
        private boolean has(boolean bool) {
            return bool;
        }
    
        private boolean has(int val) {
            return val != 0;
        }
    
        private boolean has(List<?> list) {
            return !list.isEmpty();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 16 13:44:33 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. src/mdo/model.vm

          #end
          #if ( $type == 'boolean' )
            Boolean ${field.name};
          #elseif ( $type == 'int' )
            Integer ${field.name};
          #else
            ${type} ${field.name};
        #end
        #end
        #if ( ! $class.superClass && $locationTracking )
            Map<Object, InputLocation> locations;
        #end
    
            Builder(boolean withDefaults) {
        #if ( $class.superClass )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. src/mdo/writer-stax.vm

            #else
                writeTag("$fieldTagName", "${def}", ${classLcapName}.get${fieldCapName}(), serializer${loctrac});
            #end
          #elseif ( $field.type == "boolean" || $field.type == "Boolean" )
            #if ( ${def} == "true" )
                writeTag("$fieldTagName", "${def}", ${classLcapName}.is${fieldCapName}() ? null : "false", serializer${loctrac});
            #else
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  6. src/mdo/writer.vm

            #else
                writeTag("$fieldTagName", "${def}", ${classLcapName}.get${fieldCapName}(), serializer);
            #end
          #elseif ( $field.type == "boolean" || $field.type == "Boolean" )
            #if ( ${def} == "true" )
                writeTag("$fieldTagName", "${def}", ${classLcapName}.is${fieldCapName}() ? null : "false", serializer);
            #else
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  7. src/mdo/model-v3.vm

          #set ( $cap = $Helper.capitalise( $field.name ) )
          #set ( $type = ${types.getOrDefault($field,${types.getOrDefault($field.type,$field.type)})} )
          #if ( $type == "boolean" || $type == "Boolean" )
            #set ( $pfx = "is" )
          #else
            #set ( $pfx = "get" )
          #end
          #if ( $field.type == "java.util.List" || $field.type == "java.util.Properties" )
        @Nonnull
          #end
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/offline-mode.apt

    *** DefaultLifecycleExecutor
    
      When binding goals to the project's configured lifecycle, each mojo
      descriptor should declare whether it requires online/offline status.
      This value should be a java.lang.Boolean, so it can implement 3VL
      (three value logic: yes, no, don't-care). The requiresOnline
      field in the mojo descriptor has the following semantics:
    
      [true] Online status is required for this mojo to function
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. src/mdo/reader-stax.vm

         * any.
         * @return boolean
         */
        private boolean getBooleanValue(String s, String attribute, XMLStreamReader parser, boolean defaultValue) throws XMLStreamException {
            if (s != null && s.length() != 0) {
                return Boolean.valueOf(s).booleanValue();
            }
            return defaultValue;
        } //-- boolean getBooleanValue(String, String, XMLStreamReader, String)
    
    #end
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  10. src/mdo/merger.vm

    #foreach ( $class in $model.allClasses )
    import ${packageModelV4}.${class.Name};
    #end
    
    @Generated
    public class ${className} {
    
        private final boolean deepMerge;
    
        public ${className}() {
            this(true);
        }
    
        public ${className}(boolean deepMerge) {
            this.deepMerge = deepMerge;
        }
    
        /**
         * Merges the specified source object into the given target object.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 12.2K bytes
    - Viewed (0)
Back to top