Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 714 for Parallel (0.13 sec)

  1. android/guava/src/com/google/common/graph/Network.java

       * an edge connecting node A to node B if this {@link Network} has an edge connecting A to B.
       *
       * <p>If this network {@link #allowsParallelEdges() allows parallel edges}, parallel edges will be
       * treated as if collapsed into a single edge. For example, the {@link #degree(Object)} of a node
       * in the {@link Graph} view may be less than the degree of the same node in this {@link Network}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testcshared/cshared_test.go

    		t.Errorf("%v%s", args, out)
    	}
    }
    
    // test4: test signal handlers
    func TestSignalHandlers(t *testing.T) {
    	t.Parallel()
    	testSignalHandlers(t, "./libgo4", "main4.c", "testp4")
    }
    
    // test5: test signal handlers with os/signal.Notify
    func TestSignalHandlersWithNotify(t *testing.T) {
    	t.Parallel()
    	testSignalHandlers(t, "./libgo5", "main5.c", "testp5")
    }
    
    func TestPIE(t *testing.T) {
    	switch GOOS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  3. gradle.properties

    org.gradle.caching=true
    org.gradle.jvmargs='-Dfile.encoding=UTF-8'
    org.gradle.parallel=true
    android.enableJetifier=true
    android.useAndroidX=true
    kotlin.mpp.stability.nowarn=true
    kotlin.js.compiler=ir
    kotlin.incremental.js.ir=true
    androidBuild=false
    graalBuild=false
    loomBuild=false
    containerTests=false
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 09:58:21 UTC 2024
    - 343 bytes
    - Viewed (0)
  4. src/internal/coverage/cfile/emitdata_test.go

    	t.Run("emitToDir", func(t *testing.T) {
    		t.Parallel()
    		testEmitToDir(t, atomicHarnessPath, dir)
    	})
    	t.Run("emitToWriter", func(t *testing.T) {
    		t.Parallel()
    		testEmitToWriter(t, atomicHarnessPath, dir)
    	})
    	t.Run("emitToNonexistentDir", func(t *testing.T) {
    		t.Parallel()
    		testEmitToNonexistentDir(t, atomicHarnessPath, dir)
    	})
    	t.Run("emitToNilWriter", func(t *testing.T) {
    		t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. src/cmd/link/elf_test.go

    func main() {}
    `
    
    // The linker used to crash if an ELF input file had multiple text sections
    // with the same name.
    func TestSectionsWithSameName(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    	t.Parallel()
    
    	objcopy, err := exec.LookPath("objcopy")
    	if err != nil {
    		t.Skipf("can't find objcopy: %v", err)
    	}
    
    	dir := t.TempDir()
    
    	gopath := filepath.Join(dir, "GOPATH")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java

                    session.getProjects().size());
            boolean parallel = nThreads > 1;
            // Propagate the parallel flag to the root session and all of the cloned sessions in each project segment
            session.setParallel(parallel);
            for (ProjectSegment segment : projectBuilds) {
                segment.getSession().setParallel(parallel);
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. src/cmd/fix/main_test.go

    		t.Run(tt.Name, func(t *testing.T) {
    			if tt.Version == "" {
    				if testing.Verbose() {
    					// Don't run in parallel: cmd/fix sometimes writes directly to stderr,
    					// and since -v prints which test is currently running we want that
    					// information to accurately correlate with the stderr output.
    				} else {
    					t.Parallel()
    				}
    			} else {
    				old := *goVersion
    				*goVersion = tt.Version
    				defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/kotlin/settings.gradle.kts

    rootProject.name = "parallel-test-execution"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 45 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ParallelResolveArtifactSet.java

    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * A wrapper that prepares artifacts in parallel when visiting the delegate.
     * This is done by collecting all artifacts to prepare and/or visit in a first step.
     * The collected artifacts are prepared in parallel and subsequently visited in sequence.
     */
    public abstract class ParallelResolveArtifactSet {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. src/cmd/go/internal/par/work.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package par implements parallel execution helpers.
    package par
    
    import (
    	"errors"
    	"math/rand"
    	"sync"
    	"sync/atomic"
    )
    
    // Work manages a set of work items to be executed in parallel, at most once each.
    // The items in the set must all be valid map keys.
    type Work[T comparable] struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:54:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top