Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 731 for declareNS (0.12 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskTypeUpToDateIntegrationTest.groovy

            skipped ":copy"
    
            buildFile << """
                task other {}
            """
    
            when:
            succeeds "copy"
            then:
            skipped ":copy"
        }
    
        def "task with type declared in build script is not up-to-date after build script change"() {
            file("input.txt") << "input"
    
            buildFile << declareSimpleCopyTask(false)
    
            when:
            succeeds "copy"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 30 07:31:26 UTC 2022
    - 6.5K 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/go/types/labels.go

    		} else {
    			msg = "label %s not declared"
    			code = UndeclaredLabel
    		}
    		check.errorf(jmp.Label, code, msg, name)
    	}
    
    	// spec: "It is illegal to define a label that is never used."
    	for name, obj := range all.elems {
    		obj = resolve(name, obj)
    		if lbl := obj.(*Label); !lbl.used {
    			check.softErrorf(lbl, UnusedLabel, "label %s declared and not used", lbl.name)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/labels.go

    		} else {
    			msg = "label %s not declared"
    			code = UndeclaredLabel
    		}
    		check.errorf(jmp.Label, code, msg, name)
    	}
    
    	// spec: "It is illegal to define a label that is never used."
    	for name, obj := range all.elems {
    		obj = resolve(name, obj)
    		if lbl := obj.(*Label); !lbl.used {
    			check.softErrorf(lbl.pos, UnusedLabel, "label %s declared and not used", lbl.name)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/initialization/dsl/ScriptHandler.java

     * classpath used to compile and execute a build script. This classpath is also used to load the plugins which the build
     * script uses.</p>
     *
     * <p>You can obtain a {@code ScriptHandler} instance using {@link org.gradle.api.Project#getBuildscript()} or {@link
     * org.gradle.api.Script#getBuildscript()}.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 20:33:21 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top