Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 650 for deflate (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/component_capabilities.adoc

    With Gradle it becomes interesting to explicitly declare what features a component provides.
    For this, Gradle provides the concept of <<dependency_constraints.adoc#sec:adding-constraints-transitive-deps,capability>>.
    
    A feature is often built by combining different _capabilities_.
    
    In an ideal world, components shouldn't declare dependencies on explicit GAVs, but rather express their requirements in terms of capabilities:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_score.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="scoreUpdater" class="org.codelibs.fess.score.ScoreUpdater">
    	</component>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Nov 28 08:57:57 UTC 2019
    - 262 bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/request-forms.md

    !!! warning
        You can declare multiple `Form` parameters in a *path operation*, but you can't also declare `Body` fields that you expect to receive as JSON, as the request will have the body encoded using `application/x-www-form-urlencoded` instead of `application/json`.
    
        This is not a limitation of **FastAPI**, it's part of the HTTP protocol.
    
    ## Recap
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/main/resources/crawler/es.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="esClient"
    		class="org.codelibs.fess.es.client.CrawlerEngineClient">
    	</component>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 272 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-simple/groovy/producer/build.gradle

    plugins {
        id 'java-library'
    }
    
    // tag::declare-outgoing-configuration[]
    configurations {
        instrumentedJars {
            canBeConsumed = true
            canBeResolved = false
            // If you want this configuration to share the same dependencies, otherwise omit this line
            extendsFrom implementation, runtimeOnly
        }
    }
    // end::declare-outgoing-configuration[]
    
    def instrumentedJar = tasks.register("instrumentedJar", Jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 785 bytes
    - Viewed (0)
  6. src/main/resources/my_creator.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"/>
        <component name="pagerCreator" class="org.codelibs.fess.mylasta.creator.PagerCreator"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 03 14:03:30 UTC 2015
    - 296 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-simple/kotlin/producer/build.gradle.kts

    plugins {
        `java-library`
    }
    
    // tag::declare-outgoing-configuration[]
    val instrumentedJars by configurations.creating {
        isCanBeConsumed = true
        isCanBeResolved = false
        // If you want this configuration to share the same dependencies, otherwise omit this line
        extendsFrom(configurations["implementation"], configurations["runtimeOnly"])
    }
    // end::declare-outgoing-configuration[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 832 bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainBeforeHook.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.direction.sponsor;
    
    import java.util.TimeZone;
    
    import org.dbflute.system.DBFluteSystem;
    import org.dbflute.system.provider.DfFinalTimeZoneProvider;
    import org.dbflute.util.DfTypeUtil;
    import org.lastaflute.core.direction.CurtainBeforeHook;
    import org.lastaflute.core.direction.FwAssistantDirector;
    
    /**
     * @author jflute
     */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/env/thumbnail/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" />
    
    	<include path="crawler_es.xml" />
    	<include path="fess_thumbnail.xml"/>
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 12 13:38:57 UTC 2018
    - 348 bytes
    - Viewed (0)
  10. fess-crawler-lasta/src/main/resources/crawler/contentlength.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!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="contentLengthHelper"
    		class="org.codelibs.fess.crawler.helper.ContentLengthHelper" instance="singleton">
    	</component>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 375 bytes
    - Viewed (0)
Back to top