Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 78 for rev (0.03 sec)

  1. tests/integration/helm/upgrade/util.go

    		// change the old namespace that was pointing to the old prod (1-15-0) to point to the
    		// 'latest' revision by setting the `istio.io/rev=prod` label on the namespace
    		err := oldNs.SetLabel(label.IoIstioRev.Name, prodTag)
    		if err != nil {
    			t.Fatal("could not remove istio.io/rev from old namespace")
    		}
    
    		err = oldClient.Restart()
    		if err != nil {
    			t.Fatal("could not restart old client")
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/client_test.go

    	}
    
    	// Populate the client with some ServiceEntrys such that 1/3 are in the default revision and
    	// 2/3 are in different revisions.
    	labels := []map[string]string{
    		nil,
    		{"istio.io/rev": "canary"},
    		{"istio.io/rev": "prod"},
    	}
    	var expectedNoRevision []config.Config
    	var expectedCanary []config.Config
    	var expectedProd []config.Config
    	for i := 0; i < 9; i++ {
    		selectedLabels := labels[i%len(labels)]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. operator/pkg/helmreconciler/reconciler.go

    		return false, nil
    	}
    	rev := iop.Spec.Revision
    	if rev == "" {
    		rev = revtag.DefaultRevisionName
    	}
    	autoInjectNamespaces := validateEnableNamespacesByDefault(iop)
    
    	ignorePruneLabel := map[string]string{
    		OwningResourceNotPruned: "true",
    	}
    
    	o := &revtag.GenerateOptions{
    		Tag:                  revtag.DefaultRevisionName,
    		Revision:             rev,
    		Overwrite:            true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. src/cmd/go/internal/vcs/vcs.go

    		return Status{}, err
    	}
    
    	// Successful execution without output indicates an empty repo (no commits).
    	var rev string
    	var commitTime time.Time
    	if len(out) > 0 {
    		// Strip trailing timezone offset.
    		if i := bytes.IndexByte(out, ' '); i > 0 {
    			out = out[:i]
    		}
    		rev, commitTime, err = parseRevTime(out)
    		if err != nil {
    			return Status{}, err
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  5. test/codegen/memcombine.go

    	// arm64:`MOVD\t\(R[0-9]+\)`,`REV`,-`ORR`,-`REVW`,-`REV16W`,-`MOV[BHW]`
    	// ppc64le:`MOVDBR\t\(R[0-9]+\)`,-`MOV[BHW]Z`
    	// ppc64:`MOVD`,-`MOV[WHB]Z`
    	return uint64(s[0])<<56 | uint64(s[1])<<48 | uint64(s[2])<<40 | uint64(s[3])<<32 | uint64(s[4])<<24 | uint64(s[5])<<16 | uint64(s[6])<<8 | uint64(s[7])
    }
    
    func load_be_byte8_uint64_inv(s []byte) uint64 {
    	// arm64:`MOVD\t\(R[0-9]+\)`,`REV`,-`ORR`,-`REVW`,-`REV16W`,-`MOV[BHW]`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. operator/pkg/verifier/verifier.go

    	if err != nil {
    		return "", fmt.Errorf("failed to fetch istiod pod, error: %v", err)
    	}
    	for _, pod := range pods.Items {
    		rev := pod.ObjectMeta.GetLabels()[label.IoIstioRev.Name]
    		revCount++
    		if rev == "default" {
    			continue
    		}
    		revision = rev
    	}
    	if revision == "" {
    		revs = "default"
    	} else {
    		revs = revision
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

    spec:
      replicas: 3
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
          version: v1
      strategy: {}
      template:
        metadata:
          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. operator/cmd/mesh/manifest-generate_test.go

    	// Setup various labels to be tested
    	empty := klabels.Set{}
    	revLabel := klabels.Set{"istio.io/rev": "canary"}
    	legacyAndRevLabel := klabels.Set{"istio-injection": "enabled", "istio.io/rev": "canary"}
    	legacyDisabledAndRevLabel := klabels.Set{"istio-injection": "disabled", "istio.io/rev": "canary"}
    	legacyLabel := klabels.Set{"istio-injection": "enabled"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/list.yaml.injected

        selector:
          matchLabels:
            app: hello
            tier: backend
            track: stable
            version: v1
        strategy: {}
        template:
          metadata:
            annotations:
              istio.io/rev: default
              kubectl.kubernetes.io/default-container: hello
              kubectl.kubernetes.io/default-logs-container: hello
              prometheus.io/path: /stats/prometheus
              prometheus.io/port: "15020"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. pilot/pkg/leaderelection/leaderelection_test.go

    }
    
    // TestPrioritizationCycles
    func TestPrioritizationCycles(t *testing.T) {
    	cases := []instance{}
    	for _, rev := range []string{"", "default", "not-default"} {
    		for _, loc := range []bool{false, true} {
    			for _, comp := range []string{"location", "simple"} {
    				cases = append(cases, instance{
    					revision: rev,
    					remote:   loc,
    					comp:     comp,
    				})
    			}
    		}
    	}
    
    	for _, start := range cases {
    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