Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 558 for plan (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/strings/example_test.go

    }
    
    func ExampleSplit() {
    	fmt.Printf("%q\n", strings.Split("a,b,c", ","))
    	fmt.Printf("%q\n", strings.Split("a man a plan a canal panama", "a "))
    	fmt.Printf("%q\n", strings.Split(" xyz ", ""))
    	fmt.Printf("%q\n", strings.Split("", "Bernardo O'Higgins"))
    	// Output:
    	// ["a" "b" "c"]
    	// ["" "man " "plan " "canal panama"]
    	// [" " "x" "y" "z" " "]
    	// [""]
    }
    
    func ExampleSplitN() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:05:38 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  5. 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)
  6. cmd/kubeadm/app/apis/kubeadm/types.go

    	Diff UpgradeDiffConfiguration
    
    	// Node holds a list of options that are specific to the "kubeadm upgrade node" command.
    	Node UpgradeNodeConfiguration
    
    	// Plan holds a list of options that are specific to the "kubeadm upgrade plan" command.
    	Plan UpgradePlanConfiguration
    
    	// Timeouts holds various timeouts that apply to kubeadm commands.
    	Timeouts *Timeouts
    }
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

    import org.gradle.api.internal.tasks.TaskLocalStateInternal
    import org.gradle.api.specs.Spec
    import org.gradle.internal.cc.base.serialize.IsolateOwners
    import org.gradle.execution.plan.LocalTaskNode
    import org.gradle.execution.plan.TaskNodeFactory
    import org.gradle.internal.configuration.problems.PropertyKind
    import org.gradle.internal.configuration.problems.PropertyTrace
    import org.gradle.internal.cc.base.serialize.getProject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. src/os/file.go

    //
    // On Unix systems, it returns $TMPDIR if non-empty, else /tmp.
    // On Windows, it uses GetTempPath, returning the first non-empty
    // value from %TMP%, %TEMP%, %USERPROFILE%, or the Windows directory.
    // On Plan 9, it returns /tmp.
    //
    // The directory is neither guaranteed to exist nor have accessible
    // permissions.
    func TempDir() string {
    	return tempDir()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  9. src/runtime/os_plan9.go

    	var buf [2048]byte
    	var pos int
    	fd := open(&devswap[0], _OREAD, 0)
    	if fd < 0 {
    		// There's not much we can do if /dev/swap doesn't
    		// exist. However, nothing in the memory manager uses
    		// this on Plan 9, so it also doesn't really matter.
    		return minPhysPageSize
    	}
    	for pos < len(buf) {
    		n := read(fd, unsafe.Pointer(&buf[pos]), int32(len(buf)-pos))
    		if n <= 0 {
    			break
    		}
    		pos += int(n)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/Codecs.kt

    import org.gradle.api.model.ObjectFactory
    import org.gradle.api.tasks.util.PatternSet
    import org.gradle.composite.internal.BuildTreeWorkGraphController
    import org.gradle.execution.plan.OrdinalGroupFactory
    import org.gradle.execution.plan.TaskNodeFactory
    import org.gradle.internal.Factory
    import org.gradle.internal.build.BuildStateRegistry
    import org.gradle.internal.execution.InputFingerprinter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top