Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 161 for iwork (0.05 sec)

  1. src/runtime/mgcmark.go

    	work.stackRoots = allGsSnapshot()
    	work.nStackRoots = len(work.stackRoots)
    
    	work.markrootNext = 0
    	work.markrootJobs = uint32(fixedRootCount + work.nDataRoots + work.nBSSRoots + work.nSpanRoots + work.nStackRoots)
    
    	// Calculate base indexes of each root type
    	work.baseData = uint32(fixedRootCount)
    	work.baseBSS = work.baseData + uint32(work.nDataRoots)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	}
    	work.tstart = startTime
    
    	// Check that there's no marking work remaining.
    	if work.full != 0 || work.markrootNext < work.markrootJobs {
    		print("runtime: full=", hex(work.full), " next=", work.markrootNext, " jobs=", work.markrootJobs, " nDataRoots=", work.nDataRoots, " nBSSRoots=", work.nBSSRoots, " nSpanRoots=", work.nSpanRoots, " nStackRoots=", work.nStackRoots, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/cmd/go/internal/test/test.go

    		} else {
    			pmain.Target = target
    			installAction = &work.Action{
    				Mode:    "test build",
    				Actor:   work.ActorFunc(work.BuildInstallFunc),
    				Deps:    []*work.Action{buildAction},
    				Package: pmain,
    				Target:  target,
    			}
    			runAction = installAction // make sure runAction != nil even if not running test
    		}
    	}
    
    	var vetRunAction *work.Action
    	if testC {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer.go

    	// unlike heapLive, heapMarked does not change until the
    	// next mark termination.
    	heapMarked uint64
    
    	// heapScanWork is the total heap scan work performed this cycle.
    	// stackScanWork is the total stack scan work performed this cycle.
    	// globalsScanWork is the total globals scan work performed this cycle.
    	//
    	// These are updated atomically during the cycle. Updates occur in
    	// bounded batches, since they are both written and read
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    		if err != nil {
    			if inWorkspaceMode() {
    				if tooNew, ok := err.(*gover.TooNewError); ok && !strings.HasPrefix(cfg.CmdName, "work ") {
    					// Switching to a newer toolchain won't help - the go.work has the wrong version.
    					// Report this more specific error, unless we are a command like 'go work use'
    					// or 'go work sync', which will fix the problem after the caller sees the TooNewError
    					// and switches to a newer toolchain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/validation/validation_test.go

    		path:           "foo",
    		expectingError: true,
    	}, {
    		name:           "single slash should work",
    		path:           "/",
    		expectingError: false,
    	}, {
    		name:           "continuous slash should fail",
    		path:           "//",
    		expectingError: true,
    	}, {
    		name:           "/foo slash should work",
    		path:           "/foo",
    		expectingError: false,
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais2.go

    			// Skip non-flagged entry.
    			// (This loop can't see an empty entry; 0 means the real zero index.)
    			continue
    		}
    
    		// Negative j is a work queue entry; rewrite to positive j for final suffix array.
    		j = -j
    		sa[i] = int64(j)
    
    		// Index j was on work queue (encoded as -j but now decoded),
    		// meaning k := j-1 is L-type,
    		// so we can now place k correctly into sa.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

    import org.gradle.tooling.events.work.WorkItemFinishEvent;
    import org.gradle.tooling.events.work.WorkItemOperationDescriptor;
    import org.gradle.tooling.events.work.WorkItemOperationResult;
    import org.gradle.tooling.events.work.WorkItemProgressEvent;
    import org.gradle.tooling.events.work.WorkItemStartEvent;
    import org.gradle.tooling.events.work.internal.DefaultWorkItemFailureResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    	// On the way back up, we consider outgoing branches that
    	// haven't already been considered. This way we consider each
    	// branch condition only once.
    	for len(work) > 0 {
    		node := work[len(work)-1]
    		work = work[:len(work)-1]
    		parent := idom[node.block.ID]
    		branch := getBranch(sdom, parent, node.block)
    
    		switch node.state {
    		case descend:
    			ft.checkpoint()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    			if mr := findModuleRoot(absDir); mr != "" {
    				return "", fmt.Errorf("%s is contained in a module that is not one of the workspace modules listed in go.work. You can add the module to the workspace using:\n\tgo work use %s", dirstr, base.ShortPath(mr))
    			}
    			return "", fmt.Errorf("%s outside modules listed in go.work or their selected dependencies", dirstr)
    		}
    		return "", fmt.Errorf("%s outside main module or its selected dependencies", dirstr)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top