Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 517 for deflate (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java

     */
    package org.codelibs.fess.app.logic;
    
    import javax.annotation.Resource;
    
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.dbflute.hook.AccessContext;
    import org.dbflute.optional.OptionalThing;
    import org.lastaflute.core.time.TimeManager;
    import org.lastaflute.db.dbflute.accesscontext.AccessContextResource;
    
    public class AccessContextLogic {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/externalDependency/groovy/build.gradle

    // 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 {
            def byte[] encodedString = new Base64().encode('hello world\n'.getBytes())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 474 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ComponentModuleMetadataContainerTest.groovy

            ex.message == "Cannot declare module replacement that replaces self: o:o->o:o"
        }
    
        def "detects cycles early"() {
            replacements.module("o:a").replacedBy("o:b")
            when: replacements.module("o:b").replacedBy("o:a")
    
            then:
            def ex = thrown(InvalidUserDataException)
            ex.message == "Cannot declare module replacement o:b->o:a because it introduces a cycle: o:b->o:a->o:b"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-outgoingCapabilities/kotlin/build.gradle.kts

    plugins {
        `java-library`
        `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
    - 846 bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/body.md

    ...as `description` and `tax` are optional (with a default value of `None`), this JSON "`object`" would also be valid:
    
    ```JSON
    {
        "name": "Foo",
        "price": 45.2
    }
    ```
    
    ## Declare it as a parameter
    
    To add it to your *path operation*, declare it the same way you declared path and query parameters:
    
    === "Python 3.10+"
    
        ```Python hl_lines="16"
        {!> ../../../docs_src/body/tutorial001_py310.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top