Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 377 for revision2 (0.25 sec)

  1. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublicationTest.groovy

            publication.revision = "revision2"
    
            then:
            coordinates.organisation.get() == "organisation2"
            coordinates.module.get() == "module2"
            coordinates.revision.get() == "revision2"
    
            and:
            publication.organisation== "organisation2"
            publication.module == "module2"
            publication.revision == "revision2"
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  2. pkg/controller/deployment/util/deployment_util.go

    func (o ReplicaSetsByRevision) Less(i, j int) bool {
    	revision1, err1 := Revision(o[i])
    	revision2, err2 := Revision(o[j])
    	if err1 != nil || err2 != nil || revision1 == revision2 {
    		return controller.ReplicaSetsByCreationTimestamp(o).Less(i, j)
    	}
    	return revision1 < revision2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  3. pkg/controller/history/controller_history.go

    // FindEqualRevisions returns all ControllerRevisions in revisions that are equal to needle using EqualRevision as the
    // equality test. The returned slice preserves the order of revisions.
    func FindEqualRevisions(revisions []*apps.ControllerRevision, needle *apps.ControllerRevision) []*apps.ControllerRevision {
    	var eq []*apps.ControllerRevision
    	for i := range revisions {
    		if EqualRevision(revisions[i], needle) {
    			eq = append(eq, revisions[i])
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control.go

    		updateRevision = revisions[revisionCount-1]
    	} else if equalCount > 0 {
    		// if the equivalent revision is not immediately prior we will roll back by incrementing the
    		// Revision of the equivalent revision
    		updateRevision, err = ssc.controllerHistory.UpdateControllerRevision(
    			equalRevisions[equalCount-1],
    			updateRevision.Revision)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  5. pilot/pkg/leaderelection/leaderelection_test.go

    	// Second pod, revision "red", steals the leader lock from "green" since it is the default revision
    	_, stop2 := createElection(t, "pod2", "red", watcher, true, client)
    	// Third pod with revision "red" comes in and cannot take the lock since another revision with "red" has it
    	_, stop3 := createElection(t, "pod3", "red", watcher, false, client)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/install.go

    	revision := iop.Spec.Revision
    	if revision == "" {
    		revision = util.DefaultRevisionName
    	}
    	icps, err := kubeClient.GetIstioVersions(context.TODO(), ns)
    	if err != nil {
    		return err
    	}
    	if len(*icps) != 0 {
    		var icpTags []string
    		var icpTag string
    		// create normalized tags for multiple control plane revisions
    		for _, icp := range *icps {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. pkg/test/framework/resource/flags.go

    	}
    
    	if s.Revision != "" {
    		if s.Revisions != nil {
    			return fmt.Errorf("cannot use --istio.test.revision and --istio.test.revisions at the same time," +
    				" --istio.test.revisions will take precedence and --istio.test.revision will be ignored")
    		}
    		// use Revision as the sole revision in RevVerMap
    		s.Revisions = RevVerMap{
    			s.Revision: "",
    		}
    	} else if s.Revisions != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. istioctl/pkg/injector/injector-list.go

    }
    
    // podCountByRevision() returns a map of revision->pods, with "<non-Istio>" as the dummy "revision" for uninjected pods
    func podCountByRevision(pods []corev1.Pod, expectedRevision string) map[string]revisionCount {
    	retval := map[string]revisionCount{}
    	for _, pod := range pods {
    		revision := extractRevisionFromPod(&pod)
    		revisionLabel := revision
    		if revision == "" {
    			revisionLabel = "<non-Istio>"
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 04 03:08:06 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. 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)
  10. operator/cmd/mesh/uninstall.go

    		l.LogAndFatal(err)
    	}
    	var kubeClientWithRev kube.CLIClient
    	if uiArgs.revision != "" && uiArgs.revision != "default" {
    		kubeClientWithRev, err = ctx.CLIClientWithRevision(uiArgs.revision)
    		if err != nil {
    			return err
    		}
    	} else {
    		kubeClientWithRev = kubeClient
    	}
    
    	if uiArgs.revision != "" {
    		revisions, err := tag.ListRevisionDescriptions(kubeClient)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top