Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 431 for rev (0.14 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/autoscaling_v2.golden.yaml

    apiVersion: autoscaling/v2
    kind: HorizontalPodAutoscaler
    metadata:
      labels:
        app: istio-ingressgateway
        install.operator.istio.io/owning-resource: unknown
        istio: ingressgateway
        istio.io/rev: default
        operator.istio.io/component: IngressGateways
        release: istio
      name: istio-ingressgateway
      namespace: istio-system
    spec:
      maxReplicas: 5
      metrics:
      - resource:
          name: cpu
          target:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_values.golden.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      labels:
        app: istiod
        install.operator.istio.io/owning-resource: unknown
        istio: pilot
        istio.io/rev: default
        operator.istio.io/component: Pilot
        release: istio
      name: istiod
      namespace: istio-control
    spec:
      selector:
        matchLabels:
          istio: pilot
      strategy:
        rollingUpdate:
          maxSurge: 100%
          maxUnavailable: 30%
      template:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/module/pseudo.go

    // and revision identifier (usually a 12-byte commit hash prefix).
    func PseudoVersion(major, older string, t time.Time, rev string) string {
    	if major == "" {
    		major = "v0"
    	}
    	segment := fmt.Sprintf("%s-%s", t.UTC().Format(PseudoVersionTimestampFormat), rev)
    	build := semver.Build(older)
    	older = semver.Canonical(older)
    	if older == "" {
    		return major + ".0.0-" + segment // form (1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  4. tests/integration/operator/operator_dumper.go

    	"istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    // operatorDumper dumps the logs of in-cluster operator at suite completion
    type operatorDumper struct {
    	ns  string
    	rev string
    }
    
    func (d *operatorDumper) Dump(ctx resource.Context) {
    	scopes.Framework.Errorf("=== Dumping Istio Deployment State for %v...", ctx.ID())
    	ns := d.ns
    	if len(ns) < 1 {
    		ns = "istio-operator"
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/proxy.go

    	}
    	if info.Version != rev && rev == module.CanonicalVersion(rev) && module.Check(p.path, rev) == nil {
    		// If we request a correct, appropriate version for the module path, the
    		// proxy must return either exactly that version or an error — not some
    		// arbitrary other version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 15:21:05 UTC 2023
    - 13K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/output/helm_values_enablement.golden.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      labels:
        app: istio-egressgateway
        install.operator.istio.io/owning-resource: unknown
        istio: egressgateway
        istio.io/rev: default
        operator.istio.io/component: EgressGateways
        release: istio
      name: istio-egressgateway
      namespace: istio-system
    spec:
      selector:
        matchLabels:
          app: istio-egressgateway
          istio: egressgateway
      strategy:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. tests/integration/pilot/multi_version_revision_test.go

    				installRevisionOrFail(t, v, configs)
    
    				// create a namespace pointed to the revisioned control plane we just installed
    				rev := strings.ReplaceAll(v, ".", "-")
    				ns, err := namespace.New(t, namespace.Config{
    					Prefix:   fmt.Sprintf("revision-%s", rev),
    					Inject:   true,
    					Revision: rev,
    				})
    				if err != nil {
    					t.Fatalf("failed to created revisioned namespace: %v", err)
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. pkg/revisions/tag_watcher.go

    		func(o *admissionregistrationv1.MutatingWebhookConfiguration) []string {
    			rev := o.GetLabels()[label.IoIstioRev.Name]
    			if rev == "" {
    				return nil
    			}
    			return []string{rev}
    		}, controllers.ObjectHandler(p.queue.AddObject))
    	return p
    }
    
    func (p *tagWatcher) Run(stopCh <-chan struct{}) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. pkg/test/framework/resource/settings.go

    	// This flag should be passed in as comma-separated values, such as "rev-a=1.7.3,rev-b=1.8.2,rev-c=1.9.0", and the test framework will
    	// spin up pods pointing to these revisions for each echo instance and skip tests accordingly.
    	// To configure it so that an Istio revision is on the latest version simply list the revision name without the version (i.e. "rev-a,rev-b")
    	// If using this flag with --istio.test.revision, this flag will take precedence.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/IvyUtil.java

            return GUtil.elvis(value, "");
        }
    
        public static ModuleRevisionId createModuleRevisionId(String org, String name, String branch, String rev, Map<String, String> extraAttributes) {
            return createModuleRevisionId(org, name, branch, rev, extraAttributes, true);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top