Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for taskSem (0.19 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/AbstractAntJacocoReport.java

                @SuppressWarnings("UnusedDeclaration")
                public Object doCall(Object it) {
                    GroovyObjectSupport antBuilder = (GroovyObjectSupport) it;
                    antBuilder.invokeMethod("taskdef", ImmutableMap.of(
                            "name", "jacocoReport",
                            "classname", "org.jacoco.ant.ReportTask"
                    ));
                    action.execute(antBuilder);
                    return null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/BuildPhaseOperationEventCrossVersionTest.groovy

        }
    
        def "reports failure if build fails in build phase"() {
            setupProject()
            file("a/build.gradle") << """
                tasks.register("taskE") {
                    doLast {
                        throw new RuntimeException("taskD failed")
                    }
                }
            """
    
            when:
            def events = ProgressEvents.create()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 10:41:50 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    include::sample[dir="snippets/ant/useAntType/groovy",files="build.gradle"]
    ====
    
    [[sec:using_custom_ant_tasks]]
    === Using custom Ant tasks
    
    To make custom tasks available in your build, use the `taskdef` (usually easier) or `typedef` Ant task, just as you would in a `build.xml` file.
    You can then refer to the custom Ant task as you would a built-in Ant task:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    		}
    	}
    }
    
    func (ps *PushContext) concurrentConvertToSidecarScope(sidecarConfigs []config.Config) {
    	type taskItem struct {
    		idx int
    		cfg config.Config
    	}
    
    	var wg sync.WaitGroup
    	taskItems := make(chan taskItem)
    	sidecarScopes := make([]*SidecarScope, len(sidecarConfigs))
    	for i := 0; i < features.ConvertSidecarScopeConcurrency; i++ {
    		wg.Add(1)
    		go func() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top