Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 436 for Parallel (0.18 sec)

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

      static final String MULTIPLE_EDGES_CONNECTING =
          "Cannot call edgeConnecting() when parallel edges exist between %s and %s. Consider calling "
              + "edgesConnecting() instead.";
      static final String PARALLEL_EDGES_NOT_ALLOWED =
          "Nodes %s and %s are already connected by a different edge. To construct a graph "
              + "that allows parallel edges, call allowsParallelEdges(true) on the Builder.";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. src/os/path_test.go

    package os_test
    
    import (
    	"internal/testenv"
    	. "os"
    	"path/filepath"
    	"runtime"
    	"syscall"
    	"testing"
    )
    
    var isReadonlyError = func(error) bool { return false }
    
    func TestMkdirAll(t *testing.T) {
    	t.Parallel()
    
    	tmpDir := TempDir()
    	path := tmpDir + "/_TestMkdirAll_/dir/./dir2"
    	err := MkdirAll(path, 0777)
    	if err != nil {
    		t.Fatalf("MkdirAll %q: %s", path, err)
    	}
    	defer RemoveAll(tmpDir + "/_TestMkdirAll_")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:37 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

            dependency.artifact(classifier: 'sources')
            dependency.artifact(classifier: 'javadoc')
            dependency.publish()
    
            projectDir.file("gradle.properties") << """
                org.gradle.parallel=$parallel
            """
            file('build.gradle').text = """
    subprojects {
        apply plugin: 'java'
    }
    
    project(':impl') {
        apply plugin: 'idea'
    
        repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/plugin/pkg/audit/truncate/truncate_test.go

    					"key": strings.Repeat("A", int(defaultConfig.MaxEventSize)),
    				},
    			},
    			wantDropped: true,
    		},
    	}
    
    	for _, tc := range testCases {
    		tc := tc
    		t.Run(tc.desc, func(t *testing.T) {
    			t.Parallel()
    
    			var event *auditinternal.Event
    
    			fb := &fake.Backend{
    				OnRequest: func(events []*auditinternal.Event) {
    					require.Equal(t, 1, len(events), "Expected single event in batch")
    					event = events[0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 30 07:56:39 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  5. src/compress/flate/writer_test.go

    // even when writing different sizes to the Writer.
    func TestDeterministic(t *testing.T) {
    	t.Parallel()
    	for i := 0; i <= 9; i++ {
    		t.Run(fmt.Sprint("L", i), func(t *testing.T) { testDeterministic(i, t) })
    	}
    	t.Run("LM2", func(t *testing.T) { testDeterministic(-2, t) })
    }
    
    func testDeterministic(i int, t *testing.T) {
    	t.Parallel()
    	// Test so much we cross a good number of block boundaries.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/issue33808_test.go

    import "log"
    
    func main() {
    	log.Fatalf("HERE")
    }
    `
    
    func TestIssue33808(t *testing.T) {
    	if runtime.GOOS != "darwin" {
    		return
    	}
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    	t.Parallel()
    
    	dir := t.TempDir()
    
    	f := gobuild(t, dir, prog, "-ldflags=-linkmode=external")
    	f.Close()
    
    	syms, err := f.Symbols()
    	if err != nil {
    		t.Fatalf("Error reading symbols: %v", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 08 20:03:01 UTC 2021
    - 792 bytes
    - Viewed (0)
  7. guava/src/com/google/common/graph/GraphConstants.java

      static final String MULTIPLE_EDGES_CONNECTING =
          "Cannot call edgeConnecting() when parallel edges exist between %s and %s. Consider calling "
              + "edgesConnecting() instead.";
      static final String PARALLEL_EDGES_NOT_ALLOWED =
          "Nodes %s and %s are already connected by a different edge. To construct a graph "
              + "that allows parallel edges, call allowsParallelEdges(true) on the Builder.";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_io_error.txt

    [short] skip
    [!fuzz] skip
    env GOCACHE=$WORK/cache
    
    # If the I/O error occurs before F.Fuzz is called, the coordinator should
    # stop the worker and say that.
    ! go test -fuzz=FuzzClosePipeBefore -parallel=1
    stdout '\s*fuzzing process terminated without fuzzing:'
    ! stdout 'communicating with fuzzing process'
    ! exists testdata
    
    # If the I/O error occurs after F.Fuzz is called (unlikely), just exit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. src/testing/internal/testdeps/deps.go

    		Log:             os.Stderr,
    		Timeout:         timeout,
    		Limit:           limit,
    		MinimizeTimeout: minimizeTimeout,
    		MinimizeLimit:   minimizeLimit,
    		Parallel:        parallel,
    		Seed:            seed,
    		Types:           types,
    		CorpusDir:       corpusDir,
    		CacheDir:        cacheDir,
    	})
    	if err == ctx.Err() {
    		return nil
    	}
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. test/fixedbugs/bug502.go

    // because the private method in testing.TB led gccgo to assume that
    // the interface method table would be defined in the testing package.
    
    package main
    
    import "testing"
    
    type I interface {
    	testing.TB
    	Parallel()
    }
    
    func F(i I) {
    	i.Log("F")
    }
    
    var t testing.T
    
    func main() {
    	F(&t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 08 03:58:11 UTC 2017
    - 520 bytes
    - Viewed (0)
Back to top