Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 458 for Parallel (0.26 sec)

  1. .teamcity/src/main/kotlin/common/extensions.kt

            param("env.ANDROID_SDK_ROOT", os.androidHome)
            param("env.GRADLE_INTERNAL_REPO_URL", "%gradle.internal.repository.url%")
            if (os == Os.MACOS) {
                // Use fewer parallel forks on macOs, since the agents are not very powerful.
                param("maxParallelForks", "2")
            }
            if (os == Os.LINUX || os == Os.MACOS) {
                param("env.LC_ALL", "en_US.UTF-8")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  2. src/cmd/cgo/internal/testcarchive/carchive_test.go

    			libbase += "_shared"
    		}
    	}
    	libgodir = filepath.Join(GOPATH, "pkg", libbase, "testcarchive")
    	cc = append(cc, "-I", libgodir)
    
    	// Force reallocation (and avoid aliasing bugs) for parallel tests that append to cc.
    	cc = cc[:len(cc):len(cc)]
    
    	if GOOS == "windows" {
    		exeSuffix = ".exe"
    	}
    
    	return m.Run()
    }
    
    func goEnv(key string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/factory_test.go

    			// run a first request to obtain the state
    			err = healthcheck()
    			if !errors.Is(err, tc.want) {
    				t.Errorf("healthcheck() mismatch want %v got %v", tc.want, err)
    			}
    
    			// run multiple request in parallel, they should have the same state that the first one
    			var wg sync.WaitGroup
    			for i := 0; i < 100; i++ {
    				wg.Add(1)
    				go func() {
    					defer wg.Done()
    					err := healthcheck()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 29 15:58:10 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  4. src/runtime/memmove_test.go

    		t.Skip("-short")
    	}
    
    	t.Parallel()
    	if race.Enabled {
    		t.Skip("skipping large memmove test under race detector")
    	}
    	testSize(t, 0x180000)
    }
    
    func TestMemmoveOverlapLarge0x120000(t *testing.T) {
    	if testing.Short() && testenv.Builder() == "" {
    		t.Skip("-short")
    	}
    
    	t.Parallel()
    	if race.Enabled {
    		t.Skip("skipping large memmove test under race detector")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/ValueGraph.java

     *   <li>graphs whose edges have associated values
     * </ul>
     *
     * <p>{@code ValueGraph}, as a subtype of {@code Graph}, explicitly does not support parallel edges,
     * and forbids implementations or extensions with parallel edges. If you need parallel edges, use
     * {@link Network}. (You can use a positive {@code Integer} edge value as a loose representation of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

            where:
            isolationMode << ISOLATION_MODES
        }
    
        @Issue("https://github.com/gradle/gradle/issues/12636")
        def "can use work actions from multiple projects when running with --parallel"() {
            createDirs("project1", "project2", "project3", "project4", "project5")
            settingsFile << """
                include('project1')
                include('project2')
                include('project3')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. pkg/ledger/smt.go

    		// update in the batch (set key, value to default to the next loadChildren is correct)
    		batch[2*iBatch+1] = nil
    		batch[2*iBatch+2] = nil
    	}
    
    	// Split the keys array so each branch can be updated in parallel
    	// Does this require that keys are sorted?  Yes, see Update()
    	lkeys, rkeys := s.splitKeys(keys, s.trieHeight-height)
    	splitIndex := len(lkeys)
    	lvalues, rvalues := values[:splitIndex], values[splitIndex:]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 14K bytes
    - Viewed (0)
  8. src/os/exec/lp_windows_test.go

    		files:     []string{`p1\a.bat`, `p2\a.bat`},
    		PATH:      []string{`.\p1`, `p1`, `p2`},
    		searchFor: `a`,
    		want:      `p1\a.bat`,
    	},
    }
    
    func TestLookPathWindows(t *testing.T) {
    	// Not parallel: uses Chdir and Setenv.
    
    	// We are using the "printpath" command mode to test exec.Command here,
    	// so we won't be calling helperCommand to resolve it.
    	// That may cause it to appear to be unused.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  9. pkg/credentialprovider/plugin/plugin_test.go

    					Username: "user",
    					Password: "password",
    				},
    			},
    		},
    	}
    
    	for _, testcase := range testcases {
    		testcase := testcase
    		t.Run(testcase.name, func(t *testing.T) {
    			t.Parallel()
    			dockerconfig := testcase.pluginProvider.Provide(testcase.image)
    			if !reflect.DeepEqual(dockerconfig, testcase.dockerconfig) {
    				t.Logf("actual docker config: %v", dockerconfig)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  10. android/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.2K bytes
    - Viewed (0)
Back to top