Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 893 for TASK (0.06 sec)

  1. tensorflow/compiler/mlir/tfrt/tests/analysis/cost_analysis.mlir

        // expected-remark@+1 {{Cost: 2}}
        %29 = "tf.Cast"(%dense_values#1) {Truncate = false, device = "/job:localhost/replica:0/task:0/device:CPU:0"} : (tensor<?xi64>) -> tensor<?xf32>
        // expected-remark@+1 {{Cost: 2}}
        %30 = "tf.Cast"(%dense_values#2) {Truncate = false, device = "/job:localhost/replica:0/task:0/device:CPU:0"} : (tensor<?xi64>) -> tensor<?xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. src/cmd/trace/gen.go

    	// Collect information about the task.
    	var startStack, endStack trace.Stack
    	var startG, endG trace.GoID
    	startTime, endTime := ctx.startTime, ctx.endTime
    	if task.Start != nil {
    		startStack = task.Start.Stack()
    		startG = task.Start.Goroutine()
    		startTime = task.Start.Time()
    	}
    	if task.End != nil {
    		endStack = task.End.Stack()
    		endG = task.End.Goroutine()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheLambdaIntegrationTest.groovy

                            project.getTasks().register("ok", task -> {
                                task.doLast(t -> {
                                    System.out.println(task.getName() + " action value is " + value);
                                });
                                task.onlyIf(t -> {
                                    System.out.println(task.getName() + " spec value is " + value);
                                    return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

            settingsFile << "rootProject.name = 'parent'"
            buildFile << """
                task b1(type:GradleBuild) {
                    tasks = ["t"]
                    buildName = 'bp'
                }
                task b2(type:GradleBuild) {
                    tasks = ["t"]
                    buildName = 'bp'
                }
                task t
            """
    
            when:
            fails 'b1', 'b2'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultExecutionPlan.java

        }
    
        @Override
        public void addEntryTask(Task task) {
            addEntryTasks(Collections.singletonList(task));
        }
    
        @Override
        public void addEntryTasks(Collection<? extends Task> tasks) {
            addEntryTasks(tasks, order++);
        }
    
        private void addEntryTasks(Collection<? extends Task> tasks, int ordinal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    In the following section you will learn about different situations which violate stable task inputs and look at possible solutions.
    
    [[volatile_inputs]]
    === Volatile task inputs
    
    If you use a volatile input like a timestamp as an input property for a task, then there is nothing Gradle can do to make the task cacheable.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

           *   user task -- which means that we already got past this code (or else we exited early
           *   above))
           */
          // Unconditionally set; there is no risk of throwing away a queued task from another thread,
          // because in order for the current task to run on this executor the previous task must have
          // already started execution. Because each task on a TaskNonReentrantExecutor can only produce
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    This provider can be connected to task properties to pass the service to the task.
    Note that for a task property annotated with `@Internal`, the task property needs to (1) be explicitly assigned with the provider obtained during registation, and (2) you must tell Gradle the task uses the service via link:{javadocPath}/org/gradle/api/Task.html#usesService-org.gradle.api.provider.Provider-[Task.usesService].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

        }
    
        def "task depends on other task whose outputs are its inputs"() {
            buildFile << """
                task a {
                    outputs.file 'a.txt'
                    def outputFile = file('a.txt')
                    doLast {
                        outputFile << "Data"
                    }
                }
    
                task b {
                    inputs.files tasks.a.outputs.files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/LambdaInputsIntegrationTest.groovy

        }
    
        private static String anonymousClassPrintingString(String constantName, String outputString) {
            """
                    public static final Action<Task> ${constantName} = new Action<Task>() {
                        @Override
                        public void execute(Task task) {
                            System.out.println("${outputString}");
                        }
                    };
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 18.5K bytes
    - Viewed (0)
Back to top