Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for composition (0.82 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

    import org.codehaus.plexus.DefaultPlexusContainer;
    import org.codehaus.plexus.PlexusContainer;
    import org.codehaus.plexus.classworlds.realm.ClassRealm;
    import org.codehaus.plexus.component.composition.CycleDetectedInComponentGraphException;
    import org.codehaus.plexus.component.configurator.ComponentConfigurationException;
    import org.codehaus.plexus.component.configurator.ComponentConfigurator;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

    import org.apache.maven.model.Profile;
    import org.apache.maven.model.building.ModelProblem.Severity;
    import org.apache.maven.model.building.ModelProblem.Version;
    import org.apache.maven.model.composition.DependencyManagementImporter;
    import org.apache.maven.model.inheritance.InheritanceAssembler;
    import org.apache.maven.model.interpolation.ModelInterpolator;
    import org.apache.maven.model.interpolation.ModelVersionProcessor;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  3. maven-core/src/test/projects/lifecycle-executor/project-with-multiple-executions/src/main/mdo/supplemental-model.mdo

        <default>
          <key>package</key>
          <value>org.apache.maven.plugin.resources.remote</value>
        </default>
      </defaults>
      <classes>
        <class rootElement="true" xml.tagName="supplementalDataModels" xsd.compositor="sequence">
          <name>SupplementalDataModel</name>
          <version>1.0.0</version>
          <description>Root element of the supplemental-models.xml file.</description>
          <fields>
            <field xml.listStyle="flat">
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 21 12:56:07 UTC 2009
    - 2.1K bytes
    - Viewed (0)
  4. api/maven-api-plugin/src/main/mdo/lifecycle.mdo

        {@code META-INF/maven/lifecycle.xml} in a plugin's jar artifact.
      </description>
      <classes>
        <class rootElement="true" xml.tagName="lifecycles" xsd.compositor="sequence">
          <name>LifecycleConfiguration</name>
          <version>1.0.0</version>
          <description>Root element of the {@code lifecycle.xml} file.</description>
          <fields>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. maven-embedder/src/main/mdo/core-extensions.mdo

        <default>
          <key>package</key>
          <value>org.apache.maven.cli.internal.extension.model</value>
        </default>
      </defaults>
    
      <classes>
        <class rootElement="true" xml.tagName="extensions" xsd.compositor="sequence">
          <name>CoreExtensions</name>
          <description>Extensions to load.</description>
          <version>1.0.0+</version>
          <fields>
            <field>
              <name>extensions</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

                return sourceLevel;
            }
                    ]]>
              </code>
            </codeSegment>
          </codeSegments>
        </class>
        <class rootElement="true" xml.tagName="toolchains" xsd.compositor="sequence">
          <name>PersistedToolchains</name>
          <superClass>TrackableBase</superClass>
          <description>
            The {@code &lt;toolchains&gt;} element is the root of the descriptor.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    type Mutex struct         { /* Mutex fields */ }
    func (m *Mutex) Lock()    { /* Lock implementation */ }
    func (m *Mutex) Unlock()  { /* Unlock implementation */ }
    
    // NewMutex has the same composition as Mutex but its method set is empty.
    type NewMutex Mutex
    
    // The method set of PtrMutex's underlying type *Mutex remains unchanged,
    // but the method set of PtrMutex is empty.
    type PtrMutex *Mutex
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. doc/go_spec.html

    type Mutex struct         { /* Mutex fields */ }
    func (m *Mutex) Lock()    { /* Lock implementation */ }
    func (m *Mutex) Unlock()  { /* Unlock implementation */ }
    
    // NewMutex has the same composition as Mutex but its method set is empty.
    type NewMutex Mutex
    
    // The method set of PtrMutex's underlying type *Mutex remains unchanged,
    // but the method set of PtrMutex is empty.
    type PtrMutex *Mutex
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/testdata/arm.s

    	TST	$0xffffffad, R4     // TST $4294967213, R4       // 52b0e0e30b0014e1
    	TEQ	$0xffffffae, R5     // TEQ $4294967214, R5       // 51b0e0e30b0035e1
    
    // immediate decomposition
    	ADD	$0xff0000ff, R0, R1 // ADD $4278190335, R0, R1 // ff1080e2ff1481e2
    	EOR	$0xff0000ff, R0, R1 // EOR $4278190335, R0, R1 // ff1020e2ff1421e2
    	ORR	$0xff0000ff, R0, R1 // ORR $4278190335, R0, R1 // ff1080e3ff1481e3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  10. src/main/webapp/js/jquery-3.6.3.min.map

    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
Back to top