Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 431 for rev (0.02 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/event.go

    	ret := &event{
    		key:       string(e.Kv.Key),
    		value:     e.Kv.Value,
    		rev:       e.Kv.ModRevision,
    		isDeleted: e.Type == clientv3.EventTypeDelete,
    		isCreated: e.IsCreate(),
    	}
    	if e.PrevKv != nil {
    		ret.prevValue = e.PrevKv.Value
    	}
    	return ret, nil
    }
    
    func progressNotifyEvent(rev int64) *event {
    	return &event{
    		rev:              rev,
    		isProgressNotify: true,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. istioctl/pkg/checkinject/testdata/check-inject/default-injector.yaml

            name: istiod
            namespace: istio-system
            path: /inject
            port: 443
        failurePolicy: Fail
        matchPolicy: Equivalent
        name: rev.namespace.sidecar-injector.istio.io
        namespaceSelector:
          matchExpressions:
            - key: istio.io/rev
              operator: In
              values:
                - default
            - key: istio-injection
              operator: DoesNotExist
        objectSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_tag.yaml

      matchPolicy: Equivalent
      name: rev.object.sidecar-injector.istio.io
      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: DoesNotExist
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: sidecar.istio.io/inject
          operator: NotIn
          values:
          - "false"
        - key: istio.io/rev
          operator: In
          values:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 17:23:44 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. pkg/test/framework/components/namespace/namespace_test.go

    				Prefix:   "default",
    				Revision: "istio.io/rev=XXX",
    			},
    			wantRevision: "istio.io/rev=XXX",
    		},
    		{
    			name:     "NoOverwriteNonEmptyInput",
    			revision: "BadRevision",
    			cfg: Config{
    				Prefix:   "default",
    				Revision: "istio.io/rev=XXX",
    			},
    			wantRevision: "istio.io/rev=XXX",
    		},
    		{
    			name:     "OverwriteNonEmptyInput",
    			revision: "istio.io/rev=canary",
    			cfg: Config{
    				Prefix:   "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/testdata/multiple-istio-versions.yaml

        app: foo
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: foo-bar-rev-a
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: foo
          version: bar
      template:
        metadata:
          labels:
            app: foo
            version: bar
            test.istio.io/class: standard
            istio.io/rev: rev-a
          annotations:
            prometheus.io/scrape: "true"
            prometheus.io/port: "15014"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. pkg/config/analysis/analyzers/testdata/injection.yaml

    # Namespace is explicitly enabled in the new style
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio.io/rev: canary
      name: canary-test
    ---
    # Namespace is explicitly enabled in the new style, but refers to a non-existent control plane
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio.io/rev: pidgeon
      name: pidgeon-test
    ---
    # Namespace has both old and new labels
    apiVersion: v1
    kind: Namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 14:06:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/default_installation_failed.yaml

          port: 443
      failurePolicy: Fail
      matchPolicy: Equivalent
      name: rev.namespace.sidecar-injector.istio.io
      namespaceSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: In
          values:
          - default
        - key: istio-injection
          operator: DoesNotExist
      objectSelector:
        matchExpressions:
        - key: istio.io/rev
          operator: NotIn
          values:
          - canary
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/codehost.go

    // used in pseudo-versions (12 hex digits).
    func ShortenSHA1(rev string) string {
    	if AllHex(rev) && len(rev) == 40 {
    		return rev[:12]
    	}
    	return rev
    }
    
    // WorkDir returns the name of the cached work directory to use for the
    // given repository type and name.
    func WorkDir(ctx context.Context, typ, name string) (dir, lockfile string, err error) {
    	if cfg.GOMODCACHE == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/compact.go

    	//   every 5 minutes. This is very unlikely affecting or affected w.r.t. server load.
    
    	var compactTime int64
    	var rev int64
    	var err error
    	for {
    		select {
    		case <-time.After(interval):
    		case <-ctx.Done():
    			return
    		}
    
    		compactTime, rev, err = compact(ctx, client, compactTime, rev)
    		if err != nil {
    			klog.Errorf("etcd: endpoint (%v) compact failed: %v", client.Endpoints(), err)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 17 02:54:36 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/coderepo.go

    			return r
    		}
    		if semver.Build(rev) == "+incompatible" {
    			rev = rev[:len(rev)-len("+incompatible")]
    		}
    		if r.codeDir == "" {
    			return rev
    		}
    		return r.codeDir + "/" + rev
    	}
    	return rev
    }
    
    func (r *codeRepo) versionToRev(version string) (rev string, err error) {
    	if !semver.IsValid(version) {
    		return "", &module.ModuleError{
    			Path: r.modPath,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top