Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 626 for plans (0.03 sec)

  1. operator/pkg/controller/istiocontrolplane/errdict.go

    		"updates for the objects cannot be processed leading to an out of sync control plane."
    	operatorImpactNoUpdates = "In this error state, changes to the IstioOperator CR will not result in the Istio " +
    		"control plane being updated."
    )
    
    var (
    	operatorFailedToGetObjectFromAPIServer = &structured.Error{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. releasenotes/notes/wds.yaml

      **Added** xDS workload metadata discovery to TCP metadata exchange filter as a fallback. This requires enabling `PEER_METADATA_DISCOVERY` flag on the proxy, and `PILOT_ENABLE_AMBIENT_CONTROLLERS` on the control plane.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 21:01:49 UTC 2023
    - 440 bytes
    - Viewed (0)
  3. releasenotes/notes/33455.yaml

      The istiodRemote component now includes all of the resources needed for either a basic remote or config cluster.
    
    upgradeNotes:
    - title: The istiodRemote installation component now includes config cluster resources.
      content: |
        Installing Istio on a remote cluster that is using an external control plane was previously done by disabling the `base` and `pilot`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 12 16:44:21 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/workflow/doc.go

    For instance
    
    	preflight     	Run control-plane pre-flight checks
    	certs         	Generates all PKI assets necessary to establish the control plane
    		/ca             Generates a self-signed Kubernetes CA to provision identities for Kubernetes components
    		/apiserver      Generates an API server serving certificate and key
    		...
    	kubeconfig		Generates all kubeconfig files necessary to establish the control plane
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 14 23:49:31 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/plan9/race0.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.
    
    //go:build plan9 && !race
    
    package plan9
    
    import (
    	"unsafe"
    )
    
    const raceenabled = false
    
    func raceAcquire(addr unsafe.Pointer) {
    }
    
    func raceReleaseMerge(addr unsafe.Pointer) {
    }
    
    func raceReadRange(addr unsafe.Pointer, len int) {
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 450 bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_waypoint.go

    package core
    
    import (
    	"time"
    
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	endpoint "github.com/envoyproxy/go-control-plane/envoy/config/endpoint/v3"
    	tls "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    	http "github.com/envoyproxy/go-control-plane/envoy/extensions/upstreams/http/v3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. tools/docker-builder/crane.go

    				plan := a.PlanFor(arch).Find(args.Name)
    				if plan == nil {
    					continue
    				}
    				// Plan is a list of real file paths, but we don't have a strong mapping from "docker context source"
    				// to "real path on disk". We do have a weak mapping though, by reproducing docker-copy.sh
    				for dest, src := range args.Files {
    					translated, err := translate(plan.Dependencies(), src)
    					if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/execution/EntryTaskSelector.java

    import org.gradle.api.internal.GradleInternal;
    import org.gradle.execution.plan.ExecutionPlan;
    import org.gradle.execution.plan.QueryableExecutionPlan;
    
    public interface EntryTaskSelector {
        void applyTasksTo(Context context, ExecutionPlan plan);
    
        default void postProcessExecutionPlan(Context context, QueryableExecutionPlan plan) {
        }
    
        interface Context {
            TaskSelection getSelection(String taskPath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/plan9/race.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.
    
    //go:build plan9 && race
    
    package plan9
    
    import (
    	"runtime"
    	"unsafe"
    )
    
    const raceenabled = true
    
    func raceAcquire(addr unsafe.Pointer) {
    	runtime.RaceAcquire(addr)
    }
    
    func raceReleaseMerge(addr unsafe.Pointer) {
    	runtime.RaceReleaseMerge(addr)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 587 bytes
    - Viewed (0)
  10. docs_src/extra_models/tutorial003.py

    
    class CarItem(BaseItem):
        type: str = "car"
    
    
    class PlaneItem(BaseItem):
        type: str = "plane"
        size: int
    
    
    items = {
        "item1": {"description": "All my friends drive a low rider", "type": "car"},
        "item2": {
            "description": "Music is my aeroplane, it's my aeroplane",
            "type": "plane",
            "size": 5,
        },
    }
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 644 bytes
    - Viewed (0)
Back to top