Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 901 for revision2 (0.16 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

            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.4K bytes
    - Viewed (0)
  4. operator/cmd/mesh/verify.go

      istioctl verify-install --revision <canary>
    
      # Verify the installation of specific revision
      istioctl verify-install -r 1-9-0`,
    		Args: func(cmd *cobra.Command, args []string) error {
    			if len(filenames) > 0 && opts.Revision != "" {
    				cmd.Println(cmd.UsageString())
    				return fmt.Errorf("supply either a file or revision, but not both")
    			}
    			return nil
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 16:26:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. samples/ambient-argo/istio/tags.yaml

        repoURL: '{repo-placeholder}'
        targetRevision: HEAD
        helm:
          valuesObject:
            base:
              tags:
                default:
                  revision: "1-18-5"
                stable:
                  revision: "1-18-5"
                rapid:
                  revision: "1-19-3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 754 bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/PluginManagementDslSpec.groovy

                            url "http://repo.internal.net/ivy"
                            patternLayout {
                                ivy '[organisation]/[module]/[revision]/[module]-[revision].ivy'
                                artifact '[organisation]/[module]/[revision]/[artifact]-[revision](-[classifier]).[ext]'
                                m2compatible true
                            }
                        }
                        ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. pkg/volume/git_repo/git_repo.go

    	if err := validateNonFlagArgument(src.Repository, "repository"); err != nil {
    		return err
    	}
    	if err := validateNonFlagArgument(src.Revision, "revision"); err != nil {
    		return err
    	}
    	if err := validateNonFlagArgument(src.Directory, "directory"); err != nil {
    		return err
    	}
    	if (src.Revision != "") && (src.Directory != "") {
    		cleanedDir := filepath.Clean(src.Directory)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. istioctl/pkg/kubeinject/kubeinject.go

    }
    
    func getMeshConfigFromConfigMap(ctx cli.Context, command, revision string) (*meshconfig.MeshConfig, error) {
    	client, err := ctx.CLIClient()
    	if err != nil {
    		return nil, err
    	}
    
    	if meshConfigMapName == defaultMeshConfigMapName && revision != "" {
    		meshConfigMapName = fmt.Sprintf("%s-%s", defaultMeshConfigMapName, revision)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. manifests/charts/default/templates/validatingwebhook.yaml

          {{- if .Values.base.validationURL }}
          url: {{ .Values.base.validationURL }}
          {{- else }}
          service:
            name: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}
            namespace: {{ .Values.global.istioNamespace }}
            path: "/validate"
          {{- end }}
        rules:
          - operations:
              - CREATE
              - UPDATE
            apiGroups:
              - security.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)
  10. samples/ambient-argo/tag-chart/templates/validatingwebhook.yaml

        clientConfig:
          {{- if $tag.validationURL }}
          url: {{ $tag.validationURL }}
          {{- else }}
          service:
            name: istiod{{- if not (eq $tag.revision "") }}-{{ $tag.revision }}{{- end }}
            namespace: {{ .Values.global.istioNamespace }}
            path: "/validate"
          {{- end }}
        rules:
          - operations:
              - CREATE
              - UPDATE
            apiGroups:
              - security.istio.io
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top