Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 535 for deflate (0.14 sec)

  1. docs/en/docs/advanced/security/oauth2-scopes.md

        ```Python hl_lines="156"
        {!> ../../../docs_src/security/tutorial005.py!}
        ```
    
    ## Declare scopes in *path operations* and dependencies
    
    Now we declare that the *path operation* for `/users/me/items/` requires the scope `items`.
    
    For this, we import and use `Security` from `fastapi`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    The https://toml.io/[TOML] file consists of 4 major sections:
    
    - the `[versions]` section is used to declare versions which can be referenced by dependencies
    - the `[libraries]` section is used to declare the aliases to coordinates
    - the `[bundles]` section is used to declare dependency bundles
    - the `[plugins]` section is used to declare plugins
    
    For example:
    
    .The libs.versions.toml file
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/syntax/branches.go

    	ls.errh(Error{pos, fmt.Sprintf(format, args...)})
    }
    
    // declare declares the label introduced by s in block b and returns
    // the new label. If the label was already declared, declare reports
    // and error and the existing label is returned instead.
    func (ls *labelScope) declare(b *block, s *LabeledStmt) *label {
    	name := s.Label.Value
    	labels := ls.labels
    	if labels == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top