Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,001 for pgversion (0.18 sec)

  1. cmd/kubeadm/app/cmd/version.go

    	"github.com/spf13/cobra"
    
    	apimachineryversion "k8s.io/apimachinery/pkg/version"
    	"k8s.io/component-base/version"
    	"k8s.io/klog/v2"
    	"sigs.k8s.io/yaml"
    )
    
    // Version provides the version information of kubeadm.
    type Version struct {
    	ClientVersion *apimachineryversion.Info `json:"clientVersion"`
    }
    
    // newCmdVersion provides the version information of kubeadm.
    func newCmdVersion(out io.Writer) *cobra.Command {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/gover/version.go

    	// goStrictVersion is the Go version at which the Go versions
    	// became "strict" in the sense that, restricted to modules at this version
    	// or later, every module must have a go version line ≥ all its dependencies.
    	// It is also the version after which "too new" a version is considered a fatal error.
    	GoStrictVersion = "1.21"
    
    	// ExplicitModulesTxtImportVersion is the Go version at which vendored packages need to be present
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. istioctl/pkg/version/version.go

      istioctl x version
    
      # Retrieve version information directly from the control plane, using RSA certificate security
      # (Certificates must be obtained before this step.  The --cert-dir flag lets istioctl bypass the Kubernetes API server.)
      istioctl x version --xds-address istio.example.com:15012 --cert-dir ~/.istio-certs
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/3rd-party-lib/boost_1_55_0/boost/version.hpp

    //  will cause a recompile every time a new boost version is
    //  released.
    //
    //  BOOST_VERSION % 100 is the patch level
    //  BOOST_VERSION / 100 % 1000 is the minor version
    //  BOOST_VERSION / 100000 is the major version
    
    #define BOOST_VERSION 105500
    
    //
    //  BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
    //  but as a *string* in the form "x_y[_z]" where x is the major version
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. pkg/util/kernel/version.go

    	"os"
    	"strings"
    
    	"k8s.io/apimachinery/pkg/util/version"
    )
    
    type readFileFunc func(string) ([]byte, error)
    
    // GetVersion returns currently running kernel version.
    func GetVersion() (*version.Version, error) {
    	return getVersion(os.ReadFile)
    }
    
    // getVersion reads os release file from the give readFile function.
    func getVersion(readFile readFileFunc) (*version.Version, error) {
    	kernelVersionFile := "/proc/sys/kernel/osrelease"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 19:24:34 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Version.java

    import org.apache.maven.api.annotations.Nonnull;
    
    /**
     * A version usually parsed using the {@link org.apache.maven.api.services.VersionParser} service.
     *
     * @since 4.0.0
     * @see org.apache.maven.api.services.VersionParser#parseVersion(String)
     * @see org.apache.maven.api.Session#parseVersion(String)
     */
    @Experimental
    public interface Version extends Comparable<Version> {
        /**
         * Returns a string representation of this version.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. pkg/test/framework/resource/version.go

    	}
    	out := make(RevVerMap)
    	for k := range m {
    		version := m.String(k)
    		v, err := NewIstioVersion(version)
    		if err != nil {
    			return fmt.Errorf("could not parse %s as version: %w",
    				version, err)
    		}
    		out[k] = v
    	}
    	*rv = out
    	return nil
    }
    
    // Set parses IstioVersions from a string flag in the form "a=1.5.6,b,c=1.4".
    // If no version is specified for a revision assume latest, represented as ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  8. pkg/ctrlz/topics/version.go

    	"istio.io/istio/pkg/ctrlz/topics/assets"
    	"istio.io/istio/pkg/version"
    )
    
    type versionTopic struct{}
    
    // VersionTopic returns a ControlZ topic that allows visualization of versioning info.
    func VersionTopic() fw.Topic {
    	return versionTopic{}
    }
    
    func (versionTopic) Title() string {
    	return "Version Info"
    }
    
    func (versionTopic) Prefix() string {
    	return "version"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. pkg/kubelet/winstats/version.go

    		MinorVersion: minorVersionNumber,
    		UBR:          revision,
    	}, nil
    }
    
    // GetPatchVersion returns full OS version with patch
    func (o *OSInfo) GetPatchVersion() string {
    	return fmt.Sprintf("%d.%d.%s.%d", o.MajorVersion, o.MinorVersion, o.BuildNumber, o.UBR)
    }
    
    // GetBuild returns OS version upto build number
    func (o *OSInfo) GetBuild() string {
    	return fmt.Sprintf("%d.%d.%s", o.MajorVersion, o.MinorVersion, o.BuildNumber)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. pkg/ctrlz/topics/assets/templates/version.html

    {{ define "content" }}
    
    <p>
        Version information about this binary and runtime.
    </p>
    
    <table>
        <thead>
            <tr>
                <th>Name</th>
                <th>Value</th>
            </tr>
        </thead>
    
        <tbody>
            <tr>
                <td>Version</td>
                <td>{{.Version}}</td>
            </tr>
    
            <tr>
                <td>Git Revision</td>
                <td>{{.GitRevision}}</td>
            </tr>
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 673 bytes
    - Viewed (0)
Back to top