Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,011 for plans (0.04 sec)

  1. src/cmd/go/testdata/mod/golang.org_toolchain_v0.0.1-go1.999testmod.plan9-arm.txt

    golang.org/toolchain@v0.0.1-go1.999testmod.plan9-arm
    
    -- .mod --
    module golang.org/toolchain
    -- .info --
    {"Version":"v0.0.1-go1.999testmod.plan9-arm"}
    -- go.mod --
    module golang.org/toolchain
    -- bin/go --
    #!/bin/rc
    echo go1.999testmod here!
    -- bin/gofmt --
    echo i am unused
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 13:19:02 UTC 2023
    - 294 bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/build/DefaultBuildLifecycleControllerTest.groovy

            controller.prepareToScheduleTasks()
            def plan1 = controller.newWorkGraph()
            controller.populateWorkGraph(plan1) { b -> b.addRequestedTasks() }
            controller.finalizeWorkGraph(plan1)
            def executionResult = controller.executeTasks(plan1)
            executionResult.failures.empty
    
            controller.prepareToScheduleTasks()
            def plan2 = controller.newWorkGraph()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. pkg/test/framework/components/cluster/cluster.go

    	// IsPrimary returns true if this is a primary cluster, containing an instance
    	// of the Istio control plane.
    	IsPrimary() bool
    
    	// IsConfig returns true if this is a config cluster, used as the source of
    	// Istio config for one or more control planes.
    	IsConfig() bool
    
    	// IsRemote returns true if this is a remote cluster, which uses a control plane
    	// residing in another cluster.
    	IsRemote() bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/types.go

    	// KubernetesVersion is the target version of the control plane.
    	KubernetesVersion string
    
    	// CIKubernetesVersion is the target CI version of the control plane.
    	// Useful for running kubeadm with CI Kubernetes version.
    	// +k8s:conversion-gen=false
    	CIKubernetesVersion string
    
    	// ControlPlaneEndpoint sets a stable IP address or DNS name for the control plane; it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. samples/ambient-argo/README.md

    particularly the waypoint, can specify which control plane they connect to (and by inference what version of the data plane they will run) using the `istio.io/rev` label set to a tag or revision.
    
    As in sidecar mode, every control plane installation may (and should) include a revision name, which is a stable identifier for that control plane installation and version.  For simplicity, we recommend using the version of the control plane as the revision name (see [./istio/control-plane-apps...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. samples/ambient-argo/istio/control-plane-appset.yaml

    Mitch Connors <******@****.***> 1699062890 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1006 bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcweb/git.go

    	"slices"
    	"sync"
    )
    
    type gitHandler struct {
    	once       sync.Once
    	gitPath    string
    	gitPathErr error
    }
    
    func (h *gitHandler) Available() bool {
    	if runtime.GOOS == "plan9" {
    		// The Git command is usually not the real Git on Plan 9.
    		// See https://golang.org/issues/29640.
    		return false
    	}
    	h.once.Do(func() {
    		h.gitPath, h.gitPathErr = exec.LookPath("git")
    	})
    	return h.gitPathErr == nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. operator/cmd/mesh/uninstall.go

    		Long:  "The uninstall command uninstalls Istio from a cluster",
    		Example: `  # Uninstall a single control plane by revision
      istioctl uninstall --revision foo
    
      # Uninstall a single control plane by iop file
      istioctl uninstall -f iop.yaml
      
      # Uninstall all control planes and shared resources
      istioctl uninstall --purge`,
    		Args: func(cmd *cobra.Command, args []string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/kube.go

    		return nil, err
    	}
    
    	// Populate the revisions for the control plane.
    	var revisions resource.RevVerMap
    	if !cfg.DeployIstio {
    		// Using a pre-installed control plane. Get the revisions from the
    		// command-line.
    		revisions = ctx.Settings().Revisions
    	} else if len(iop.Spec.Revision) > 0 {
    		// Use revisions from the default control plane operator.
    		revisions = resource.RevVerMap{
    			iop.Spec.Revision: "",
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. src/image/color/palette/gen.go

    	fmt.Fprintln(w, "// of continuous tones.")
    	fmt.Fprintln(w, "//")
    	fmt.Fprintln(w, "// This palette was used in the Plan 9 Operating System, described at")
    	fmt.Fprintln(w, "// https://9p.io/magic/man2html/6/color")
    	fmt.Fprintln(w, "var Plan9 = []color.Color{")
    	for _, line := range lines {
    		fmt.Fprintln(w, line)
    	}
    	fmt.Fprintln(w, "}")
    	fmt.Fprintln(w)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
Back to top