Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for declareNS (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

      - Variant 'api' declares a component, as well as attribute 'custom' with value 'c1':
          - Incompatible because this component declares a component for use during compile-time and the consumer needed a component for use during runtime
      - Variant 'runtime' declares a component for use during runtime:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. src/go/printer/testdata/parser.go

    	// Go spec: A short variable declaration may redeclare variables
    	// provided they were originally declared in the same block with
    	// the same type, and at least one of the non-blank variables is new.
    	n := 0 // number of new variables
    	for _, ident := range idents {
    		assert(ident.Obj == nil, "identifier already declared or resolved")
    		if ident.Name != "_" {
    			obj := ast.NewObj(ast.Var, ident.Name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

            then:
            outputContains(IvyComponentParser.PUBLICATION_WARNING_FOOTER)
            outputContains(IvyComponentParser.UNSUPPORTED_FEATURE)
            outputContains('commons-logging:commons-logging:1.1 declared as a dependency constraint')
            javaLibrary.assertPublished()
    
            javaLibrary.parsedIvy.configurations.keySet() == ["compile", "runtime", "default"] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  4. fastapi/param_functions.py

                the dependency is declared again for the rest of the request (for example
                if the dependency is needed by several dependencies), the value will be
                re-used for the rest of the request.
    
                Set `use_cache` to `False` to disable this behavior and ensure the
                dependency is called again (if declared more than once) in the same request.
                """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

      - Variant 'bar':
          - Incompatible because this component declares attribute 'buildType' with value 'release' and the consumer needed attribute 'buildType' with value 'debug'
          - Other compatible attribute:
              - Doesn't say anything about flavor (required 'free')
      - Variant 'foo' declares attribute 'flavor' with value 'free':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                details == 'A version was not set or explicitly declared as not wanted'
                solutions == [
                    'Call `.version()` to give the alias a version',
                    'Call `.withoutVersion()` to explicitly declare that the alias should not have a version',
                ]
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    Annotations on a property declared in a type override similar annotations declared by the superclass and in any implemented interfaces. Superclass annotations take precedence over annotations declared in implemented interfaces.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    === Adding the checksum for an artifact
    
    External components are identified by GAV coordinates, then each of the artifacts by their file names.
    To declare the checksums of an artifact, you need to add the corresponding section in the verification metadata file.
    For example, to declare the checksum for https://pdfbox.apache.org[Apache PDFBox].
    The GAV coordinates are:
    
    - group `org.apache.pdfbox`
    - name `pdfbox`
    - version `2.0.17`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    For example, if you reference a `Project` in order to get the `project.version` at execution time, you should instead directly declare the _project version_ as an input to your task using a `Property<String>`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/configuration-cache/issues/97")
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "does nag when service is used indirectly via another service even if task declares service reference and feature preview is enabled"() {
            given:
            serviceImplementation()
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top