Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for workerCh (0.18 sec)

  1. cmd/bucket-replication.go

    	for len(p.workers) < n {
    		input := make(chan ReplicationWorkerOperation, 10000)
    		p.workers = append(p.workers, input)
    
    		go p.AddWorker(input, &p.activeWorkers)
    	}
    	for len(p.workers) > n {
    		worker := p.workers[len(p.workers)-1]
    		p.workers = p.workers[:len(p.workers)-1]
    		xioutil.SafeClose(worker)
    	}
    }
    
    // ResizeWorkerPriority sets replication failed workers pool size
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. cmd/bucket-replication-utils.go

    }
    
    type replicationResyncer struct {
    	// map of bucket to their resync status
    	statusMap      map[string]BucketReplicationResyncStatus
    	workerSize     int
    	resyncCancelCh chan struct{}
    	workerCh       chan struct{}
    	sync.RWMutex
    }
    
    const (
    	replicationDir      = ".replication"
    	resyncFileName      = "resync.bin"
    	resyncMetaFormat    = 1
    	resyncMetaVersionV1 = 1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. cmd/bucket-lifecycle.go

    		workers = workers[:len(workers)-1]
    		worker <- expiryOp(nil)
    		es.stats.workers.Add(-1)
    	}
    	// Atomically replace workers.
    	es.workers.Store(&workers)
    }
    
    // Worker handles 4 types of expiration tasks.
    // 1. Expiry of objects, includes regular and transitioned objects
    // 2. Expiry of noncurrent versions due to NewerNoncurrentVersions
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

            "gradle-base-services",
            "gradle-enterprise-logging",
            "gradle-enterprise-workers",
            "gradle-cli",
            "gradle-concurrent",
            "gradle-io",
            "gradle-wrapper-shared",
            "gradle-native",
            "gradle-dependency-management",
            "gradle-workers",
            "gradle-worker-main",
            "gradle-build-process-services",
            "gradle-problems-api",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. .teamcity/test-buckets.json

    					"ivy",
    					"testing-native",
    					"maven",
    					"integ-test"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"workers",
    					"model-core",
    					"language-groovy",
    					"build-init",
    					"logging",
    					"plugins-groovy",
    					"kotlin-dsl",
    					"plugins-java",
    					"samples",
    					"plugin-development",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

        }
    
        // This test simulates a long running Zinc compiler setup by running code similar to ZincScalaCompilerFactory through the worker API.
        // if many workers wait for the same exclusive lock, a worker does not time out because several others get the lock before
        def "worker not timeout"() {
            given:
            def gradleUserHome = file("home").absoluteFile
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/build.gradle.kts

        api(project(":language-jvm"))
        api(project(":problems-api"))
        api(project(":platform-base"))
        api(project(":toolchains-jvm"))
        api(project(":toolchains-jvm-shared"))
        api(project(":workers"))
        api(project(":worker-main"))
        api(project(":build-process-services"))
    
        api(libs.inject)
        api(libs.jsr305)
    
        implementation(projects.concurrent)
        implementation(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTaskIntegrationTest.groovy

    import org.gradle.api.DefaultTask
    import org.gradle.api.tasks.TaskAction
    import org.gradle.process.ExecOperations
    import org.gradle.workers.WorkAction
    import org.gradle.workers.WorkParameters
    import org.gradle.workers.WorkQueue
    import org.gradle.workers.WorkerExecutor
    
    import javax.inject.Inject
    
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.exec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. platforms/jvm/scala/build.gradle.kts

        api(project(":model-core"))
        api(project(":platform-base"))
        api(project(":platform-jvm"))
        api(project(":toolchains-jvm"))
        api(project(":toolchains-jvm-shared"))
        api(project(":workers"))
        api(project(":build-process-services"))
    
        api(libs.groovy)
        api(libs.inject)
        api(libs.jsr305)
    
        implementation(projects.time)
        implementation(project(":dependency-management"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/build.gradle.kts

        api(project(":process-services"))
        api(project(":snapshots"))
        api(project(":test-suites-base"))
        api(project(":toolchains-jvm"))
        api(project(":toolchains-jvm-shared"))
        api(project(":worker-main"))
        api(project(":workers"))
        api(project(":build-process-services"))
    
        api(libs.asm)
        api(libs.fastutil)
        api(libs.groovy)
        api(libs.guava)
        api(libs.jsr305)
        api(libs.inject)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top