Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for Heller (0.58 sec)

  1. src/mdo/writer.vm

        #end
      #end
      #foreach ( $field in $allFields )
        #if ( ! $Helper.xmlFieldMetadata( $field ).attribute && ! $Helper.xmlFieldMetadata( $field ).transient )
          #set ( $fieldTagName = $Helper.xmlFieldMetadata( $field ).tagName )
          #if ( ! $fieldTagName )
            #set ( $fieldTagName = $field.name )
          #end
          #set ( $fieldCapName = $Helper.capitalise( $field.name ) )
          #set ( $def = ${field.defaultValue} )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 14 11:48:15 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. src/mdo/model-version.vm

                $pfx ${var}.get${Helper.capitalise($field.name)}().stream().anyMatch(this::is_${v}) // ${class.name} : ${field.name}
                    #else
                $pfx !${var}.get${Helper.capitalise($field.name)}().isEmpty() // ${class.name} : ${field.name}
                    #end
                #elseif ( $field.isOneMultiplicity() )
                $pfx is_${v}(${var}.get${Helper.capitalise($field.name)}()) // ${class.name} : ${field.name}
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 16 13:44:33 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. src/mdo/model-v3.vm

            }
          #end
        }
    
          #if ( $field.type == "java.util.List" && $field.multiplicity == "*" )
            #set ( $v = $Helper.singular( ${field.name} ) )
            #set ( $scap = $Helper.capitalise( $v ) )
        public void add${scap}(${field.to} ${v}) {
            #if ( $field.to == "String" )
            update(getDelegate().with${cap}(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Nov 06 19:04:44 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  4. src/mdo/reader.vm

      #foreach ( $field in $allFields )
        #if ( ! $Helper.xmlFieldMetadata( $field ).attribute && ! $Helper.xmlFieldMetadata( $field ).transient )
          #set ( $fieldTagName = $Helper.xmlFieldMetadata( $field ).tagName )
          #if ( ! $fieldTagName )
            #set ( $fieldTagName = $field.name )
          #end
          #if ( $Helper.isFlatItems( $field ) )
            #set ( $fieldTagName = $Helper.singular( $fieldTagName ) )
          #end
    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. maven-compat/src/main/java/org/apache/maven/repository/metadata/ClasspathTransformation.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.repository.metadata;
    
    import org.apache.maven.artifact.ArtifactScopeEnum;
    
    /**
     * Helper class to convert a metadata Graph into some form of a classpath
     *
     *
     */
    @Deprecated
    public interface ClasspathTransformation {
        String ROLE = ClasspathTransformation.class.getName();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. src/mdo/model.vm

    *#
    #parse ( "common.vm" )
    #
    #set ( $package = "${packageModelV4}" )
    #set ( $root = $model.getClass( $model.getRoot($version), $version ) )
    #foreach ( $class in $model.allClasses )
      #set ( $ancestors = $Helper.ancestors( $class ) )
      #set ( $allFields = [] )
      #set ( $inheritedFields = [] )
      #foreach ( $cl in $ancestors )
        #if ( $cl != $class )
          #set ( $dummy = $inheritedFields.addAll( $cl.getFields($version) ) )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultClasspathTransformation.java

                throw new MetadataGraphTransformationException(e);
            }
        }
    
        // ===================================================================================================
        /**
         * Helper class to traverse graph. Required to make the containing method thread-safe
         * and yet use class level data to lessen stack usage in recursion
         */
        private class ClasspathGraphVisitor {
            MetadataGraph graph;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadataGenerator.java

             * processes one artifact at a time and hence cannot associate the artifacts from the same project to use the
             * same version index. Allowing the caller to pass in metadata from a previous deployment allows to re-establish
             * the association between the artifacts of the same project.
             */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/lifecycle/internal/DefaultLifecycleMappingDelegate.java

                        MojoNotFoundException, InvalidPluginDescriptorException {
            /*
             * Initialize mapping from lifecycle phase to bound mojos. The key set of this map denotes the phases the caller
             * is interested in, i.e. all phases up to and including the specified phase.
             */
    
            Map<String, Map<Integer, List<MojoExecution>>> mappings = new LinkedHashMap<>();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/Os.java

                    return actualOsName.contains(FAMILY_OPENVMS);
                default:
                    return actualOsName.contains(family.toLowerCase(Locale.US));
            }
        }
    
        /**
         * Helper method to determine the current OS family.
         *
         * @return name of current OS family.
         */
        private static String getOsFamily() {
            return Stream.of(
                            FAMILY_DOS,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top