Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 189 for TASK (0.04 sec)

  1. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * will not be released until that submitted task is also complete.
       *
       * <p>If a task is {@linkplain Thread#interrupt interrupted} while a task is running:
       *
       * <ol>
       *   <li>execution will not stop until the task queue is empty.
       *   <li>tasks will begin execution with the thread marked as not interrupted - any interruption
       *       applies only to the task that was running at the point of interruption.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * will not be released until that submitted task is also complete.
       *
       * <p>If a task is {@linkplain Thread#interrupt interrupted} while a task is running:
       *
       * <ol>
       *   <li>execution will not stop until the task queue is empty.
       *   <li>tasks will begin execution with the thread marked as not interrupted - any interruption
       *       applies only to the task that was running at the point of interruption.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

            buildFile << """
                def handler = services.get(${UserInputHandler.name})
    
                task askYesNo {
                    def result = handler.askUser { it.askYesNoQuestion("thing?") }
                    doLast {
                        println "result = " + result.getOrElse("<default>")
                    }
                }
    
                task askBoolean {
                    def result = handler.askUser { it.askBooleanQuestion("thing?", true) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

                }
    
                compileCustomJava.doLast {
                    logger.lifecycle("task.sourceCompatibility = '\$sourceCompatibility'")
                    logger.lifecycle("task.targetCompatibility = '\$targetCompatibility'")
                }
            """
    
            file("src/custom/java/Test.java") << """public class Test { }"""
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

            }
        }
    
        private def findLaunchables(Collection<GradleProject> gradleProjects, String taskName) {
            collectGradleProjects(gradleProjects).collect { it.tasks }.flatten().findAll { GradleTask task -> task.path.contains(taskName) }
        }
    
        private def collectGradleProjects(Collection<GradleProject> projects, Collection<GradleProject> acc = []) {
            acc.addAll(projects)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

            }
        }
    
        def "explicit task dependency relationships are honored even if it violates destroys/creates/consumes relationships"() {
            given:
            withParallelThreads(2)
    
            buildFile << """
                def foo = file("foo")
    
                aPing.destroyables.register foo
                aPing.dependsOn ":bPing"
    
                task aIntermediate { dependsOn aPing }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

                    }
                }
            """
        }
    
        def "can use ResolvedComponentResult result as task input and changing source in '#changeLoc' doesn't invalidate the cache"() {
            given:
            resolvedComponentResultSetup()
    
            when: "Task without changes is executed & not skipped"
            succeeds "verify"
    
            then:
            executedAndNotSkipped ":verify"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                onAccess("task")
                return delegate.task(args, name, configureClosure)
            }
    
            override fun task(name: String, configureClosure: Closure<*>): Task {
                onAccess("task")
                return delegate.task(name, configureClosure)
            }
    
            override fun task(name: String, configureAction: Action<in Task>): Task {
                onAccess("task")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

      }
    
      return devices_and_hosts;
    }
    
    // Helper struct for keeping track of task and device for an associated TPU
    // device coordinate.
    struct TaskAndDevice {
      TaskAndDevice() = default;
      TaskAndDevice(int task, int device) : task(task), device(device) {}
    
      int task = -1;
      int device = -1;
    };
    
    // Check if device coordinate is outside of topology mesh shape bounds.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/BuildPhaseOperationEventCrossVersionTest.groovy

            assertSuccessfulFinishEventHas(progressEvents[5], "RUN_MAIN_TASKS")
    
            // We will run just 1 task
            assertStartEventHas(progressEvents[3], "RUN_WORK", 1)
            assertFailedFinishEventHas(progressEvents[4], "RUN_WORK")
        }
    
        def "generates build phase events for task composite build for task #taskName and expects #expectedReportedTasksCount run tasks"() {
            setupCompositeBuildProject()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 10:41:50 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top