Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,099 for plans (0.07 sec)

  1. src/cmd/vendor/golang.org/x/sys/plan9/const_plan9.go

    package plan9
    
    // Plan 9 Constants
    
    // Open modes
    const (
    	O_RDONLY  = 0
    	O_WRONLY  = 1
    	O_RDWR    = 2
    	O_TRUNC   = 16
    	O_CLOEXEC = 32
    	O_EXCL    = 0x1000
    )
    
    // Rfork flags
    const (
    	RFNAMEG  = 1 << 0
    	RFENVG   = 1 << 1
    	RFFDG    = 1 << 2
    	RFNOTEG  = 1 << 3
    	RFPROC   = 1 << 4
    	RFMEM    = 1 << 5
    	RFNOWAIT = 1 << 6
    	RFCNAMEG = 1 << 10
    	RFCENVG  = 1 << 11
    	RFCFDG   = 1 << 12
    	RFREND   = 1 << 13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1004 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/test/framework/components/environment/kube/flags.go

    			"comma-separated list of the form <clusterIndex>:<controlPlaneClusterIndex>, where the indexes refer to the order in which "+
    			"a given cluster appears in the 'istio.test.kube.config' flag. This topology also determines where control planes should "+
    			"be deployed. If not specified, the default is to deploy a control plane per cluster (i.e. `replicated control "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top