Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for lines (0.09 sec)

  1. maven-model-builder/src/test/resources/dag.txt

    	quarkus/extensions/undertow/deployment/pom.xml
    	quarkus/test-framework/junit5-internal/pom.xml
    quarkus/extensions/resteasy-classic/resteasy-links/deployment/pom.xml
    	quarkus/extensions/resteasy-classic/resteasy/deployment/pom.xml
    	quarkus/extensions/resteasy-classic/resteasy-links/runtime/pom.xml
    	quarkus/test-framework/junit5-internal/pom.xml
    quarkus/extensions/datasource/deployment-spi/pom.xml
    	quarkus/core/deployment/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  2. src/mdo/model.vm

    // ==============================================================
    package ${package};
    
        #foreach ( $imp in $imports )
    import $imp;
        #end
    
    /**
        #foreach ( $line in ${class.description.trim().split("\n")} )
     * ${line.trim()}
        #end
     */
    @Experimental
    @Generated @ThreadSafe @Immutable
    public class ${class.name}
        #if ( $class.superClass )
        extends ${class.superClass}
        #end
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. src/mdo/writer.vm

            serializer.setProperty("http://xmlpull.org/v1/doc/properties.html#serializer-indentation", "  ");
            serializer.setProperty("http://xmlpull.org/v1/doc/properties.html#serializer-line-separator", "\n");
            serializer.setOutput(writer);
            serializer.startDocument(${rootLcapName}.getModelEncoding(), null);
            write${root.name}("$rootTag", ${rootLcapName}, serializer);
    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/site/apt/offline-mode.apt

      can conceivably be set from either the settings.xml or the command-line.
    
      In the event the '-o' switch is the impetus for setting offline mode, this
      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
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    attach them to the start of each source file to most effectively convey
    the exclusion of warranty; and each file should have at least the
    "copyright" line and a pointer to where the full notice is found.
    
        One line to give the program's name and a brief idea of what it does.
        Copyright (C) <year> <name of author>
    
        This program is free software; you can redistribute it and/or modify
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  6. maven-core/src/site/apt/configuration-management.apt

     maven.multiproject.includes property.
     2. it works without problems only for projects with relative paths, e.g., from
     one CVS repository.. for projects from multiple SCM repositories it's harder
     to maintain the same relative links on all developer computers.
     not sure the unified source directory structure addresses this issue.
    
     Properties
    
     maven.user.config.dir (system,default=${user.home}/.m2)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/mdo/reader-stax.vm

            while ((strict ? parser.nextTag() : nextTag(parser)) == XMLStreamReader.START_ELEMENT) {
                String childName = checkDuplicate(parser.getLocalName(), parser, parsed);
      #if ( $locationTracking )
                int line = addLocationInformation ? parser.getLocation().getLineNumber() : -1;
                int column = addLocationInformation ? parser.getLocation().getColumnNumber() : -1;
                Map<Object, InputLocation> locations = null;
      #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)
Back to top