Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 546 for deflate (0.19 sec)

  1. platforms/documentation/docs/src/snippets/tutorial/externalDependency/kotlin/build.gradle.kts

    // tag::all[]
    import org.apache.commons.codec.binary.Base64
    
    // tag::declare-classpath[]
    buildscript {
        repositories {
            mavenCentral()
        }
        dependencies {
            "classpath"(group = "commons-codec", name = "commons-codec", version = "1.2")
        }
    }
    // end::declare-classpath[]
    
    tasks.register("encode") {
        doLast {
            val encodedString = Base64().encode("hello world\n".toByteArray())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 469 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/bsbhv/BsUserInfoBhv.java

    import org.codelibs.fess.es.log.exentity.UserInfo;
    import org.dbflute.Entity;
    import org.dbflute.bhv.readable.CBCall;
    import org.dbflute.bhv.readable.EntityRowHandler;
    import org.dbflute.cbean.ConditionBean;
    import org.dbflute.cbean.result.ListResultBean;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.dbflute.exception.IllegalBehaviorStateException;
    import org.dbflute.optional.OptionalEntity;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/header-params.md

        !!! tip
            Prefer to use the `Annotated` version if possible.
    
        ```Python hl_lines="3"
        {!> ../../../docs_src/header_params/tutorial001.py!}
        ```
    
    ## Declare `Header` parameters
    
    Then declare the header parameters using the same structure as with `Path`, `Query` and `Cookie`.
    
    The first value is the default value, you can pass all the extra validation or annotation parameters:
    
    === "Python 3.10+"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ClientModule.java

    package org.gradle.api.artifacts;
    
    import java.util.Set;
    
    /**
     * To model a module in your dependency declarations. Usually you can either declare a single dependency
     * artifact or you declare a module dependency that depends on a module descriptor in a repository. With
     * a client module you can declare a module dependency without the need of a module descriptor in a
     * remote repository.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.bundling.Zip.xml

                    <td>metadataCharset</td>
                    <td>Platform default encoding</td>
                </tr>
                <tr>
                    <td>entryCompression</td>
                    <td><literal>ZipEntryCompression.DEFLATED</literal></td>
                </tr>
                <tr>
                    <td>metadataCharset</td>
                    <td>Platform default encoding</td>
                </tr>
                <tr>
                    <td>zip64</td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1003 bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/mylasta/FessActionDefTest.java

     */
    package org.codelibs.fess.mylasta;
    
    import java.io.File;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.dbflute.utflute.lastaflute.police.NonActionExtendsActionPolice;
    import org.dbflute.utflute.lastaflute.police.NonWebHasWebReferencePolice;
    import org.dbflute.utflute.lastaflute.police.WebPackageNinjaReferencePolice;
    
    public class FessActionDefTest extends UnitFessTestCase {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-outgoingCapabilities/groovy/build.gradle

    plugins {
        id 'java-library'
        id 'maven-publish'
    }
    
    group = 'com.acme'
    version = '1.0'
    
    // tag::declare-outgoing-capabilities[]
    configurations {
        apiElements {
            outgoing {
                capability("com.acme:my-library:1.0")
                capability("com.other:module:1.1")
            }
        }
        runtimeElements {
            outgoing {
                capability("com.acme:my-library:1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 832 bytes
    - Viewed (0)
  8. 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)
  9. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProvider.java

    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    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.8K bytes
    - Viewed (0)
  10. 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)
Back to top