Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 5,001 for pgversion (0.12 sec)

  1. src/cmd/go/internal/version/version.go

    Go version reports the Go version used to build each of the named files.
    
    If no files are named on the command line, go version prints its own
    version information.
    
    If a directory is named, go version walks that directory, recursively,
    looking for recognized Go binaries and reporting their versions.
    By default, go version does not report unrecognized files found
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 19:27:00 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. build/build-image/VERSION

    Lucas Käldström <******@****.***> 1485540217 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 18:03:37 UTC 2017
    - 2 bytes
    - Viewed (0)
  3. build/build-image/cross/VERSION

    cpanato <******@****.***> 1717690383 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 28 bytes
    - Viewed (0)
  4. VERSION

    zirain <******@****.***> 1713809620 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 5 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/goversion.go

    package types
    
    import (
    	"fmt"
    	"internal/goversion"
    	"internal/lazyregexp"
    	"log"
    	"strconv"
    
    	"cmd/compile/internal/base"
    )
    
    // A lang is a language version broken into major and minor numbers.
    type lang struct {
    	major, minor int
    }
    
    // langWant is the desired language version set by the -lang flag.
    // If the -lang flag is not set, this is the zero value, meaning that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 21:36:02 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. cluster/images/etcd-version-monitor/etcd-version-monitor.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: etcd-version-monitor
      namespace: kube-system
    spec:
      hostNetwork: true
      containers:
      - name: etcd-version-monitor
        image: registry.k8s.io/etcd-version-monitor:0.1.3
        command:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 255 bytes
    - Viewed (0)
  7. releasenotes/notes/update-pdb-version.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 32005
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 09 21:42:52 UTC 2022
    - 134 bytes
    - Viewed (0)
  8. releasenotes/notes/upstream-tls-version.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/36271
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 01 03:06:53 UTC 2022
    - 206 bytes
    - Viewed (0)
  9. releasenotes/notes/fix-istioctl-version.yaml

    apiVersion: release-notes/v2
    
    # This YAML file describes the format for specifying a release notes entry for Istio.
    # This should be filled in for all user facing changes.
    
    # kind describes the type of change that this represents.
    # Valid Values are:
    # - bug-fix -- Used to specify that this change represents a bug fix.
    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 16 17:04:03 UTC 2022
    - 988 bytes
    - Viewed (0)
  10. src/go/version/version.go

    // If v does not start with "go", stripGo returns the empty string (a known invalid version).
    func stripGo(v string) string {
    	v, _, _ = strings.Cut(v, "-") // strip -bigcorp suffix.
    	if len(v) < 2 || v[:2] != "go" {
    		return ""
    	}
    	return v[2:]
    }
    
    // Lang returns the Go language version for version x.
    // If x is not a valid version, Lang returns the empty string.
    // For example:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:56:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top