Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Parallel (0.27 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               "reserved for the legacy graph export pipeline to maintain expected "
               "invariants. In the case of this pass, that means manually propagating "
               "controls to lifted parallel execute regions to the graph fetch to "
               "ensure the ops execute, as well as determining whether or not the "
               "islands created by this pass should be split after the replicated "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //	    This will only list top-level tests. No subtest or subbenchmarks will be
    //	    shown.
    //
    //	-parallel n
    //	    Allow parallel execution of test functions that call t.Parallel, and
    //	    fuzz targets that call t.Parallel when running the seed corpus.
    //	    The value of this flag is the maximum number of tests to run
    //	    simultaneously.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    // to relocsym happen in parallel; the assumption is that each
    // parallel thread will have its own state object.
    type relocSymState struct {
    	target *Target
    	ldr    *loader.Loader
    	err    *ErrorReporter
    	syms   *ArchSyms
    }
    
    // makeRelocSymState creates a relocSymState container object to
    // pass to relocsym(). If relocsym() calls happen in parallel,
    // each parallel thread should have its own state object.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    	srv := &Server{
    		ErrorLog: log.New(&ht.logbuf, "", 0),
    		Handler:  ht.handler,
    	}
    	go srv.Serve(ln)
    	<-conn.closec
    	return output.String()
    }
    
    func TestConsumingBodyOnNextConn(t *testing.T) {
    	t.Parallel()
    	defer afterTest(t)
    	conn := new(testConn)
    	for i := 0; i < 2; i++ {
    		conn.readBuf.Write([]byte(
    			"POST / HTTP/1.1\r\n" +
    				"Host: test\r\n" +
    				"Content-Length: 11\r\n" +
    				"\r\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    			// to exit immediately
    			return
    		}
    	}
    }
    
    const (
    	resyncWorkerCnt        = 10 // limit of number of bucket resyncs is progress at any given time
    	resyncParallelRoutines = 10 // number of parallel resync ops per bucket
    )
    
    func newresyncer() *replicationResyncer {
    	rs := replicationResyncer{
    		statusMap:      make(map[string]BucketReplicationResyncStatus),
    		workerSize:     resyncWorkerCnt,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    				trace.Flow(ctx, d.traceSpan, a.traceSpan)
    			}
    			err = a.Actor.Act(b, ctx, a)
    			span.Done()
    		}
    		if a.json != nil {
    			a.json.TimeDone = time.Now()
    		}
    
    		// The actions run in parallel but all the updates to the
    		// shared work state are serialized through b.exec.
    		b.exec.Lock()
    		defer b.exec.Unlock()
    
    		if err != nil {
    			if b.AllowErrors && a.Package != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/net/http/server.go

    		// Until the server replies to this request, it can't read another,
    		// so we might as well run the handler in this goroutine.
    		// [*] Not strictly true: HTTP pipelining. We could let them all process
    		// in parallel even if their responses need to be serialized.
    		// But we're not going to implement HTTP pipelining because it
    		// was never deployed in the wild and the answer is HTTP/2.
    		inFlightResponse = w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

        fi
        # Spread the remaining number of nodes evenly
        this_mig_size=$((instances_left / (NUM_MIGS - i + 1)))
        instances_left=$((instances_left - this_mig_size))
    
        # Run instance-groups creation in parallel.
        {
          gcloud compute instance-groups managed \
              create "${group_name}" \
              --project "${PROJECT}" \
              --zone "${ZONE}" \
              --base-instance-name "${group_name}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. cmd/object-handlers_test.go

    	testUploads := struct {
    		sync.Mutex
    		uploads []string
    	}{}
    
    	objectName := "test-object-new-multipart-parallel"
    	var wg sync.WaitGroup
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		// Initiate NewMultipart upload on the same object 10 times concurrrently.
    		go func() {
    			defer wg.Done()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top