Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 646 for revision2 (0.32 sec)

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

    	// A full round of Raft consensus adds a new item to the Raft log, some of which is surfaced by etcd as a
    	// higher store revision in the response header. Kubernetes exposes this header revision in e.g. List calls,
    	// so it is ultimately client-facing. By default, all the requests that our *etcd3.store{} issues are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 20:08:59 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  2. pkg/version/cobra_test.go

    var meshInfoSingleVersion = MeshInfo{
    	{
    		Component: "Pilot",
    		Revision:  "default",
    		Info:      BuildInfo{"1.2.0", "gitSHA123", "go1.10", "Clean", "tag"},
    	},
    	{
    		Component: "Injector",
    		Revision:  "default",
    		Info:      BuildInfo{"1.2.0", "gitSHAabc", "go1.10.1", "Modified", "tag"},
    	},
    	{
    		Component: "Citadel",
    		Revision:  "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. releasenotes/notes/manifest-base-cleanup.yaml

          In the old chart, this was `-{{ .Values.global.istioNamespace }}`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 04:26:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/mesh.go

    		s.environment.NetworksWatcher = mesh.NewFixedNetworksWatcher(nil)
    	}
    }
    
    func getMeshConfigMapName(revision string) string {
    	name := defaultMeshConfigMapName
    	if revision == "" || revision == "default" {
    		return name
    	}
    	return name + "-" + revision
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. samples/multicluster/gen-eastwest-gateway.sh

        ;;
        --network)
          NETWORK=$2
          shift 2
        ;;
        --mesh)
          # No longer does anything, but keep it around to avoid breaking users
          shift 2
        ;;
        --revision)
          REVISION=$2
          shift 2
        ;;
        -*)
          echo "Error: Unsupported flag $1" >&2
          exit 1
          ;;
      esac
    done
    
    
    # single-cluster installations may need this gateway to allow VMs to get discovery
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 04 02:52:25 UTC 2021
    - 3K bytes
    - Viewed (0)
  6. manifests/charts/istio-control/istio-discovery/templates/configmap-jwks.yaml

    {{- if .Values.pilot.jwksResolverExtraRootCA }}
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: pilot-jwks-extra-cacerts{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
      namespace: {{ .Release.Namespace }}
      labels:
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 557 bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/gitrepovolumesource.go

    	return b
    }
    
    // WithRevision sets the Revision field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Revision field is set to the value of the last call.
    func (b *GitRepoVolumeSourceApplyConfiguration) WithRevision(value string) *GitRepoVolumeSourceApplyConfiguration {
    	b.Revision = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

            patternLayout {
                artifact("3rd-party-artifacts/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]")
                artifact("company-artifacts/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]")
                ivy("ivy-files/[organisation]/[module]/[revision]/ivy.xml")
            }
        }
    }
    // end::ivy-repo-with-custom-pattern[]
    
    // tag::maven-repo-with-metadata-sources[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/version_buildvcs_git.txt

    stdout '^\tbuild\tvcs=git$'
    stdout '^\tbuild\tvcs.modified=true$'
    ! stdout vcs.revision
    ! stdout vcs.time
    rm $GOBIN/a$GOEXE
    
    # Revision and commit time are tagged for repositories with commits.
    exec git add -A
    exec git commit -m 'initial commit'
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs.revision='
    stdout '^\tbuild\tvcs.time='
    stdout '^\tbuild\tvcs.modified=false$'
    rm $GOBIN/a$GOEXE
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. hack/apidiff.sh

    # issues.
    
    usage () {
      cat <<EOF >&2
    Usage: $0 [-r <revision>] [directory ...]"
       -t <revision>: Report changes in code up to and including this revision.
                      Default is the current working tree instead of a revision.
       -r <revision>: Report change in code added since this revision. Default is
                      the common base of origin/master and HEAD.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top