Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 168 for task2_name (0.16 sec)

  1. tensorflow/c/eager/c_api_remote_test_util.cc

        }
      }
      const char task1_name[] = "/job:localhost/replica:0/task:1/device:CPU:0";
      const char task2_name[] = "/job:localhost/replica:0/task:2/device:CPU:0";
    
      std::vector<TFE_TensorHandle*> handles_task2;
      for (auto* h_task0 : handles_task0) {
        handles_task2.push_back(
            TFE_TensorHandleCopyToDevice(h_task0, ctx, task2_name, status));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 11 22:56:03 UTC 2020
    - 9.1K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_distributed_test.cc

      const char task0_name[] = "/job:localhost/replica:0/task:0/device:CPU:0";
      const char task1_name[] = "/job:localhost/replica:0/task:1/device:CPU:0";
      const char task2_name[] = "/job:localhost/replica:0/task:2/device:CPU:0";
    
      // Create one variable per task.
      TFE_TensorHandle* h0 = TestVariable(ctx, 1.0, task1_name);
      TFE_TensorHandle* h1 = TestVariable(ctx, 2.0, task2_name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/PluginUnderTestMetadataIntegrationTest.groovy

            buildFile << """
                sourceSets.create("mainAlt")
    
                ${TASK_NAME}.pluginClasspath.setFrom(sourceSets.mainAlt.runtimeClasspath)
            """
            succeeds TASK_NAME
    
            then:
            executedAndNotSkipped(":$TASK_NAME")
    
            and:
            succeeds TASK_NAME
    
            then:
            skipped(":$TASK_NAME")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ReproducibleArchivesIntegrationTest.groovy

                'file14.txt')
    
            where:
            taskName << ['zip', 'tar']
            taskType = taskName.capitalize()
            fileExtension = taskName
        }
    
        def "#taskName uses only first duplicate"() {
            given:
            duplicateEntriesInArchive(taskName, taskType, fileExtension)
    
            buildFile << """
                ${taskName} {
                    duplicatesStrategy = DuplicatesStrategy.EXCLUDE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/TaskNameResolver.java

                for (String taskName : taskNames) {
                    selected.put(taskName, new MultiProjectTaskSelectionResult(taskName, project, true));
                }
            } else {
                discoverTasks(project);
                for (String taskName : getTaskNames(project)) {
                    selected.put(taskName, new SingleProjectTaskSelectionResult(taskName, project.getTasks()));
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/DefaultTaskSelector.java

            private final String taskName;
    
            public TaskPathSpec(ProjectInternal targetProject, String taskName) {
                this.targetProject = targetProject;
                this.taskName = taskName;
            }
    
            @Override
            public boolean isSatisfiedBy(Task element) {
                if (!element.getName().equals(taskName)) {
                    return true;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractTaskRelocationIntegrationTest.groovy

            when:
            succeeds taskName
            def originalResults = extractResults()
            then:
            executedAndNotSkipped taskName
    
            when:
            succeeds taskName
            then:
            skipped taskName
    
            when:
            moveFilesAround()
            succeeds taskName
            then:
            skipped(taskName)
    
            when:
            removeResults()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ArchiveTaskPermissionsIntegrationTest.groovy

        def "file and directory permissions are preserved when using #taskName task"() {
            given:
            createDir('parent') {
                child {
                    mode = 0777
                    file('reference.txt').mode = 0746
                }
            }
            def archName = "test.${taskName.toLowerCase()}"
            and:
            buildFile << """
                task pack(type: $taskName) {
                    archiveFileName = "$archName"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 11 06:18:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/taskpath/ResolvedTaskPath.java

    public class ResolvedTaskPath {
        private final String prefix;
        private final String taskName;
        private final ProjectInternal project;
        private final boolean isQualified;
    
        public ResolvedTaskPath(String prefix, String taskName, ProjectInternal project) {
            this.prefix = prefix;
            this.taskName = taskName;
            this.project = project;
            this.isQualified = prefix.length() > 0;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecDebugIntegrationTest.groovy

        }
    
        def "debug is disabled by default with task :#taskName"() {
            setup:
            sampleProject """
                debugOptions {
                }
            """
    
            expect:
            succeeds(taskName)
    
            where:
            taskName << ['runJavaExec', 'runExecOperationsJavaExec', 'test']
        }
    
        def "debug session fails without debugger with task :#taskName"() {
            setup:
            sampleProject """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top