Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 916 for revision2 (0.16 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. manifests/charts/istio-control/istio-discovery/templates/revision-tags.yaml

    # Adapted from istio-discovery/templates/mutatingwebhook.yaml
    # Removed paths for legacy and default selectors since a revision tag
    # is inherently created from a specific revision
    {{- $whv := dict
     "revision" .Values.revision
      "injectionPath" .Values.istiodRemote.injectionPath
      "injectionURL" .Values.istiodRemote.injectionURL
      "reinvocationPolicy" .Values.sidecarInjectorWebhook.reinvocationPolicy
      "namespace" .Release.Namespace }}
    {{- define "core" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/input/minimal-revisioned.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: minimal
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 17:23:44 UTC 2024
    - 104 bytes
    - Viewed (0)
  5. tests/integration/pilot/multi_version_revision_test.go

    					revision:  rev,
    					namespace: ns,
    				})
    			}
    
    			// create an echo instance in each revisioned namespace, all these echo
    			// instances will be injected with proxies from their respective versions
    			builder := deployment.New(t)
    
    			for _, ns := range revisionedNamespaces {
    				builder = builder.WithConfig(echo.Config{
    					Service:   fmt.Sprintf("revision-%s", ns.revision),
    					Namespace: ns.namespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. tests/integration/pilot/cross_revision_test.go

    			for _, rev := range extraRevs {
    				namespaces = append(namespaces, revisionedNamespace{
    					revision: rev,
    					namespace: namespace.NewOrFail(t, t, namespace.Config{
    						Prefix:   fmt.Sprintf("revision-%s", rev),
    						Inject:   true,
    						Revision: rev,
    					}),
    				})
    			}
    			// Allow all namespaces so we do not hit passthrough cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. releasenotes/notes/remote-cluster-respect-revision.yaml

    kind: bug-fix
    area: installation
    
    # issue is a list of GitHub issues resolved in this note.
    issue:
      - 47552
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:40 UTC 2024
    - 261 bytes
    - Viewed (0)
  8. pkg/controller/history/controller_history_test.go

    				for i := range test.existing {
    					if test.revision.Name == test.existing[i].revision.Name &&
    						test.revision.Namespace == test.existing[i].revision.Namespace {
    						found = test.existing[i].revision
    						break
    					}
    				}
    				if found == nil {
    					return true, nil, errors.NewNotFound(apps.Resource("controllerrevisions"), test.revision.Name)
    				}
    				b, err := strategicpatch.StrategicMergePatch(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top