Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for golang_version (0.44 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. Makefile

    GOARCH := $(shell go env GOARCH)
    GOOS := $(shell go env GOOS)
    
    VERSION ?= $(shell git describe --tags)
    REPO ?= quay.io/minio
    TAG ?= $(REPO)/minio:$(VERSION)
    
    GOLANGCI_DIR = .bin/golangci/$(GOLANGCI_VERSION)
    GOLANGCI = $(GOLANGCI_DIR)/golangci-lint
    
    all: build
    
    checks: ## check dependencies
    	@echo "Checking dependencies"
    	@(env bash $(PWD)/buildscripts/checkdeps.sh)
    
    help: ## print this help
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top