Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 431 for rev (0.02 sec)

  1. hack/pin-dependency.sh

    if meta=$(go mod download -json "${replacement}@${sha}"); then
        rev=$(echo "${meta}" | jq -r ".Version")
    else
        error=$(echo "${meta}" | jq -r ".Error")
        echo "Download failed: ${error}" >&2
        exit 1
    fi
    echo "Resolved to ${replacement}@${rev}"
    
    # Add the require directive
    echo "Running: go mod edit -require ${dep}@${rev}"
    go mod edit -require "${dep}@${rev}"
    
    # Add the replace directive
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. pkg/registry/apps/controllerrevision/storage/storage_test.go

    	addLabel := func(obj runtime.Object) runtime.Object {
    		rev := obj.(*apps.ControllerRevision)
    		update := &apps.ControllerRevision{
    			ObjectMeta: rev.ObjectMeta,
    			Data:       rev.Data,
    			Revision:   rev.Revision,
    		}
    		update.ObjectMeta.Labels = map[string]string{"foo": "bar"}
    		return update
    	}
    
    	updateData := func(obj runtime.Object) runtime.Object {
    		rev := obj.(*apps.ControllerRevision)
    		modified := newObject()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 5.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/cache.go

    // GoMod is like Lookup(ctx, path).GoMod(rev) but avoids the
    // repository path resolution in Lookup if the result is
    // already cached on local disk.
    func GoMod(ctx context.Context, path, rev string) ([]byte, error) {
    	// Convert commit hash to pseudo-version
    	// to increase cache hit rate.
    	if !gover.ModIsValid(path, rev) {
    		if _, info, err := readDiskStat(ctx, path, rev); err == nil {
    			rev = info.Version
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/externalcontrolplane-missing-urls-custom-ns.yaml

    webhooks:
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        url:
      failurePolicy: Fail
      name: rev.namespace.sidecar-injector.istio.io
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        url: https://test.com/inject/cluster/your-cluster-name/net/network1
      failurePolicy: Fail
      name: rev.object.sidecar-injector.istio.io
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 08 02:20:29 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/upgrade/1.11.0-beta.1-cni-install.yaml.tar

    apiVersion: v1 kind: ServiceAccount metadata: name: istio-cni namespace: kube-system labels: app: istio-cni release: istio istio.io/rev: default install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Cni" --- apiVersion: rbac.authorization.k8s.io/v1 kind: ClusterRole metadata: name: istio-cni labels: app: istio-cni release: istio istio.io/rev: default install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Cni" rules: - apiGroups: [""] resources:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 29 18:43:32 UTC 2021
    - 10K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishChangingUrlIntegTest.groovy

        String moduleName = "publish"
        String org = "org.gradle"
        String rev = "2"
    
        IvyFileRepository repo1 = new IvyFileRepository(file("repo1"))
        IvyModule repo1Module = repo1.module(org, moduleName, rev)
    
        IvyFileRepository repo2 = new IvyFileRepository(file("repo2"))
        IvyModule repo2Module = repo2.module(org, moduleName, rev)
    
        // This documents observable behavior from the Nexus plugin
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. tests/integration/pilot/cross_revision_test.go

    			namespaces := make([]revisionedNamespace, 0, len(extraRevs))
    			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)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepositoryMetaDataProvider.java

         * is used in preference to the {@code rev} attribute. When disabled (the default), the {@code rev} attribute is always used.
         */
        boolean isDynamicMode();
    
        /**
         * Specifies whether dynamic resolve mode should be used for Ivy modules. When enabled, the {@code revConstraint} attribute for each dependency declaration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  9. pkg/test/framework/resource/version.go

    	rvPairs := strings.Split(value, ",")
    	for _, rv := range rvPairs {
    		s := strings.Split(rv, "=")
    		rev := s[0]
    		if len(s) == 1 {
    			m[rev] = ""
    		} else if len(s) == 2 {
    			ver := s[1]
    			v, err := NewIstioVersion(ver)
    			if err != nil {
    				return fmt.Errorf("could not parse %s as version: %w",
    					ver, err)
    			}
    			m[rev] = v
    		} else {
    			return fmt.Errorf("invalid revision<->version pairing specified: %q", rv)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/templates/validatingwebhookconfiguration.yaml

      labels:
        app: istiod
        release: {{ .Release.Name }}
        istio: istiod
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
    webhooks:
      # Webhook handling per-revision validation. Mostly here so we can determine whether webhooks
      # are rejecting invalid configs on a per-revision basis.
      - name: rev.validation.istio.io
        clientConfig:
          # Should change from base but cannot for API compat
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top