Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for bond (0.08 sec)

  1. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                    Binding<Object> bind = ReflectionUtils.bindingFromMethod(method).scope(scope);
                    for (Type t : Types.getAllSuperTypes(returnType)) {
                        if (types == null || types.contains(Types.getRawType(t))) {
                            bind(Key.ofType(t, qualifier), bind);
                            if (qualifier != null) {
                                bind(Key.ofType(t), bind);
                            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        public boolean requiresOnline() {
            return onlineRequired;
        }
    
        /**
         * @return the bound phase name of the Mojo
         */
        public String getPhase() {
            return phase;
        }
    
        /**
         * @param phase the new bound phase name of the Mojo
         */
        public void setPhase(String phase) {
            this.phase = phase;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  3. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

    Works shall not include works that contain only declarations,
    interfaces, types, classes, structures, or files of the Program solely
    in each case in order to link to, bind by name, or subclass the Program
    or Modified Works thereof.
    
    "Distribute" means the acts of a) distributing or b) making available
    in any manner that enables the transfer of a copy.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/fusesource/jansi/Ansi.java

            builder.append(FIRST_ESC_CHAR);
            builder.append('8');
            return this;
        }
    
        public Ansi reset() {
            return a(Attribute.RESET);
        }
    
        public Ansi bold() {
            return a(Attribute.INTENSITY_BOLD);
        }
    
        public Ansi boldOff() {
            return a(Attribute.INTENSITY_BOLD_OFF);
        }
    
        public Ansi a(String value) {
            flushAttributes();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. api/maven-api-plugin/src/main/mdo/plugin.mdo

            </field>
            <field>
              <name>phase</name>
              <version>1.0.0+</version>
              <type>String</type>
              <description>
                Defines a default phase to bind a Mojo execution to if the user does not explicitly set a phase in the POM.
                &lt;p>&lt;b>Note:&lt;/b> This will not automagically make a Mojo run when the plugin declaration is added
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top