Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 129 for deflate (0.12 sec)

  1. fess-crawler/pom.xml

    		</dependency>
    		<dependency>
    			<groupId>junit</groupId>
    			<artifactId>junit</artifactId>
    			<version>${junit.version}</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.dbflute.utflute</groupId>
    			<artifactId>utflute-core</artifactId>
    			<version>${utflute.version}</version>
    			<scope>test</scope>
    		</dependency>
    		<dependency>
    			<groupId>org.mortbay.jetty</groupId>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. subprojects/core/build.gradle.kts

        integTestImplementation(testFixtures(project(":file-temp")))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("This is required by ProjectBuilder, but ProjectBuilder cannot declare :distributions-core as a dependency due to conflicts with other distributions.")
        }
    
        integTestDistributionRuntimeOnly(project(":distributions-jvm")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    - (3) (4) Declare the path sensitivity.
    
    === Using the runtime API
    
    If for some reason you cannot create a new custom task class, it is also possible to make a task cacheable using the <<incremental_build.adoc#sec:task_input_output_runtime_api,runtime API>> to declare the inputs and outputs.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtVariableLikeSymbol.kt

     *
     * The type of the enum entry is the enum class itself. The members declared in an enum entry's body are local to the body and cannot be
     * accessed from the outside. Hence, while it might look like enum entries can declare their own members (see the example below), they do
     * not have a (declared) member scope.
     *
     * Members declared by the enum class and overridden in the enum entry's body will be accessible, of course, but only the base version
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. docs/es/docs/async.md

    ### Hamburguesas Concurrentes
    
    Vas con la persona que te gusta ๐Ÿ˜ a pedir comida rรกpida ๐Ÿ”, haces cola mientras el cajero ๐Ÿ’ recoge los pedidos de las personas de delante tuyo.
    
    <img src="https://fastapi.tiangolo.com/img/async/concurrent-burgers/concurrent-burgers-01.png" alt="illustration">
    
    Llega tu turno, haces tu pedido de 2 hamburguesas impresionantes para esa persona ๐Ÿ˜ y para ti.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. docs/en/docs/index.md

    ![ReDoc](https://fastapi.tiangolo.com/img/index/index-02-redoc-simple.png)
    
    ## Example upgrade
    
    Now modify the file `main.py` to receive a body from a `PUT` request.
    
    Declare the body using standard Python types, thanks to Pydantic.
    
    ```Python hl_lines="4  9-12  25-27"
    from typing import Union
    
    from fastapi import FastAPI
    from pydantic import BaseModel
    
    app = FastAPI()
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

                modelBuilder.get()
            }
        }
    
        private static boolean documentIsEquivalentTo(
            String expectedDocumentText,
            def actualDocument // can't declare it as DeclarativeDocument, throws NCDFE from the test runner (???)
        ) {
            def doc = actualDocument as DeclarativeDocument
            def parsed = ParserKt.parse(expectedDocumentText)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

            when:
            run("ask")
    
            then:
            outputDoesNotContain(QUESTION_PROMPT)
            outputContains("result = thing")
        }
    
        def "task can declare user prompt as input property"() {
            given:
            taskTypeWithOutputFileProperty()
            buildFile << """
                tasks.register("generate", FileProducer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationActions.java

                    .details("Expected an input to be a " + lowerKind + " but it was a " + actualKindOf(input))
                    .solution("Use a " + lowerKind + " as an input")
                    .solution("Declare the input as a " + actualKindOf(input) + " instead");
            });
        }
    
        private static final String CANNOT_WRITE_OUTPUT = "CANNOT_WRITE_OUTPUT";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. src/syscall/exec_linux.go

    	// parent returns immediately from this frame and does all
    	// post-fork processing in the outer frame.
    	//
    	// Declare all variables at top in case any
    	// declarations require heap allocation (e.g., err2).
    	// ":=" should not be used to declare any variable after
    	// the call to runtime_BeforeFork.
    	//
    	// NOTE(bcmills): The allocation behavior described in the above comment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top