Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,275 for componentX (0.37 sec)

  1. src/main/resources/fess_cors.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components>
    	<component name="corsHandlerFactory" class="org.codelibs.fess.cors.CorsHandlerFactory">
    	</component>
    
    	<component name="defaultCorsHandler" class="org.codelibs.fess.cors.DefaultCorsHandler">
    	</component>
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jun 04 05:16:45 UTC 2023
    - 378 bytes
    - Viewed (0)
  2. src/main/resources/fess_api.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components>
    	<include path="fess_config.xml"/>
    
    	<component name="webApiManagerFactory" class="org.codelibs.fess.api.WebApiManagerFactory">
    	</component>
    
    	<component name="searchApiManager" class="org.codelibs.fess.api.json.SearchApiManager">
    	</component>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Apr 02 03:04:36 UTC 2023
    - 534 bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/env/suggest/resources/app.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components>
    	<include path="convention.xml" />
    	<include path="lastaflute_core.xml"/>
    	<include path="fess.xml" />
    
    	<component name="fessSuggest" class="org.codelibs.fess.exec.SuggestCreator"
    			   instance="prototype">
    	</component>
    	<component name="suggestHelper" class="org.codelibs.fess.helper.SuggestHelper">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 14 21:35:39 UTC 2020
    - 489 bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

            when:
            fails 'dependentComponents', '--test-suites', '--component', 'unknown', '--component', 'anonymous', '--component', 'whatever', '--component', 'lib', '--component', 'main', '--component', 'libTest'
    
            then:
            failure.assertHasCause "Components 'unknown', 'anonymous' and 'whatever' not found."
        }
    
        def "displays dependent of multiple targeted components"() {
            given:
            buildScript simpleCppBuild()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentPluginIntegrationTest.groovy

    }
    """
        }
    
        def "plugin declares custom component"() {
            when:
            buildWithCustomComponentPlugin()
    
            and:
            buildFile << '''
    model {
        tasks {
            create("checkModel") {
                def components = $.components
                doLast {
                    assert components.size() == 1
                    def sampleLib = components.sampleLib
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/component/SoftwareComponentFactory.java

     * limitations under the License.
     */
    package org.gradle.api.component;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A software component factory is responsible for providing to
     * plugins a way to create software components. Currently the
     * software factory only allows the creation of adhoc software
     * components which can be used for publishing simple components.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. fess-crawler-es/src/main/resources/crawler_es.xml

    	</component>
    	<component name="urlQueue"
    		class="org.codelibs.fess.crawler.entity.EsUrlQueue" instance="prototype">
    	</component>
    
    	<!-- Service -->
    	<component name="urlQueueService"
    		class="org.codelibs.fess.crawler.service.impl.EsUrlQueueService">
    		<arg>crawlerConfig</arg>
    	</component>
    	<component name="dataService"
    		class="org.codelibs.fess.crawler.service.impl.EsDataService">
    		<arg>crawlerConfig</arg>
    	</component>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Fri Dec 03 12:48:53 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  8. fess-crawler-lasta/src/main/resources/crawler.xml

    	</component>
    	<component name="urlQueue" class="org.codelibs.fess.crawler.entity.UrlQueueImpl" instance="prototype" >
    	</component>
    
    	<!-- Service -->
    	<component name="urlQueueService" class="org.codelibs.fess.crawler.service.impl.UrlQueueServiceImpl" instance="prototype" >
    	</component>
    	<component name="dataService" class="org.codelibs.fess.crawler.service.impl.DataServiceImpl" instance="prototype" >
    	</component>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Tue Nov 28 13:40:25 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentMetadataDetails.java

        /**
         * Sets whether the component is changing or immutable.
         *
         * @param changing whether the component is changing or immutable
         */
        void setChanging(boolean changing);
    
        /**
         * Sets the status of the component. Must
         * match one of the values in {@link #getStatusScheme()}.
         *
         * @param status the status of the component
         */
        void setStatus(String status);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/plugins/NativeBasePluginTest.groovy

            when:
            project.components.add(component)
    
            then:
            project.components.size() == 1
    
            when:
            binaries.add(b1)
            binaries.add(b2)
            binaries.realizeNow()
    
            then:
            project.components.size() == 3
            project.components.b1 == b1
            project.components.b2 == b2
        }
    
        def "assemble task does nothing when no main component"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top