Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,660 for declareNS (0.12 sec)

  1. src/cmd/go/testdata/script/mod_vendor_goversion.txt

    # 'go mod vendor' failed to record dependency versions, and it has most of
    # the language features added since modules were introduced in Go 1.11.
    #
    # Even so, modules that declare 'go 1.17' and use 1.17 features spuriously fail
    # to build, and modules that declare an older version and use features from a
    # newer one spuriously build (instead of failing as they ought to).
    
    go mod vendor
    
    ! grep 1.17 vendor/modules.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 21:29:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsGroovyDSLIntegrationTest.groovy

            when:
            plugin.allowAll()
            succeeds taskName
    
            then:
            outputContains message
        }
    
        def "can declare a plugin using a version declared in a catalog"() {
            String taskName = 'greet'
            String message = 'Hello from plugin!'
            String pluginId = 'com.acme.greeter'
            String pluginVersion = '1.5'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/catalog/problems/VersionCatalogErrorMessages.groovy

                """${intro}  - Problem: In version catalog ${catalog}, a bundle with name '${bundle}' declares a dependency on '${aliasRef}' which doesn't exist.
    
        Reason: Bundles can only contain references to existing library aliases.
    
        Possible solutions:
          1. Make sure that the library alias '${aliasRef}' is declared.
          2. Remove '${aliasRef}' from bundle '${bundle}'.
    
        ${documentation}"""
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 14:11:31 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ResolveExceptionMapper.java

                return failure;
            }
    
            ImmutableList<String> resolutions = ImmutableList.of(
                "The project declares repositories, effectively ignoring the repositories you have declared in the settings.\n" +
                    "To determine how project repositories are declared, configure your build to fail on project repositories.\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/path-params-numeric-validations.md

    ## Order the parameters as you need
    
    !!! tip
        This is probably not as important or necessary if you use `Annotated`.
    
    Let's say that you want to declare the query parameter `q` as a required `str`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 01 21:05:52 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

           - Configuration ':myElements' declares attribute 'color' with value 'blue':
               - Incompatible because this component declares attribute 'artifactType' with value 'jar' and the consumer needed attribute 'artifactType' with value 'dll'
           - Configuration ':myElements' variant secondary declares attribute 'color' with value 'blue':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  7. src/go/ast/resolve.go

    					p.declare(fileScope, pkgScope, obj)
    				}
    			} else if name != "_" {
    				// declare imported package object in file scope
    				// (do not re-use pkg in the file scope but create
    				// a new object instead; the Decl field is different
    				// for different files)
    				obj := NewObj(Pkg, name)
    				obj.Decl = spec
    				obj.Data = pkg.Data
    				p.declare(fileScope, pkgScope, obj)
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/changes/DefaultTaskExecutionMode.java

         */
        public static TaskExecutionMode incremental() {
            return INCREMENTAL;
        }
    
        /**
         * The execution mode when task did not declare any outputs.
         * The message will be `Task has not declared any outputs despite executing actions.`.
         */
        public static TaskExecutionMode noOutputs() {
            return NO_OUTPUTS;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 04 07:36:55 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/README.adoc

    == Buildscript dependencies are substituted
    
    In a composite build, dependencies declared in the `plugins { }` block or in the `buildscript` `classpath` configuration are substituted in the same way as other dependencies. In this sample, the build declares that plugin 'org.sample.greeting', and this dependency is substituted by the `greeting-plugin` included build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    ====
    
    By using the `belongsTo` with `false` (**not** virtual), we declare that all modules belong to the same _published platform_.
    In this case, the platform is `com.fasterxml.jackson:jackson-bom` and Gradle will look for it, as for any other module, in the declared repositories.
    
    .Making use of a dependency version alignment rule
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top