Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for iwork (0.14 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/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)
  5. 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)
  6. 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)
  7. src/cmd/dist/test.go

    	short      bool
    	cgoEnabled bool
    	json       bool
    
    	tests        []distTest // use addTest to extend
    	testNames    map[string]bool
    	timeoutScale int
    
    	worklist []*work
    }
    
    // work tracks command execution for a test.
    type work struct {
    	dt    *distTest     // unique test name, etc.
    	cmd   *exec.Cmd     // must write stdout/stderr to out
    	flush func()        // if non-nil, called after cmd.Run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    	if err != nil {
    		err = errors.New("parse error")
    	}
    	v.value = value
    	return err
    }
    
    func (b *dFlag) String() string { return "" }
    
    func init() {
    	work.AddBuildFlags(CmdGet, work.OmitModFlag)
    	CmdGet.Run = runGet // break init loop
    	CmdGet.Flag.Var(&getD, "d", "")
    	CmdGet.Flag.Var(&getU, "u", "")
    }
    
    func runGet(ctx context.Context, cmd *base.Command, args []string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

       *
       * <p>Rather than override this method to perform additional cancellation work or cleanup,
       * subclasses should override {@link #afterDone}, consulting {@link #isCancelled} and {@link
       * #wasInterrupted} as necessary. This ensures that the work is done even if the future is
       * cancelled without a call to {@code cancel}, such as by calling {@code
       * setFuture(cancelledFuture)}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  10. guava/src/com/google/common/util/concurrent/AbstractFuture.java

       *
       * <p>Rather than override this method to perform additional cancellation work or cleanup,
       * subclasses should override {@link #afterDone}, consulting {@link #isCancelled} and {@link
       * #wasInterrupted} as necessary. This ensures that the work is done even if the future is
       * cancelled without a call to {@code cancel}, such as by calling {@code
       * setFuture(cancelledFuture)}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
Back to top