Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,001 for pgversion (0.09 sec)

  1. cluster/images/etcd/migrate/testdata/datadir_with_version/version.txt

    Joe Betz <******@****.***> 1520669023 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 10 16:19:30 UTC 2018
    - 13 bytes
    - Viewed (0)
  2. pkg/version/version.go

    	buildArch        = "unknown"
    )
    
    // 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 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. .go-version

    cpanato <******@****.***> 1717690383 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 6 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/version/version.go

    func (v *Version) PreRelease() string {
    	return v.preRelease
    }
    
    // Components returns the version number components
    func (v *Version) Components() []uint {
    	return v.components
    }
    
    // WithMajor returns copy of the version object with requested major number
    func (v *Version) WithMajor(major uint) *Version {
    	result := *v
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/version.txt

    go version
    stdout '^go version'
    
    # Flags without files, or paths to missing files, should error.
    ! go version missing.exe
    ! go version -m
    stderr 'with arguments'
    ! go version -v
    stderr 'with arguments'
    
    # Check that 'go version' succeed even when it does not contain Go build info.
    # It should print an error if the file has a known Go binary extension.
    #
    go version empty.txt
    ! stdout .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 14:52:04 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/internal/trace/version/version.go

    // license that can be found in the LICENSE file.
    
    package version
    
    import (
    	"fmt"
    	"io"
    
    	"internal/trace/event"
    	"internal/trace/event/go122"
    )
    
    // Version represents the version of a trace file.
    type Version uint32
    
    const (
    	Go111   Version = 11
    	Go119   Version = 19
    	Go121   Version = 21
    	Go122   Version = 22
    	Go123   Version = 23
    	Current         = Go123
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. pkg/kube/version.go

    // limitations under the License.
    
    package kube
    
    import (
    	"fmt"
    	"strconv"
    
    	"k8s.io/apimachinery/pkg/util/version"
    	kubeVersion "k8s.io/apimachinery/pkg/version"
    )
    
    // IsAtLeastVersion returns true if the client is at least the specified version.
    // For example, on Kubernetes v1.15.2, IsAtLeastVersion(13) == true, IsAtLeastVersion(17) == false
    func IsAtLeastVersion(client Client, minorVersion uint) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 23:16:29 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. pkg/config/resource/version.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package resource
    
    // Version is the version identifier of a resource.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 676 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/Version.java

    /**
     * A parsed version.
     *
     * This should be synced with {@link VersionNumber} and {@link org.gradle.util.GradleVersion} at some point.
     */
    public interface Version {
        /**
         * Returns the original {@link String} representation of the version.
         */
        String getSource();
    
        /**
         * Returns all the parts of this version. e.g. 1.2.3 returns [1,2,3] or 1.2-beta4 returns [1,2,beta,4].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. hack/lib/version.sh

    #    KUBE_GIT_VERSION - "vX.Y" used to indicate the last release version.
    #    KUBE_GIT_MAJOR - The major part of the version
    #    KUBE_GIT_MINOR - The minor component of the version
    
    # Grovels through git to set a set of env variables.
    #
    # If KUBE_GIT_VERSION_FILE, this function will load from that file instead of
    # querying git.
    kube::version::get_version_vars() {
      if [[ -n ${KUBE_GIT_VERSION_FILE-} ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:09 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top