Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 998 for deflate (0.8 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.dbflute.hook.AccessContext;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.core.message.MessageManager;
    import org.lastaflute.core.time.TimeManager;
    import org.lastaflute.db.dbflute.accesscontext.AccessContextArranger;
    import org.lastaflute.web.TypicalAction;
    import org.lastaflute.web.response.ActionResponse;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/WebConfigService.java

    import org.codelibs.fess.es.config.exentity.WebConfig;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ParameterUtil;
    import org.dbflute.cbean.result.ListResultBean;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    public class WebConfigService extends FessAppService {
    
        @Resource
        protected WebConfigBhv webConfigBhv;
    
        @Resource
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/response-change-status-code.md

    But you still want to be able to filter and convert the data you return with a `response_model`.
    
    For those cases, you can use a `Response` parameter.
    
    ## Use a `Response` parameter
    
    You can declare a parameter of type `Response` in your *path operation function* (as you can do for cookies and headers).
    
    And then you can set the `status_code` in that *temporal* response object.
    
    ```Python hl_lines="1  9  12"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/request-files.md

    !!! tip
        To declare File bodies, you need to use `File`, because otherwise the parameters would be interpreted as query parameters or body (JSON) parameters.
    
    The files will be uploaded as "form data".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_platform_plugin.adoc

    The `api` configuration should be used to declare constraints and dependencies which should be used when compiling against the platform, whereas the `runtime` configuration should be used to declare constraints or dependencies which are visible at runtime.
    
    .Declaring API and runtime constraints
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesTroubleshootingDependencyResolutionIntegrationTest.groovy

        private static final String COPY_LIBS_TASK_NAME = 'copyLibs'
    
        @Rule
        Sample sample = new Sample(testDirectoryProvider)
    
        @UsesSample("dependencyManagement/troubleshooting-cache-changing")
        def "can declare custom TTL for dependency with changing version"() {
    
            given:
            def sampleDir = sample.dir.file(dsl)
            executer.inDirectory(sampleDir)
    
            when:
            succeeds(COPY_LIBS_TASK_NAME)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/FileAuthenticationService.java

    import org.codelibs.fess.es.config.exentity.FileAuthentication;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ParameterUtil;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    public class FileAuthenticationService {
    
        @Resource
        protected FileAuthenticationBhv fileAuthenticationBhv;
    
        @Resource
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/RoleTypeService.java

    import org.codelibs.fess.es.config.exbhv.RoleTypeBhv;
    import org.codelibs.fess.es.config.exentity.RoleType;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.optional.OptionalEntity;
    
    public class RoleTypeService {
    
        @Resource
        protected RoleTypeBhv roleTypeBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. pom.xml

    										<include>org.dbflute:dbflute-runtime</include>
    									</includes>
    								</artifactSet>
    								<relocations>
    									<relocation>
    										<pattern>org.dbflute</pattern>
    										<shadedPattern>org.codelibs.fess.crawler.dbflute</shadedPattern>
    									</relocation>
    								</relocations>
    							</configuration>
    						</execution>
    					</executions>
    				</plugin>
    			</plugins>
    		</pluginManagement>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    Organizations might decide to host dependencies in an in-house Ivy repository. Gradle can declare Ivy repositories by URL.
    
    [[sub:defining_an_ivy_repository_with_a_standard_layout]]
    === Defining an Ivy repository with a standard layout
    
    To declare an Ivy repository using the standard layout no additional customization is needed. You just declare the URL.
    
    .Ivy repository
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
Back to top