Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 517 for deflate (0.15 sec)

  1. src/main/java/org/codelibs/fess/app/service/RelatedContentService.java

    import org.codelibs.fess.es.config.exentity.RelatedContent;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    public class RelatedContentService extends FessAppService {
    
        @Resource
        protected RelatedContentBhv relatedContentBhv;
    
        @Resource
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/KeyMatchService.java

    import org.codelibs.fess.es.config.exbhv.KeyMatchBhv;
    import org.codelibs.fess.es.config.exentity.KeyMatch;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    public class KeyMatchService extends FessAppService {
    
        @Resource
        protected KeyMatchBhv keyMatchBhv;
    
        @Resource
        protected FessConfig fessConfig;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/response-headers.md

    # Response Headers
    
    ## Use a `Response` parameter
    
    You can declare a parameter of type `Response` in your *path operation function* (as you can do for cookies).
    
    And then you can set headers in that *temporal* response object.
    
    ```Python hl_lines="1  7-8"
    {!../../../docs_src/response_headers/tutorial002.py!}
    ```
    
    And then you can return any object you need, as you normally would (a `dict`, a database model, etc).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/internal/types/testdata/check/decls0.go

    	_ pi /* ERROR "not a type" */
    	_ struct{}
    	_ struct{ pi /* ERROR "not a type" */ }
    )
    
    
    // declarations of init
    const _, init /* ERROR "cannot declare init" */ , _ = 0, 1, 2
    type init /* ERROR "cannot declare init" */ struct{}
    var _, init /* ERROR "cannot declare init" */ int
    
    func init() {}
    func init /* ERROR "missing function body" */ ()
    
    func _() { const init = 0 }
    func _() { type init int }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/initialization/dsl/ScriptHandler.java

     * classpath used to compile and execute a build script. This classpath is also used to load the plugins which the build
     * script uses.</p>
     *
     * <p>You can obtain a {@code ScriptHandler} instance using {@link org.gradle.api.Project#getBuildscript()} or {@link
     * org.gradle.api.Script#getBuildscript()}.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 20:33:21 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/PathMappingService.java

    import org.codelibs.fess.es.config.exentity.PathMapping;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    public class PathMappingService extends FessAppService {
    
        @Resource
        protected PathMappingBhv pathMappingBhv;
    
        @Resource
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-code-coverage-standalone/README.adoc

    ====
    
    The standalone project applies `jacoco-report-aggregation`, but requires additional configuration if the `jvm-test-suite` plugin is not also present.
    
    In this scenario, two additional pieces of setup are necessary:
    
    <1> Declare dependencies using the `jacocoAggregation` configuration
    <2> Define a report of type `JacocoCoverageReport` which collects coverage data from unit test suites
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/README.adoc

    In this scenario, two additional pieces of setup are necessary:
    
    <1> Declare dependencies using the `testReportAggregation` configuration
    <2> Define a report of type `AggregateTestReport` which collects test data from unit test suites
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/JvmConstants.java

         *
         * @since 3.4
         */
        public static final String API_ELEMENTS_CONFIGURATION_NAME = "apiElements";
    
        /**
         * The name of the configuration that is used to declare dependencies which are only required to compile a component,
         * but not at runtime.
         */
        public static final String COMPILE_ONLY_CONFIGURATION_NAME = "compileOnly";
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/antlr_plugin.adoc

    .Declare ANTLR version
    ====
    include::sample[dir="snippets/antlr/useAntlrPlugin/kotlin",files="build.gradle.kts[tags=declare-dependency]"]
    include::sample[dir="snippets/antlr/useAntlrPlugin/groovy",files="build.gradle[tags=declare-dependency]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top