Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 654 for declareNS (0.47 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/IvySpecificComponentMetadataRulesIntegrationTest.groovy

        void execute(ComponentMetadataContext context) {
                ruleInvoked = true
                def descriptor = context.getDescriptor(IvyModuleDescriptor)
                assert descriptor.extraInfo.asMap() == [${declareNS('foo')}: "fooValue", ${declareNS('bar')}: "barValue"]
                assert descriptor.extraInfo.get('foo') == 'fooValue'
                assert descriptor.extraInfo.get('${ns('foo').namespace}', 'foo') == 'fooValue'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. docs/fr/docs/tutorial/query-params-str-validations.md

    ## Liste de paramètres / valeurs multiples via Query
    
    Quand on définit un paramètre de requête explicitement avec `Query` on peut aussi déclarer qu'il reçoit une liste de valeur, ou des "valeurs multiples".
    
    Par exemple, pour déclarer un paramètre de requête `q` qui peut apparaître plusieurs fois dans une URL, on écrit :
    
    ```Python hl_lines="9"
    {!../../../docs_src/query_params_str_validations/tutorial011.py!}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:53:21 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. 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)
  4. docs/en/docs/advanced/security/oauth2-scopes.md

    It will always have the security scopes declared in the current `Security` dependencies and all the dependants for **that specific** *path operation* and **that specific** dependency tree.
    
    Because the `SecurityScopes` will have all the scopes declared by dependants, you can use it to verify that a token has the required scopes in a central dependency function, and then declare different scope requirements in different *path operations*.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  5. docs/fr/docs/python-types.md

    ```Python hl_lines="2"
    {!../../../docs_src/python_types/tutorial004.py!}
    ```
    
    ## Déclarer des types
    
    Vous venez de voir là où les types sont généralement déclarés : dans les paramètres de fonctions.
    
    C'est aussi ici que vous les utiliseriez avec **FastAPI**.
    
    ### Types simples
    
    Vous pouvez déclarer tous les types  de Python, pas seulement `str`.
    
    Comme par exemple :
    
    * `int`
    * `float`
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    [[included_build_substitution_requirements]]
    === Cases where included build substitutions must be declared
    
    Many builds will function automatically as an included build, without declared substitutions.
    Here are some common cases where declared substitutions are required:
    
    * When the `archivesBaseName` property is used to set the name of the published artifact.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

            then:
            failure.assertHasCause("Mutation of repositories declared in settings is only allowed during settings evaluation")
        }
    
        /**
         * the `buildSrc` directory behaves like an included build. As such, it may have its own settings,
         * so repositories declared in the main build shouldn't be visible to buildSrc.
         */
        def "repositories declared in settings shouldn't be used to resolve dependencies in buildSrc"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K 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/dep-man/01-core-dependency-management/declaring_repositories.adoc

    |===
    |Mode |Description |Default? |Use-Case
    
    |`PREFER_PROJECT`
    |Any repository declared on a project will cause the project to use the repositories declared by the project, ignoring those declared in settings.
    |Yes
    |Useful when teams need to use different repositories not common among subprojects.
    
    |`PREFER_SETTINGS`
    |Any repository declared directly in a project, either directly or via a plugin, will be ignored.
    |No
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    .Configurations are used to declare dependencies
    ====
    include::sample[dir="snippets/dependencyManagement/attributeMatching/kotlin",files="build.gradle.kts[tags=declare-configuration]"]
    include::sample[dir="snippets/dependencyManagement/attributeMatching/groovy",files="build.gradle[tags=declare-configuration]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
Back to top