Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 376 for plan (0.04 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.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.execution.plan
    
    import org.gradle.api.BuildCancelledException
    import org.gradle.api.CircularReferenceException
    import org.gradle.api.Task
    import org.gradle.api.internal.TaskInternal
    import org.gradle.api.internal.tasks.WorkNodeAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  2. src/os/exec.go

    	//
    	// On Unix and Plan 9, Release sets p.Pid = -1. This is the only part of the
    	// Process API that is not thread-safe, but it can't be changed now.
    	//
    	// On Windows, Release does _not_ modify p.Pid.
    	//
    	// On Windows, Wait calls Release after successfully waiting to
    	// proactively clean up resources.
    	//
    	// On Unix and Plan 9, Wait also proactively cleans up resources, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildTaskGraph.java

    import org.gradle.api.Task;
    import org.gradle.api.internal.TaskInternal;
    import org.gradle.api.specs.Spec;
    import org.gradle.execution.EntryTaskSelector;
    import org.gradle.execution.plan.PlanExecutor;
    import org.gradle.execution.plan.QueryableExecutionPlan;
    import org.gradle.internal.build.BuildLifecycleController;
    import org.gradle.internal.build.BuildState;
    import org.gradle.internal.build.BuildStateRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:04:24 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/config.go

    	c.ABI1 = abi.NewABIConfig(len(c.intParamRegs), len(c.floatParamRegs), ctxt.Arch.FixedFrameSize, 1)
    
    	// On Plan 9, floating point operations are not allowed in note handler.
    	if buildcfg.GOOS == "plan9" {
    		// Don't use FMA on Plan 9
    		c.UseFMA = false
    
    		// Don't use Duff's device and SSE on Plan 9 AMD64.
    		if arch == "amd64" {
    			c.noDuffDevice = true
    			c.useSSE = false
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/RealCall.kt

       */
      override fun cancel() {
        if (canceled) return // Already canceled.
    
        canceled = true
        exchange?.cancel()
        for (plan in plansToCancel) {
          plan.cancel()
        }
    
        eventListener.canceled(this)
      }
    
      override fun isCanceled(): Boolean = canceled
    
      override fun execute(): Response {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. src/os/signal/doc.go

    CTRL_LOGOFF_EVENT or CTRL_SHUTDOWN_EVENT is received - the process will
    still get terminated unless it exits. But receiving syscall.SIGTERM will
    give the process an opportunity to clean up before termination.
    
    # Plan 9
    
    On Plan 9, signals have type syscall.Note, which is a string. Calling
    Notify with a syscall.Note will cause that value to be sent on the
    channel when that string is posted as a note.
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/upgrade/plan_test.go

    			printer, err := outputFlags.ToPrinter()
    			if err != nil {
    				t.Errorf("failed ToPrinter, err: %+v", err)
    			}
    
    			plan := genUpgradePlan(rt.upgrades, rt.versionStates)
    			if err := printer.PrintObj(plan, rt.buf); err != nil {
    				t.Errorf("unexpected error when print object: %v", err)
    			}
    
    			actualBytes := rt.buf.Bytes()
    			if !bytes.Equal(actualBytes, rt.expectedBytes) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  8. src/net/lookup_plan9.go

    import (
    	"context"
    	"errors"
    	"internal/bytealg"
    	"internal/itoa"
    	"internal/stringslite"
    	"io"
    	"os"
    )
    
    // cgoAvailable set to true to indicate that the cgo resolver
    // is available on Plan 9. Note that on Plan 9 the cgo resolver
    // does not actually use cgo.
    const cgoAvailable = true
    
    func query(ctx context.Context, filename, query string, bufSize int) (addrs []string, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// +optional
    	Node UpgradeNodeConfiguration `json:"node,omitempty"`
    
    	// Plan holds a list of options that are specific to the "kubeadm upgrade plan" command.
    	// +optional
    	Plan UpgradePlanConfiguration `json:"plan,omitempty"`
    
    	// Timeouts holds various timeouts that apply to kubeadm commands.
    	// +optional
    	Timeouts *Timeouts `json:"timeouts,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/staticinit/sched.go

    	}
    
    	if base.Flag.Percent != 0 {
    		ir.Dump("not static", r)
    	}
    	return false
    }
    
    func (s *Schedule) initplan(n ir.Node) {
    	if s.Plans[n] != nil {
    		return
    	}
    	p := new(Plan)
    	s.Plans[n] = p
    	switch n.Op() {
    	default:
    		base.Fatalf("initplan")
    
    	case ir.OARRAYLIT, ir.OSLICELIT:
    		n := n.(*ir.CompLitExpr)
    		var k int64
    		for _, a := range n.List {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top