Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 458 for Parallel (0.14 sec)

  1. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginVersionIntegrationTest.groovy

            goodCode()
            buildFile << """
            pmd {
                rulesMinimumPriority = 11
            }
    """
            expect:
            // Use --continue so that when executing in parallel mode a deterministic set of tests run
            // without --continue, sometimes both pmd tasks are run and sometimes only the only one task is run
            fails("check", "--continue")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

        }
    
        def "can run multiple task reports in parallel"() {
            given:
            buildFile << multiProjectBuild()
            def projects = (1..100).collect {"project$it"}
            createDirs(projects as String[])
            settingsFile << "include '${projects.join("', '")}'"
    
            expect:
            succeeds(":tasks", *projects.collect { "$it:tasks" }, "--parallel")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. src/os/signal/signal_test.go

    		time.Sleep(settleTime)
    		return
    	}
    
    	t.Parallel()
    	testCases := []struct {
    		name string
    		n    int // number of times a SIGINT should be notified.
    	}{
    		{"once", 1},
    		{"multiple", 10},
    	}
    	for _, tc := range testCases {
    		tc := tc
    		t.Run(tc.name, func(t *testing.T) {
    			t.Parallel()
    
    			var subTimeout time.Duration
    			if deadline, ok := t.Deadline(); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 15:34:56 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  4. src/context/x_test.go

    	case <-c.Done():
    	}
    	if e := c.Err(); e != DeadlineExceeded {
    		t.Errorf("%s: c.Err() == %v; want %v", name, e, DeadlineExceeded)
    	}
    }
    
    func TestDeadline(t *testing.T) {
    	t.Parallel()
    
    	c, _ := WithDeadline(Background(), time.Now().Add(shortDuration))
    	if got, prefix := fmt.Sprint(c), "context.Background.WithDeadline("; !strings.HasPrefix(got, prefix) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. tools/docker-builder/docker.go

    // next-generation docker builder, and `bake` is an important part of that which allows us to
    // construct a big build plan which docker can execute in parallel. This provides order of magnitude
    // improves over a naive `docker build` flow when building many images.
    //
    // As an optimization, inputs to the Dockerfile are not built in the container. Rather, we build them
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    == Linux installation
    
    .Installing with a package manager
    [%collapsible]
    ====
    
    link:http://sdkman.io[SDKMAN!] is a tool for managing parallel versions of multiple Software Development Kits on most Unix-like systems (macOS, Linux, Cygwin, Solaris and FreeBSD).
    Gradle is deployed and maintained by SDKMAN!:
    
    ----
    ❯ sdk install gradle
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. cmd/kube-scheduler/app/server_test.go

    			// use listeners instead of static ports so parallel test runs don't conflict
    			opts.SecureServing.Listener = makeListener(t)
    			defer opts.SecureServing.Listener.Close()
    
    			nfs := opts.Flags
    			for _, f := range nfs.FlagSets {
    				fs.AddFlagSet(f)
    			}
    			if err := fs.Parse(tc.flags); err != nil {
    				t.Fatal(err)
    			}
    
    			// use listeners instead of static ports so parallel test runs don't conflict
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

        }
    
        /**
         * Sets the maximum number of test processes to start in parallel.
         * <p>
         * By default, Gradle executes a single test class at a time but allows multiple {@link Test} tasks to run in parallel.
         * </p>
         *
         * @param maxParallelForks The maximum number of forked test processes. Use 1 to disable parallel test execution for this task.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/pgo_inl_test.go

    	}
    	return out
    }
    
    // testPGOIntendedInlining tests that specific functions are inlined.
    func testPGOIntendedInlining(t *testing.T, dir string, profFile string) {
    	testenv.MustHaveGoRun(t)
    	t.Parallel()
    
    	const pkg = "example.com/pgo/inline"
    
    	want := []string{
    		"(*BS).NS",
    	}
    
    	// The functions which are not expected to be inlined are as follows.
    	wantNot := []string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/graph/Graphs.java

       */
      public static boolean hasCycle(Network<?, ?> network) {
        // In a directed graph, parallel edges cannot introduce a cycle in an acyclic graph.
        // However, in an undirected graph, any parallel edge induces a cycle in the graph.
        if (!network.isDirected()
            && network.allowsParallelEdges()
            && network.edges().size() > network.asGraph().edges().size()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top