Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 474 for deflate (0.19 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/WebConfigDbm.java

    import org.codelibs.fess.es.config.exentity.WebConfig;
    import org.dbflute.Entity;
    import org.dbflute.dbmeta.AbstractDBMeta;
    import org.dbflute.dbmeta.info.ColumnInfo;
    import org.dbflute.dbmeta.info.UniqueInfo;
    import org.dbflute.dbmeta.name.TableSqlName;
    import org.dbflute.dbmeta.property.PropertyGateway;
    import org.dbflute.dbway.DBDef;
    import org.dbflute.util.DfTypeUtil;
    
    /**
     * @author ESFlute (using FreeGen)
     */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

         * either as individual modules, or using a fatjar. It's illegal to have both the fat jar and
         * individual modules on the classpath, so we need a way to declare that we prefer to use
         * the fat jar.
         *
         * This is from the consumer point of view, fixing the fact the library doesn't declare capabilities.
         */
        def "can select groovy-all over individual groovy-whatever (#description)"() {
            given:
            repository {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/request-files.md

    !!! tip
        To declare File bodies, you need to use `File`, because otherwise the parameters would be interpreted as query parameters or body (JSON) parameters.
    
    The files will be uploaded as "form data".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    Organizations might decide to host dependencies in an in-house Ivy repository. Gradle can declare Ivy repositories by URL.
    
    [[sub:defining_an_ivy_repository_with_a_standard_layout]]
    === Defining an Ivy repository with a standard layout
    
    To declare an Ivy repository using the standard layout no additional customization is needed. You just declare the URL.
    
    .Ivy repository
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  5. src/go/parser/resolver.go

    					ast.Walk(r, spec.Type)
    				}
    				r.declare(spec, i, r.topScope, kind, spec.Names...)
    			}
    		case token.TYPE:
    			for _, spec := range n.Specs {
    				spec := spec.(*ast.TypeSpec)
    				// Go spec: The scope of a type identifier declared inside a function begins
    				// at the identifier in the TypeSpec and ends at the end of the innermost
    				// containing block.
    				r.declare(spec, nil, r.topScope, ast.Typ, spec.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    [[sec:cpp_library_api_vs_implementation]]
    === API vs implementation
    
    The plugin exposes two configurations that can be used to declare dependencies: `api` and `implementation`.
    The `api` configuration should be used to declare dependencies which are exported by the library API, whereas the `implementation` configuration should be used to declare dependencies which are internal to the component.
    
    .Adding dependencies
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    ====
    include::sample[dir="snippets/dependencyManagement/modelingFeatures-crossProjectPublications-simple/kotlin",files="producer/build.gradle.kts[tags=declare-outgoing-configuration]"]
    include::sample[dir="snippets/dependencyManagement/modelingFeatures-crossProjectPublications-simple/groovy",files="producer/build.gradle[tags=declare-outgoing-configuration]"]
    ====
    
    This configuration is _consumable_, which means it's an "exchange" meant for consumers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    [[sec:swift_library_api_vs_implementation]]
    === API vs implementation
    
    The plugin exposes two configurations that can be used to declare dependencies: `api` and `implementation`.
    The `api` configuration should be used to declare dependencies which are exported by the library API, whereas the `implementation` configuration should be used to declare dependencies which are internal to the component.
    
    .Adding dependencies
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    [[included_build_task_dependencies]]
    == Depending on tasks in an included build
    
    While included builds are isolated from one another and cannot declare direct dependencies, a composite build can declare task dependencies on its included builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. 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)
Back to top