Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 431 for rev (0.04 sec)

  1. pkg/config/analysis/analyzers/testdata/sidecar-default-selector.yaml

      name: ns-not-ambient
      labels:
        istio.io/dataplane-mode: ambient
        istio-injection: enabled
    ---
    apiVersion: v1
    kind: Namespace
    metadata:
      name: ns-not-ambient-rev
      labels:
        istio.io/dataplane-mode: ambient
        istio.io/rev: canary
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: namespace-not-ambient
      namespace: ns-not-ambient
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Dec 23 13:38:38 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. istioctl/pkg/tag/revision.go

    	}
    	for _, hook := range webhooks {
    		rev := renderWithDefault(hook.GetLabels()[label.IoIstioRev.Name], DefaultRevisionName)
    		tagLabel := hook.GetLabels()[IstioTagLabel]
    		ri, revPresent := revisions[rev]
    		if revPresent {
    			if tagLabel != "" {
    				ri.Webhooks = append(ri.Webhooks, &MutatingWebhookConfigInfo{
    					Name:     hook.Name,
    					Revision: rev,
    					Tag:      tagLabel,
    				})
    			}
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 28 13:16:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/toolchain.go

    }
    
    func (r *toolchainRepo) Stat(ctx context.Context, rev string) (*RevInfo, error) {
    	// Convert rev to DL version and stat that to make sure it exists.
    	// In theory the go@ versions should be like 1.21.0
    	// and the toolchain@ versions should be like go1.21.0
    	// but people will type the wrong one, and so we accept
    	// both and silently correct it to the standard form.
    	prefix := ""
    	v := rev
    	v = strings.TrimPrefix(v, "go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 13 16:44:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java

            String rev = reduce(buildProperties.getProperty("buildNumber"));
            String distributionName = reduce(buildProperties.getProperty("distributionName"));
    
            String msg = distributionName + " ";
            msg += (version != null ? version : "<version unknown>");
            if (rev != null || timestamp != null) {
                msg += " (";
                msg += (rev != null ? rev : "");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		if err != nil {
    			return nil, storage.NewInternalError(err.Error())
    		}
    		state.rev = getResp.Kvs[0].ModRevision
    		state.meta.ResourceVersion = uint64(state.rev)
    		state.data = data
    		state.stale = stale
    		if err := decode(s.codec, s.versioner, state.data, state.obj, state.rev); err != nil {
    			recordDecodeError(s.groupResourceString, key)
    			return nil, err
    		}
    	}
    	return state, nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/IvyPluginPublishingPlugin.java

                            name.setValue(module.get());
                            dependency.getAttributes().setNamedItem(name);
                            Attr rev = document.createAttribute("rev");
                            rev.setValue(revision.get());
                            dependency.getAttributes().setNamedItem(rev);
                        }
                    });
                }
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. manifests/charts/default/templates/validatingwebhook.yaml

    apiVersion: admissionregistration.k8s.io/v1
    kind: ValidatingWebhookConfiguration
    metadata:
      name: istiod-default-validator
      labels:
        app: istiod
        istio: istiod
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        istio.io/tag: "default"
        # Required to make sure this resource is removed
        # when purging Istio resources
        operator.istio.io/component: Pilot
    webhooks:
      - name: validation.istio.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. pilot/pkg/config/memory/monitor_test.go

    	})
    
    	stop := make(chan struct{})
    	go controller.Run(stop)
    
    	// Test Add Event
    	testEvent = model.EventAdd
    	var rev string
    	var err error
    	if rev, err = controller.Create(testConfig); err != nil {
    		t.Error(err)
    		return
    	}
    
    	lock.Lock()
    	testConfig.ResourceVersion = rev
    	lock.Unlock()
    
    	<-done
    
    	// Test Update Event
    	testEvent = model.EventUpdate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. manifests/charts/istio-cni/templates/clusterrolebinding.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: {{ template "name" . }}
      labels:
        app: {{ template "name" . }}
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Cni"
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    	errChan           chan error
    }
    
    // Watch watches on a key and returns a watch.Interface that transfers relevant notifications.
    // If rev is zero, it will return the existing object(s) and then start watching from
    // the maximum revision+1 from returned objects.
    // If rev is non-zero, it will watch events happened after given revision.
    // If opts.Recursive is false, it watches on given key.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
Back to top