Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for myfield (0.19 sec)

  1. api/maven-api-settings/src/main/mdo/settings.mdo

              </description>
              <type>String</type>
            </field>
            <field>
              <name>protocol</name>
              <version>1.0.0+</version>
              <description>
                The proxy protocol.
              </description>
              <type>String</type>
              <defaultValue>http</defaultValue>
            </field>
            <field>
              <name>username</name>
              <version>1.0.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. api/maven-api-metadata/src/main/mdo/metadata.mdo

            </field>
            <field>
              <name>artifactId</name>
              <version>1.0.0+</version>
              <type>String</type>
              <description>The artifactId when this directory represents "groupId/artifactId" or "groupId/artifactId/version".</description>
            </field>
            <field>
              <name>versioning</name>
              <version>1.0.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. src/mdo/writer-stax.vm

          #elseif ( $field.type == "java.util.Properties" && $field.to == "String" && $field.multiplicity == "*" )
                writeProperties("$fieldTagName", ${classLcapName}.get${fieldCapName}(), serializer${loctrac});
          #elseif ( $field.to && $field.multiplicity == "1" )
                write${field.to}("$fieldTagName", ${classLcapName}.get${fieldCapName}(), serializer);
          #elseif ( $field.to && $field.multiplicity == "*" )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  4. maven-model/src/main/java/org/apache/maven/model/InputLocationTracker.java

        /**
         * Gets the location of the specified field in the input
         * source.
         *
         * @param field The key of the field, must not be
         * <code>null</code>.
         * @return The location of the field in the input source or
         * <code>null</code> if unknown.
         */
        public InputLocation getLocation(Object field);
        /**
         * Sets the location of the specified field.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  5. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

                return null;
            }
            for (Field field : cls.getDeclaredFields()) {
                if (!field.isSynthetic() || !field.getName().startsWith("this$") || field.getType() != enclosingClass) {
                    continue;
                }
                field.setAccessible(true);
                try {
                    return field.get(innerClassInstance);
                } catch (IllegalAccessException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. maven-core/src/main/mdo/extension.mdo

                In particular this includes all subpackages. Despite the element name one can also only expose individual classes of a particular package by adding its binary name as value.
              ]]></description>
            </field>
            <field>
              <name>exportedArtifacts</name>
              <version>1.0.0</version>
              <association>
                <type>String</type>
                <multiplicity>*</multiplicity>
              </association>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. maven-plugin-api/src/test/resources/plugin.xml

          </configuration>
          <requirements>
            <requirement>
              <role>org.codehaus.plexus.archiver.Archiver</role>
              <role-hint>jar</role-hint>
              <field-name>jarArchiver</field-name>
            </requirement>
          </requirements>
        </mojo>
        <mojo>
          <goal>war</goal>
          <threadSafe>true</threadSafe>
        </mojo>
      </mojos>
      <dependencies>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 10 16:05:24 UTC 2017
    - 3.3K bytes
    - Viewed (0)
  8. api/maven-api-di/src/main/java/org/apache/maven/api/di/Inject.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.Target;
    
    import static java.lang.annotation.ElementType.*;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    @Target({FIELD, CONSTRUCTOR, METHOD})
    @Retention(RUNTIME)
    @Documented
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. api/maven-api-meta/src/main/java/org/apache/maven/api/annotations/Immutable.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * The {@code Immutable} annotation indicates that the object is immutable, i.e.
     * none of its field can be changed.  This also ensures that the type is
     * {@link ThreadSafe}.
     *
     * @see ThreadSafe
     * @since 4.0.0
     */
    @Experimental
    @Documented
    @Retention(RetentionPolicy.CLASS)
    @ThreadSafe
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                InputSource v4src = loc != null ? loc.getSource() : null;
                if (v4src != null) {
                    try {
                        Field field = InputSource.class.getDeclaredField("modelId");
                        field.setAccessible(true);
                        field.set(v4src, ModelProblemUtils.toId(model));
                    } catch (Throwable t) {
                        // TODO: use a lazy source ?
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
Back to top