Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for golang_version (0.2 sec)

  1. cluster/images/etcd-version-monitor/Makefile

    # limitations under the License.
    
    # Build the etcd-version-monitor image
    #
    # Usage:
    # 	[GOLANG_VERSION=1.19.9] [REGISTRY=staging-k8s.gcr.io] [TAG=test] make (build|push)
    # TODO(shyamjvs): Support architectures other than amd64 if needed.
    ARCH:=amd64
    GOLANG_VERSION?=1.19.9
    REGISTRY?=staging-k8s.gcr.io
    TAG?=0.1.3
    IMAGE:=$(REGISTRY)/etcd-version-monitor:$(TAG)
    CURRENT_DIR:=$(pwd)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 07:06:46 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. pkg/version/cobra_test.go

    		},
    		{ // case 2 client-side only, yaml output
    			args: strings.Split("version --remote=false -o yaml", " "),
    			expectedRegexp: regexp.MustCompile("clientVersion:\n" +
    				"  golang_version: go1.([0-9+?(\\.)?]+).*\n" +
    				"  revision: unknown\n" +
    				"  status: unknown\n" +
    				"  tag: unknown\n" +
    				"  version: unknown\n\n"),
    		},
    		{ // case 3 client-side only, json output
    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. cluster/images/etcd/Makefile

    endif
    
    # This option is for running docker manifest command
    export DOCKER_CLI_EXPERIMENTAL := enabled
    # golang version should match the golang version of the official build from https://github.com/etcd-io/etcd/releases.
    GOLANG_VERSION := 1.21.10
    GOARM?=7
    TEMP_DIR:=$(shell mktemp -d)
    
    DOCKERFILE.linux = Dockerfile
    DOCKERFILE.windows = Dockerfile.windows
    DOCKERFILE := ${DOCKERFILE.${OS}}
    
    ifeq ($(ARCH),amd64)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. pkg/version/version.go

    )
    
    // BuildInfo describes version information about the binary build.
    type BuildInfo struct {
    	Version       string `json:"version"`
    	GitRevision   string `json:"revision"`
    	GolangVersion string `json:"golang_version"`
    	BuildStatus   string `json:"status"`
    	GitTag        string `json:"tag"`
    }
    
    // ServerInfo contains the version for a single control plane component
    type ServerInfo struct {
    	Component string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. build/dependencies.yaml

      - name: "golang: etcd release version"
        version: 1.21.10 # https://github.com/etcd-io/etcd/blob/main/CHANGELOG/CHANGELOG-3.5.md
        refPaths:
        - path: cluster/images/etcd/Makefile
          match: 'GOLANG_VERSION := \d+.\d+(alpha|beta|rc)?\.?(\d+)?'
    
      # Golang
      - name: "golang: upstream version"
        version: 1.22.4
        refPaths:
        - path: .go-version
        - path: build/build-image/cross/VERSION
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  6. pkg/version/version_test.go

    	}{
    		{
    			"Correct input 1",
    			`Version: 1.0.0
    GitRevision: 3a136c90ec5e308f236e0d7ebb5c4c5e405217f4
    GolangVersion: go1.10.1
    BuildStatus: Clean
    GitTag: tag
    `,
    			false,
    			BuildInfo{
    				Version:       "1.0.0",
    				GitRevision:   "3a136c90ec5e308f236e0d7ebb5c4c5e405217f4",
    				GolangVersion: "go1.10.1",
    				BuildStatus:   "Clean",
    				GitTag:        "tag",
    			},
    		},
    		{
    			"Legacy input 1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. pkg/ctrlz/topics/assets/templates/version.html

                <td>{{.Version}}</td>
            </tr>
    
            <tr>
                <td>Git Revision</td>
                <td>{{.GitRevision}}</td>
            </tr>
    
            <tr>
                <td>GolangVersion</td>
                <td>{{.GolangVersion}}</td>
            </tr>
    
            <tr>
                <td>Build Status</td>
                <td>{{.BuildStatus}}</td>
            </tr>
        </tbody>
    </table>
    
    {{ template "last-refresh" .}}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 673 bytes
    - Viewed (0)
  8. pkg/version/version_linux_test.go

    	cases := []struct {
    		name    string
    		in      BuildInfo
    		wantTag string
    	}{
    		{
    			"record",
    			BuildInfo{
    				Version:       "VER",
    				GitRevision:   "GITREV",
    				GolangVersion: "GOLANGVER",
    				BuildStatus:   "STATUS",
    				GitTag:        "1.0.5-test",
    			},
    			"1.0.5-test",
    		},
    	}
    
    	for _, v := range cases {
    		t.Run(v.name, func(tt *testing.T) {
    			mt := monitortest.New(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 07 23:36:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. tests/binary/binaries_test.go

    		}
    
    		verInfo := resp.ClientVersion
    
    		validateField(t, "Version", verInfo.Version)
    		validateField(t, "GitRevision", verInfo.GitRevision)
    		validateField(t, "GolangVersion", verInfo.GolangVersion)
    		validateField(t, "BuildStatus", verInfo.BuildStatus)
    		validateField(t, "GitTag", verInfo.GitTag)
    	})
    }
    
    var (
    	nonGoBinaries      = sets.New("ztunnel", "envoy")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. configure.py

            clang_version = retrieve_clang_version(clang_compiler_path)
            disable_clang_offsetof_extension(clang_version)
        if is_windows():
          environ_cp['TF_NEED_CLANG'] = str(choose_compiler_Win(environ_cp))
          if environ_cp.get('TF_NEED_CLANG') == '1':
            clang_compiler_path = set_clang_compiler_path_win(environ_cp)
            clang_version = retrieve_clang_version(clang_compiler_path)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top