Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for Parallel (0.13 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

              <version>4.0.0+</version>
              <description>
                Multiple specifications of a set of reports, each having (possibly) different
                configuration. This is the reporting parallel to an {@code execution} in the build.
              </description>
              <association>
                <type>ReportSet</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/go/internal/load/pkg.go

    	}
    	base.ExitIfErrors()
    
    	// Check for duplicate loads of the same package.
    	// That should be impossible, but if it does happen then
    	// we end up trying to build the same package twice,
    	// usually in parallel overwriting the same files,
    	// which doesn't work very well.
    	seen := map[string]bool{}
    	reported := map[string]bool{}
    	for _, pkg := range PackageList(pkgs) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/internal/obj/x86/asm6.go

    //	ycover[Yi0*Ymax+Ys32] = 1
    //	ycover[Yi1*Ymax+Ys32] = 1
    //	ycover[Yi8*Ymax+Ys32] = 1
    //
    // which means that Yi0, Yi1, and Yi8 all count as Ys32 (signed 32)
    // if that's what an instruction can handle.
    //
    // In parallel with the scan through the ytable for the appropriate line, there
    // is a z pointer that starts out pointing at the strange magic byte list in
    // the Optab struct.  With each step past a non-matching ytable line, z
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    	// We've inverted the order in which it gets G's from the local P's runnable queue
    	// and then advances the head pointer because we don't want to mess up the statuses of G's
    	// while runqdrain() and runqsteal() are running in parallel.
    	// Thus we should advance the head pointer before draining the local P into a gQueue,
    	// so that we can update any gp.schedlink only after we take the full ownership of G,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    		{"slice has pointer", ValueOf(s), sliceTestFn},
    		{"non-map/slice", ValueOf(1), panicTestFn},
    	}
    
    	for _, tc := range tests {
    		tc := tc
    		t.Run(tc.name, func(t *testing.T) {
    			t.Parallel()
    			if !tc.testFunc(tc.value) {
    				t.Errorf("unexpected result for value.Clear(): %v", tc.value)
    			}
    		})
    	}
    }
    
    func TestValuePointerAndUnsafePointer(t *testing.T) {
    	ptr := new(int)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top