Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 148 for Decisions (0.25 sec)

  1. pkg/controller/statefulset/stateful_set_utils.go

    // nextRevision finds the next valid revision number based on revisions. If the length of revisions
    // is 0 this is 1. Otherwise, it is 1 greater than the largest revision's Revision. This method
    // assumes that revisions has been sorted by Revision.
    func nextRevision(revisions []*apps.ControllerRevision) int64 {
    	count := len(revisions)
    	if count <= 0 {
    		return 1
    	}
    	return revisions[count-1].Revision + 1
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. operator/cmd/mesh/uninstall.go

    		if err != nil {
    			return err
    		}
    	} else {
    		kubeClientWithRev = kubeClient
    	}
    
    	if uiArgs.revision != "" {
    		revisions, err := tag.ListRevisionDescriptions(kubeClient)
    		if err != nil {
    			return fmt.Errorf("could not list revisions: %s", err)
    		}
    		if _, exists := revisions[uiArgs.revision]; !exists {
    			return errors.New("could not find target revision")
    		}
    	}
    
    	cache.FlushObjectCaches()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    			// Allow all and see if we get an error.
    			service.Allow()
    			decision, _, err := wh.Authorize(context.Background(), attr)
    			if tt.wantAuth {
    				if decision != authorizer.DecisionAllow {
    					t.Errorf("expected successful authorization")
    				}
    			} else {
    				if decision == authorizer.DecisionAllow {
    					t.Errorf("expected failed authorization")
    				}
    			}
    			if tt.wantErr {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set.go

    	revisions, err := ssc.control.ListRevisions(set)
    	if err != nil {
    		return err
    	}
    	orphanRevisions := make([]*apps.ControllerRevision, 0)
    	for i := range revisions {
    		if metav1.GetControllerOf(revisions[i]) == nil {
    			orphanRevisions = append(orphanRevisions, revisions[i])
    		}
    	}
    	if len(orphanRevisions) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    	"istio.io/istio/pkg/kube/inject"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/kube/kclient/clienttest"
    	"istio.io/istio/pkg/kube/kubetypes"
    	istiolog "istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/revisions"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/env"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/file"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. pkg/config/model.go

    	// The config client should not make any assumptions about revisions and rely only on
    	// exact equality to implement optimistic concurrency of read-write operations.
    	//
    	// The lifetime of an object of a particular revision depends on the underlying data store.
    	// The data store may compactify old revisions in the interest of storage optimization.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  7. pkg/test/framework/test.go

    			t.goTest.Name()))
    		return
    	}
    
    	if t.minIstioVersion != "" {
    		if !t.ctx.Settings().Revisions.AtLeast(resource.IstioVersion(t.minIstioVersion)) {
    			t.goTest.Skipf("Skipping %q: running with min Istio version %q, test requires at least %s",
    				t.goTest.Name(), t.ctx.Settings().Revisions.Minimum(), t.minIstioVersion)
    		}
    	}
    
    	start := time.Now()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. operator/cmd/mesh/install.go

    		var icpTag string
    		// create normalized tags for multiple control plane revisions
    		for _, icp := range *icps {
    			if icp.Revision != revision {
    				continue
    			}
    			tagVer, err := GetTagVersion(icp.Info.GitTag)
    			if err != nil {
    				return err
    			}
    			icpTags = append(icpTags, tagVer)
    		}
    		// sort different versions of control plane revisions
    		sort.Strings(icpTags)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. pkg/bootstrap/testdata/tracing_opencensusagent_golden.json

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/configcontroller.go

    	"istio.io/istio/pkg/adsc"
    	"istio.io/istio/pkg/config/analysis/incluster"
    	"istio.io/istio/pkg/config/schema/collections"
    	"istio.io/istio/pkg/config/schema/gvr"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/revisions"
    )
    
    // URL schemes supported by the config store
    type ConfigSourceAddressScheme string
    
    const (
    	// fs:///PATH will load local files. This replaces --configDir.
    	// example fs:///tmp/configroot
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top