Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for opzione (0.17 sec)

  1. maven-core/src/main/java/org/apache/maven/artifact/repository/metadata/io/MetadataReader.java

         * @param options The options to use for deserialization, may be {@code null} to use the default values.
         * @return The deserialized metadata, never {@code null}.
         * @throws IOException If the metadata could not be deserialized.
         * @throws MetadataParseException If the input format could not be parsed.
         */
        Metadata read(File input, Map<String, ?> options) throws IOException, MetadataParseException;
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  2. Jenkinsfile.its

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    
    pipeline {
      agent { node { label 'ubuntu' } }
      options {
        durabilityHint('PERFORMANCE_OPTIMIZED')
        buildDiscarder(logRotator(numToKeepStr: '20', artifactNumToKeepStr: '5'))
        timeout(time: 180, unit: 'MINUTES')
      }
      parameters {
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Dec 26 16:42:35 GMT 2021
    - 2.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularization.java

         * builds an empty map.
         *
         * <p>If the {@code resolve} parameter value is {@code false}, then some or all map values may
         * be null instead of the actual module name. This option can avoid the cost of reading module
         * descriptors when only the modules existence needs to be verified.</p>
         *
         * <p><b>Algorithm:</b>
         * If the given path is a directory, then there is a choice:
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

              <version>4.0.0+</version>
              <type>boolean</type>
              <description>If set to true, this profile will be active unless another profile in this
                pom is activated using the command line -P option or by one of that profile's
                activators.</description>
            </field>
            <field>
              <name>jdk</name>
              <version>4.0.0+</version>
              <type>String</type>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 115.5K bytes
    - Viewed (0)
  5. maven-compat/src/main/resources/META-INF/maven/plugin-expressions/settings.paramdoc.xml

            <![CDATA[
          Flags the system as offline, to prevent accessing the network to resolve artifacts or execute plugins.
    
          NOTE: It's also possible to switch to offline mode on a per-build basis, using the '-o' command-line option.
        ]]></description>
        </expression>
        <expression>
          <syntax>settings.interactiveMode</syntax>
          <configuration>
            <![CDATA[
        <interactiveMode>true</interactiveMode>
        ]]></configuration>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Jul 18 17:22:19 GMT 2022
    - 2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResolver.java

            if (metadata != null && metadata.getFile() != null && metadata.getFile().isFile()) {
                try {
                    Map<String, ?> options = Collections.singletonMap(MetadataReader.IS_STRICT, Boolean.FALSE);
    
                    Metadata pluginGroupMetadata = metadataReader.read(metadata.getFile(), options);
    
                    List<org.apache.maven.artifact.repository.metadata.Plugin> plugins = pluginGroupMetadata.getPlugins();
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 10.4K bytes
    - Viewed (0)
  7. apache-maven/src/assembly/maven/conf/toolchains.xml

     |                 and is normally provided in ${user.home}/.m2/toolchains.xml.
     |
     |                 NOTE: This location can be overridden with the CLI option:
     |
     |                 -t /path/to/user/toolchains.xml
     |
     |  2. Global Level. This toolchains.xml file provides configuration for all Maven
     |                 users on a machine (assuming they're all using the same Maven
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 3.5K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

         * Otherwise, if the main artifact is placed on the module-path ({@value #JAR} or {@value #MODULAR_JAR} types),
         * then the test artifact will be added using {@code --patch-module} option.
         */
        String TEST_JAR = "test-jar";
    
        /**
         * Returns the dependency type id.
         * The id uniquely identifies this <i>dependency type</i>.
         *
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Mar 29 09:32:19 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  9. apache-maven/src/main/appended-resources/licenses/unrecognized-javax.annotation-api-1.3.2.txt

    this License and to the absence of any warranty; and give any other
    recipients of the Program a copy of this License along with the Program.
    
    You may charge a fee for the physical act of transferring a copy, and
    you may at your option offer warranty protection in exchange for a fee.
    
    2. You may modify your copy or copies of the Program or any portion of
    it, thus forming a work based on the Program, and copy and distribute
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue May 11 18:59:18 GMT 2021
    - 38.5K bytes
    - Viewed (0)
  10. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParser.java

         *
         * @param source the source to parse, never {@code null}
         * @param options possible parsing options, may be {@code null}
         * @return the parsed {@link Model}, never {@code null}
         * @throws ModelParserException if the model cannot be parsed
         */
        @Nonnull
        Model parse(@Nonnull Source source, @Nullable Map<String, ?> options) throws ModelParserException;
    
        /**
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.1K bytes
    - Viewed (0)
Back to top