Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 458 for Parallel (0.42 sec)

  1. src/time/tick_test.go

    // license that can be found in the LICENSE file.
    
    package time_test
    
    import (
    	"fmt"
    	"runtime"
    	"sync"
    	"testing"
    	. "time"
    )
    
    func TestTicker(t *testing.T) {
    	t.Parallel()
    
    	// We want to test that a ticker takes as much time as expected.
    	// Since we don't want the test to run for too long, we don't
    	// want to use lengthy times. This makes the test inherently flaky.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testerrors/ptr_test.go

    	exe2 := buildPtrTests(t, gopath, true)
    
    	// We (TestPointerChecks) return before the parallel subtest functions do,
    	// so we can't just defer os.RemoveAll(dir). Instead we have to wait for
    	// the parallel subtests to finish. This code looks racy but is not:
    	// the add +1 run in serial before testOne blocks. The -1 run in parallel
    	// after testOne finishes.
    	var pending int32
    	for _, pt := range ptrTests {
    		pt := pt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  3. src/testing/fuzz.go

    // Unit tests and fuzz tests work a little differently, so for now, these
    // functions aren't consolidated. In particular, because there are no F.Run and
    // F.Parallel methods, i.e., no fuzz sub-tests or parallel fuzz tests, a few
    // simplifications are made. We also require that F.Fuzz, F.Skip, or F.Fail is
    // called.
    func fRunner(f *F, fn func(*F)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CredentialsProviderIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/13770")
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        def "missing credentials error messages can be assembled in parallel execution (#credentialsType)"() {
            def buildScript = """
                tasks.register('executionCredentials') {
                    def providers = project.providers
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DeclarativeDslTestProjectGenerator.groovy

            if (!isRoot) {
                return null
            }
            """
            org.gradle.jvmargs=-Xms${config.daemonMemory} -Xmx${config.daemonMemory} -Dfile.encoding=UTF-8
            org.gradle.parallel=${config.parallel}
            org.gradle.workers.max=${config.maxWorkers}
            compilerMemory=${config.compilerMemory}
            testRunnerMemory=${config.testRunnerMemory}
            testForkEvery=${config.testForkEvery}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/update_control_dependencies.mlir

    // CHECK:    tf_executor.fetch %[[control_10]], %[[control_11]] : !tf_executor.control, !tf_executor.control
    
    // -----
    
    // Tests that we don't create dependencies between ops with same parallel group
    // ID but different branch IDs, even if both ops have unknown side effects.
    // Also test that the fetch op still depends on all side-effecting ops.
    func.func @same_group_different_branches() {
      tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Nov 03 18:12:49 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    == 5. `WorkerExecutor`
    
    link:{javadocPath}/org/gradle/workers/WorkerExecutor.html[`WorkerExecutor`] is a service that allows you to perform parallel execution of tasks using worker processes.
    This is particularly useful for tasks that perform CPU-intensive or long-running operations, as it allows them to be executed in parallel, improving build performance.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. docs/bigdata/README.md

    fs.s3a.connection.maximum=8192 # Maximum number of concurrent conns
    fs.s3a.fast.upload.active.blocks=2048 # Number of parallel uploads
    fs.s3a.fast.upload.buffer=disk # Use disk as the buffer for uploads
    fs.s3a.fast.upload=true # Turn on fast upload mode
    fs.s3a.max.total.tasks=2048 # Maximum number of parallel tasks
    fs.s3a.multipart.size=512M # Size of each multipart chunk
    fs.s3a.multipart.threshold=512M # Size before using multipart uploads
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  9. src/go/printer/printer_test.go

    	{"gobuild7.input", "gobuild7.golden", idempotent},
    }
    
    func TestFiles(t *testing.T) {
    	t.Parallel()
    	for _, e := range data {
    		source := filepath.Join(dataDir, e.source)
    		golden := filepath.Join(dataDir, e.golden)
    		mode := e.mode
    		t.Run(e.source, func(t *testing.T) {
    			t.Parallel()
    			check(t, source, golden, mode)
    			// TODO(gri) check that golden is idempotent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

        }
    
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        def "can show dependent components in parallel"() {
            given: 'a multiproject build'
            settingsFile.text = multiProjectSettings()
            buildScript multiProjectBuild()
    
            when: 'two reports in parallel'
            succeeds('-q', '--parallel', '--max-workers=4', 'libraries:dependentComponents', 'extensions:dependentComponents')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
Back to top