Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 626 for plans (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tests/integration/pilot/multi_version_revision_test.go

    type revisionedNamespace struct {
    	revision  string
    	namespace namespace.Instance
    }
    
    // TestMultiVersionRevision tests traffic between data planes running under differently versioned revisions
    // should test all possible revisioned namespace pairings to test traffic between all versions
    func TestMultiVersionRevision(t *testing.T) {
    	// nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeJsonLogToCode.groovy

            "lunchroom",
            "sort",
            "building",
            "fact",
            "grass",
            "planes",
            "stove",
            "pull",
            "calculator",
            "suggestion",
            "beginner",
            "plough",
            "insurance",
            "hat",
            "toys",
            "plant",
            "trail",
            "wing",
            "ring",
            "desk",
            "yak",
            "teaching",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/asmb.go

    		return
    	}
    
    	symSize = 0
    	spSize = 0
    	lcSize = 0
    
    	switch ctxt.HeadType {
    	default:
    		panic("unknown platform")
    
    	// Macho
    	case objabi.Hdarwin:
    		asmbMacho(ctxt)
    
    	// Plan9
    	case objabi.Hplan9:
    		asmbPlan9(ctxt)
    
    	// PE
    	case objabi.Hwindows:
    		asmbPe(ctxt)
    
    	// Xcoff
    	case objabi.Haix:
    		asmbXcoff(ctxt)
    
    	// Elf
    	case objabi.Hdragonfly,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. tests/integration/pilot/multiplecontrolplanes/main_test.go

    			cfg.SystemNamespace = userGroup1NS.Name()
    			cfg.ControlPlaneValues = fmt.Sprintf(`
    namespace: %s
    revision: usergroup-1
    meshConfig:
      # REGISTRY_ONLY on one control plane is used to verify custom resources scoping
      outboundTrafficPolicy:
        mode: REGISTRY_ONLY
      # CR scoping requires discoverySelectors to be configured
      discoverySelectors:
        - matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/plan9/dir_plan9.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Plan 9 directory marshalling. See intro(5).
    
    package plan9
    
    import "errors"
    
    var (
    	ErrShortStat = errors.New("stat buffer too short")
    	ErrBadStat   = errors.New("malformed stat buffer")
    	ErrBadName   = errors.New("bad character in file name")
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 5.6K bytes
    - Viewed (0)
Back to top