Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,011 for plans (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/dist/build.go

    	brokenFlag := flag.Bool("broken", false, "include broken ports")
    	xflagparse(0)
    
    	var plats []string
    	for p := range cgoEnabled {
    		if broken[p] && !*brokenFlag {
    			continue
    		}
    		plats = append(plats, p)
    	}
    	sort.Strings(plats)
    
    	if !*jsonFlag {
    		for _, p := range plats {
    			xprintf("%s\n", p)
    		}
    		return
    	}
    
    	type jsonResult struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/net/conf.go

    	switch runtime.GOOS {
    	// Historically on Windows and Plan 9 we prefer the
    	// cgo resolver (which doesn't use the cgo tool) rather than
    	// the go resolver. This is because originally these
    	// systems did not support the go resolver.
    	// Keep it this way for better compatibility.
    	// Perhaps we can revisit this some day.
    	case "windows", "plan9":
    		return true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/upgrade/health.go

    }
    
    // Name is part of the preflight.Checker interface
    func (c *healthCheck) Name() string {
    	return c.name
    }
    
    // CheckClusterHealth makes sure:
    // - the cluster can accept a workload
    // - all control-plane Nodes are Ready
    // - (if static pod-hosted) that all required Static Pod manifests exist on disk
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:18:02 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/apply.go

    // - Enforces all version skew policies
    // - Asks the user if they really want to upgrade
    // - Makes sure the control plane images are available locally on the control-plane(s)
    // - Upgrades the control plane components
    // - Applies the other resources that'd be created with kubeadm init as well, like
    //   - Uploads the newly used configuration to the cluster ConfigMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. src/internal/poll/fd_plan9.go

    	return errors.New("not implemented")
    }
    
    func DupCloseOnExec(fd int) (int, string, error) {
    	nfd, err := syscall.Dup(int(fd), -1)
    	if err != nil {
    		return 0, "dup", err
    	}
    	// Plan9 has no syscall.CloseOnExec but
    	// its forkAndExecInChild closes all fds
    	// not related to the fork+exec.
    	return nfd, "", nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top