Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,096 for deflate (0.13 sec)

  1. docs/en/docs/tutorial/request-forms-and-files.md

        ```
    
    The files and form fields will be uploaded as form data and you will receive the files and form fields.
    
    And you can declare some of the files as `bytes` and some as `UploadFile`.
    
    !!! warning
        You can declare multiple `File` and `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 `multipart/form-data` instead of `application/json`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractEntity.java

    import java.io.Serializable;
    import java.util.Map;
    import java.util.Set;
    
    import org.dbflute.Entity;
    import org.dbflute.FunCustodial;
    import org.dbflute.dbmeta.accessory.EntityModifiedProperties;
    import org.dbflute.dbmeta.accessory.EntityUniqueDrivenProperties;
    import org.dbflute.util.DfCollectionUtil;
    import org.opensearch.action.delete.DeleteRequestBuilder;
    import org.opensearch.action.index.IndexRequestBuilder;
    
    /**
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractEntity.java

    import java.io.Serializable;
    import java.util.Map;
    import java.util.Set;
    
    import org.dbflute.Entity;
    import org.dbflute.FunCustodial;
    import org.dbflute.dbmeta.accessory.EntityModifiedProperties;
    import org.dbflute.dbmeta.accessory.EntityUniqueDrivenProperties;
    import org.dbflute.util.DfCollectionUtil;
    import org.opensearch.action.delete.DeleteRequestBuilder;
    import org.opensearch.action.index.IndexRequestBuilder;
    
    /**
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/core_dependency_management.adoc

    ====
    
    <1> *Here we define repositories for the project.*
    
    <2> *Here we declare remote and local repositories for dependency locations.*
    +
    You can <<declaring_repositories.adoc#declaring-repositories,declare _repositories_>> to tell Gradle where to fetch local or remote _dependencies_. +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractBehavior.java

    import org.dbflute.Entity;
    import org.dbflute.bhv.AbstractBehaviorWritable;
    import org.dbflute.bhv.readable.EntityRowHandler;
    import org.dbflute.bhv.writable.DeleteOption;
    import org.dbflute.bhv.writable.InsertOption;
    import org.dbflute.bhv.writable.UpdateOption;
    import org.dbflute.cbean.ConditionBean;
    import org.dbflute.cbean.coption.CursorSelectOption;
    import org.dbflute.cbean.result.ListResultBean;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tasks/configureUsingBlock/groovy/build.gradle

    // tag::declare-task[]
    tasks.register('myCopy', Copy)
    // end::declare-task[]
    
    // tag::configure[]
    // Configure task through a task provider
    def myCopy = tasks.named('myCopy')  {
        from 'resources'
        into 'target'
    }
    myCopy.configure {
        include('**/*.txt', '**/*.xml', '**/*.properties')
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 315 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProvider.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.direction.sponsor;
    
    import java.util.TimeZone;
    
    import org.dbflute.optional.OptionalObject;
    import org.dbflute.optional.OptionalThing;
    import org.dbflute.util.DfTypeUtil;
    import org.lastaflute.web.ruts.process.ActionRuntime;
    import org.lastaflute.web.servlet.request.RequestManager;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/additional-responses.md

    You can declare a `response_model`, using the default status code `200` (or a custom one if you need), and then declare additional information for that same response in `responses`, directly in the OpenAPI schema.
    
    **FastAPI** will keep the additional information from `responses`, and combine it with the JSON Schema from your model.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/testKit/spockQuickstart/groovy/build.gradle

    dependencies {
        testImplementation localGroovy()
        testImplementation gradleTestKit()
    }
    
    // tag::declare-spock-dependency[]
    dependencies {
        testImplementation('org.spockframework:spock-core:2.2-groovy-3.0') {
            exclude group: 'org.codehaus.groovy'
        }
        testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
    }
    // end::declare-spock-dependency[]
    
    tasks.named('test', Test) {
        useJUnitPlatform()
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 490 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/build-organization/composite-builds/declared-substitution/README.adoc

    Take for example a single-project build 'unpublished', that produces a java utility library but does not declare a value for the `group` attribute:
    
    ====
    include::sample[dir="kotlin/anonymous-library",files="build.gradle.kts[]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top