Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for Coordinator (0.32 sec)

  1. tensorflow/cc/training/queue_runner_test.cc

    #include "tensorflow/cc/training/queue_runner.h"
    
    #include <string>
    #include <vector>
    
    #include "tensorflow/cc/framework/scope.h"
    #include "tensorflow/cc/ops/standard_ops.h"
    #include "tensorflow/cc/training/coordinator.h"
    #include "tensorflow/core/framework/graph.pb.h"
    #include "tensorflow/core/framework/tensor.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/framework/types.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 21 06:27:51 UTC 2019
    - 14.7K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerTest.kt

      @Test fun onlyOneCoordinatorWaitingToStartFutureTasks() {
        // Enqueueing the red task starts a coordinator thread.
        redQueue.execute("red task", 100.µs) {
          log += "red:run@${taskFaker.nanoTime}"
        }
        assertThat(taskFaker.executeCallCount).isEqualTo(1)
    
        // Enqueueing the blue task doesn't need a 2nd coordinator yet.
        blueQueue.execute("blue task", 200.µs) {
          log += "blue:run@${taskFaker.nanoTime}"
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            executionPlan?.close()
            new DefaultExecutionPlan(Path.ROOT.toString(), taskNodeFactory, new OrdinalGroupFactory(), dependencyResolver, accessHierarchies.outputHierarchy, accessHierarchies.destroyableHierarchy, coordinator)
        }
    
        def "schedules tasks in dependency order"() {
            given:
            Task a = task("a")
            Task b = task("b", dependsOn: [a])
            Task c = task("c", dependsOn: [b, a])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/DetermineBaselines.kt

            } else {
                determinedBaselines = forkPointCommitBaseline()
            }
    
            println("Determined baseline is: ${determinedBaselines.get()}")
        }
    
        /**
         * Coordinator build doesn't resolve to real commit version, they just pass "flakiness-detection-commit" as it is to worker build
         * "flakiness-detection-commit" is resolved to real commit id in worker build to disable build cache.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 09:29:24 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. src/testing/fuzz.go

    		if err != nil {
    			f.Fatal(err)
    		}
    		for i := range c {
    			c[i].IsSeed = true // these are all seed corpus values
    			if f.fuzzContext.mode == fuzzCoordinator {
    				// If this is the coordinator process, zero the values, since we don't need
    				// to hold onto them.
    				c[i].Values = nil
    			}
    		}
    
    		f.corpus = append(f.corpus, c...)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. src/testing/internal/testdeps/deps.go

    	// to all processes in that group. This is not the case on Windows.
    	// If the worker is interrupted, return quickly and without error.
    	// If only the coordinator process is interrupted, it tells each worker
    	// process to stop by closing its "fuzz_in" pipe.
    	ctx, cancel := signal.NotifyContext(context.Background(), os.Interrupt)
    	defer cancel()
    	err := fuzz.RunFuzzWorker(ctx, fn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/execution/plan/AbstractExecutionPlanSpec.groovy

        private def locks = new ArrayList<MockLock>()
        private def acquired = new HashSet<MockLock>()
        def thisBuild = backing.gradle
        def project = project()
        def nodeValidator = Mock(NodeValidator)
        def coordinator = new DefaultResourceLockCoordinationService()
    
        protected Set<ProjectInternal> getLockedProjects() {
            return locks.findAll { it.locked }.collect { it.project } as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 24 11:56:02 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                        div().classAttr("col p-0");
                            a().classAttr("btn btn-sm btn-outline-primary").attr("data-toggle", "tooltip").title("Go back to Performance Coordinator Build")
                                .href(getTeamCityWebUrlFromBuildId(System.getenv("BUILD_ID"))).target("_blank").text("<-").end();
                        end();
                        div().classAttr("col-5 p-0");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    		"cmd/internal/testdir": true,
    	}
    
    	// Fast path to avoid the ~1 second of `go list std cmd` when
    	// the caller lists specific tests to run. (as the continuous
    	// build coordinator does).
    	if len(t.runNames) > 0 {
    		for _, name := range t.runNames {
    			if !strings.Contains(name, ":") {
    				t.registerStdTest(name)
    			} else if strings.HasSuffix(name, ":racebench") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. RELEASE.md

    *   `tf.distribute`
    
        *   Opened an experimental API, `tf.distribute.experimental.coordinator.get_current_worker_index`, for retrieving the worker index from within a worker, when using parameter server training with a custom training loop.
    
    *   `tf.experimental.dtensor`
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top