Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 260 for deflate (0.15 sec)

  1. 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)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    ====
    
    The closure passed to the `initscript()` method configures a link:{javadocPath}/org/gradle/api/initialization/dsl/ScriptHandler.html[ScriptHandler] instance.
    You declare the init script classpath by adding dependencies to the `classpath` configuration.
    
    This is the same way you declare, for example, the Java compilation classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/extra-models.md

    We could do better.
    
    We can declare a `UserBase` model that serves as a base for our other models. And then we can make subclasses of that model that inherit its attributes (type declarations, validation, etc).
    
    All the data conversion, validation, documentation, etc. will still work as normally.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ToBeFixedForConfigurationCache.java

         */
        Skip skip() default Skip.DO_NOT_SKIP;
    
        /**
         * Declare to which bottom spec this annotation should be applied.
         * Defaults to an empty array, meaning this annotation applies to all bottom specs.
         */
        String[] bottomSpecs() default {};
    
        /**
         * Declare regular expressions matching the iteration name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/decls0.go

    	_ pi /* ERROR "not a type" */
    	_ struct{}
    	_ struct{ pi /* ERROR "not a type" */ }
    )
    
    
    // declarations of init
    const _, init /* ERROR "cannot declare init" */ , _ = 0, 1, 2
    type init /* ERROR "cannot declare init" */ struct{}
    var _, init /* ERROR "cannot declare init" */ int
    
    func init() {}
    func init /* ERROR "missing function body" */ ()
    
    func _() { const init = 0 }
    func _() { type init int }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. docs/en/docs/reference/background.md

    # Background Tasks - `BackgroundTasks`
    
    You can declare a parameter in a *path operation function* or dependency function with the type `BackgroundTasks`, and then you can use it to schedule the execution of background tasks after the response is sent.
    
    You can import it directly from `fastapi`:
    
    ```python
    from fastapi import BackgroundTasks
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 377 bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/schema-extra-example.md

    # Declare Request Example Data
    
    You can declare examples of the data your app can receive.
    
    Here are several ways to do it.
    
    ## Extra JSON Schema data in Pydantic models
    
    You can declare `examples` for a Pydantic model that will be added to the generated JSON Schema.
    
    === "Python 3.10+ Pydantic v2"
    
        ```Python hl_lines="13-24"
        {!> ../../../docs_src/schema_extra_example/tutorial001_py310.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/response-model.md

    !!! tip
        If you have strict type checks in your editor, mypy, etc, you can declare the function return type as `Any`.
    
        That way you tell the editor that you are intentionally returning anything. But FastAPI will still do the data documentation, validation, filtering, etc. with the `response_model`.
    
    ### `response_model` Priority
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. docs/en/docs/reference/request.md

    # `Request` class
    
    You can declare a parameter in a *path operation function* or dependency to be of type `Request` and then you can access the raw request object directly, without any validation, etc.
    
    You can import it directly from `fastapi`:
    
    ```python
    from fastapi import Request
    ```
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 516 bytes
    - Viewed (0)
  10. src/cmd/go/internal/gover/version.go

    	// module-module "all" pattern no longer closes over the dependencies of
    	// tests outside of the main module.
    	NarrowAllVersion = "1.16"
    
    	// DefaultGoModVersion is the Go version to assume for go.mod files
    	// that do not declare a Go version. The go command has been
    	// writing go versions to modules since Go 1.12, so a go.mod
    	// without a version is either very old or recently hand-written.
    	// Since we can't tell which, we have to assume it's very old.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top