Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 5,275 for componentX (0.17 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/encoding.xml

    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components namespace="fessCrawler">
    	<include path="crawler/container.xml" />
    
    	<component name="encodingHelper" class="org.codelibs.fess.crawler.helper.EncodingHelper">
    		<postConstruct name="addEncodingMapping">
    			<arg>"unicode"</arg>
    			<arg>"UTF-16LE"</arg>
    		</postConstruct>
    	</component>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Fri Jun 16 13:35:06 UTC 2017
    - 454 bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentSelectionRules.java

    import org.gradle.api.Action;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Represents a container for component selection rules.  Rules can be applied as part of the
     * resolutionStrategy of a configuration and individual components can be explicitly accepted
     * or rejected by rule.  Components that are neither accepted or rejected will be subject to
     * the default version matching strategies.
     *
     * <pre class='autoTested'>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 31 08:53:53 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/query/DefaultArtifactResolutionQueryTest.groovy

    import org.gradle.api.internal.component.ComponentTypeRegistration
    import org.gradle.api.internal.component.ComponentTypeRegistry
    import org.gradle.internal.component.external.model.DefaultModuleComponentIdentifier
    import org.gradle.internal.component.model.ComponentArtifactResolveState
    import org.gradle.internal.component.model.ComponentGraphResolveMetadata
    import org.gradle.internal.component.model.ComponentGraphResolveState
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 19:46:40 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    ====
    
    [[sec:publishing-custom-components]]
    == Creating and publishing custom components
    
    In the <<sec:adding-variants-to-existing-components, previous example>>, we have demonstrated how to extend or modify an existing component, like the components provided by the Java plugins.
    But Gradle also allows you to build a custom component (not a Java Library, not a Java Platform, not something supported natively by Gradle).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/settings/PomConstructionWithSettingsTest.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <plexus>
      <components>
        <component>
          <role>org.apache.maven.lifecycle.LifecycleExecutor</role>
          <implementation>org.apache.maven.project.EmptyLifecycleExecutor</implementation>
        </component>
      </components>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 05 19:18:41 UTC 2009
    - 273 bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentBinariesIntegrationTest.groovy

                binaries {
                    myLibMain()
                    myLibTest()
                }
            }
        }
    
        def "multiple components may have binary with the same given name"() {
            given:
            buildFile << """
                model {
                    components {
                        otherlib(CustomComponent) {
                            binaries {
                                main(CustomBinary)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    When you _build_ dependents of a component, the component and all of its dependent binaries are compiled, linked _and checked_. Checking components means running any <<#sec:check_tasks,check task>> including executing any test suites, so tests _are_ run when building a component.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/dependents/DependentComponentsReportIntegrationTest.groovy

            output.contains("Displays the dependent components of components in root project 'test'. [deprecated]")
            output.contains("--all     Show all components (non-buildable and test suites).")
            output.contains("--non-buildable     Show non-buildable components.")
            output.contains("--test-suites     Show test suites components.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 17:32:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

     * in the project.  Some methods - such as {@link #registerFeature(String, Action)} -
     * are not applicable in this manner and will throw exceptions if used when multiple
     * {@link org.gradle.jvm.component.internal.JvmSoftwareComponentInternal JvmSoftwareComponentInternal}
     * components are present.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/test/groovy/org/gradle/language/base/plugins/ComponentModelBasePluginTest.groovy

                }
            }
    
            then:
            def binaries = realizeBinaries()
            def components = realizeComponents()
            binaries.size() == 2
            binaries.comp1Bin1 == components.comp1.binaries.bin1
            binaries.comp1Bin2 == components.comp1.binaries.bin2
        }
    
        def "links the tasks of each component in 'components' container into the 'tasks' container"() {
            when:
            dsl {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top