Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 238 for workerCh (0.16 sec)

  1. src/testing/fuzz.go

    		// and add to FuzzResult (ie. time taken, num iterations)
    
    	case fuzzWorker:
    		// Fuzzing is enabled, and this is a worker process. Follow instructions
    		// from the coordinator.
    		if err := f.fuzzContext.deps.RunFuzzWorker(func(e corpusEntry) error {
    			// Don't write to f.w (which points to Stdout) if running from a
    			// fuzz worker. This would become very verbose, particularly during
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorServicesIntegrationTest.groovy

     */
    
    package org.gradle.workers.internal
    
    import org.gradle.api.Project
    import org.gradle.api.file.ProjectLayout
    import org.gradle.internal.reflect.Instantiator
    
    import static org.gradle.workers.fixtures.WorkerExecutorFixture.ISOLATION_MODES
    
    class WorkerExecutorServicesIntegrationTest extends AbstractWorkerExecutorIntegrationTest {
        def "workers cannot inject internal services using #isolationMode isolation"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/pgen.go

    // Compile builds an SSA backend function,
    // uses it to generate a plist,
    // and flushes that plist to machine code.
    // worker indicates which of the backend workers is doing the processing.
    func Compile(fn *ir.Func, worker int, profile *pgoir.Profile) {
    	f := buildssa(fn, worker, inline.IsPgoHotFunc(fn, profile) || inline.HasPgoHotInline(fn))
    	// Note: check arg size to fix issue 25507.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/ProducerTaskCommandLineOrderIntegrationTest.groovy

            def generate = rootBuild.task('generate').dependsOn(generateBar).dependsOn(generateFoo)
    
            writeAllFiles()
    
            expect:
            2.times {
                args '--parallel', '--max-workers=2'
                succeeds(generate.path, clean.path)
    
                result.assertTaskOrder(generateFoo.fullPath, generateBar.fullPath, generate.fullPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. cmd/batch-expire.go

    	oi, ok := oiCache[fmt.Sprintf("%s-%s", toDel.ObjectName, toDel.VersionID)]
    	return oi, ok
    }
    
    func batchObjsForDelete(ctx context.Context, r *BatchJobExpire, ri *batchJobInfo, job BatchJobRequest, api ObjectLayer, wk *workers.Workers, expireCh <-chan []expireObjInfo) {
    	vc, _ := globalBucketVersioningSys.Get(r.Bucket)
    	retryAttempts := r.Retry.Attempts
    	delay := job.Expire.Retry.Delay
    	if delay == 0 {
    		delay = batchExpireJobDefaultRetryDelay
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. settings.gradle.kts

            subproject("file-watching")
            subproject("execution")
            subproject("hashing")
            subproject("persistent-cache")
            subproject("snapshots")
            subproject("worker-main")
            subproject("workers")
        }
    }
    
    // Documentation Module
    module("documentation") {
        subproject("docs")
        subproject("docs-asciidoctor-extensions-base")
        subproject("docs-asciidoctor-extensions")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. docs/zh/docs/deployment/concepts.md

    可以通过多种方法来实现这一目标,我将在接下来的章节中向您详细介绍具体策略,例如在谈论 Docker 和容器时。
    
    要考虑的主要限制是必须有一个**单个**组件来处理**公共IP**中的**端口**。 然后它必须有一种方法将通信**传输**到复制的**进程/worker**。
    
    以下是一些可能的组合和策略:
    
    * **Gunicorn** 管理 **Uvicorn workers**
         * Gunicorn 将是监听 **IP** 和 **端口** 的 **进程管理器**,复制将通过 **多个 Uvicorn 工作进程** 进行
    * **Uvicorn** 管理 **Uvicorn workers**
         * 一个 Uvicorn **进程管理器** 将监听 **IP** 和 **端口**,并且它将启动 **多个 Uvicorn 工作进程**
    * **Kubernetes** 和其他分布式 **容器系统**
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientsManagerTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.workers.internal
    
    import org.gradle.api.Transformer
    import org.gradle.api.logging.LogLevel
    import org.gradle.internal.event.DefaultListenerManager
    import org.gradle.internal.event.ListenerManager
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorParametersIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.workers.internal
    
    import org.gradle.api.services.BuildServiceParameters
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    import java.util.concurrent.atomic.AtomicInteger
    
    import static org.gradle.workers.fixtures.WorkerExecutorFixture.ISOLATION_MODES
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api_experimental.h

    // EagerService to maintain consistency between client and worker. The
    // context_id is initialized with a dummy value and is later set when the worker
    // is initialized (either locally or remotely). The context_id can change during
    // the process lifetime although this should cause the worker to be
    // reinitialized (e.g. cleared caches) as well.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top