Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for version (0.19 sec)

  1. operator/pkg/version/version.go

    	return v
    }
    
    // MajorVersion represents a major version.
    type MajorVersion struct {
    	Major uint32
    }
    
    // MinorVersion represents a minor version.
    type MinorVersion struct {
    	MajorVersion
    	Minor uint32
    }
    
    // PatchVersion represents a patch version.
    type PatchVersion struct {
    	MinorVersion
    	Patch uint32
    }
    
    // Version represents a version with an optional suffix.
    type Version struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. src/go/types/version.go

    func asGoVersion(v string) goVersion {
    	return goVersion(version.Lang(v))
    }
    
    // isValid reports whether v is a valid Go version.
    func (v goVersion) isValid() bool {
    	return v != ""
    }
    
    // cmp returns -1, 0, or +1 depending on whether x < y, x == y, or x > y,
    // interpreted as Go versions.
    func (x goVersion) cmp(y goVersion) int {
    	return version.Compare(string(x), string(y))
    }
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 23:12:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. 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)
  4. version.txt

    Bo Zhang <******@****.***> 1718090200 +0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 4 bytes
    - Viewed (0)
  5. src/mdo/model-version.vm

    #foreach ( $version in $versions )
        #set ( $v = $version.toString().replace('.', '_') )
            // ${version}
            if (is_${v}(model)) {
                return "${version}";
            }
    #end
    #if ( $minimalVersion )
            return "$minimalVersion";
    #else
            return null;
    #end
        }
    
    #foreach ( $version in $versions )
        #set ( $v = $version.toString().replace('.', '_') )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 16 13:44:33 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/without-version.toml

    [libraries]
    alias1 = { module = "g:a" }
    alias2 = { group = "g", name = "a", version = "" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 128 bytes
    - Viewed (0)
  7. okcurl/src/main/resources-templates/okcurl-version.properties

    version=${projectVersion}...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 26 bytes
    - Viewed (0)
  8. subprojects/core/src/test/resources/org/gradle/api/internal/catalog/parser/one-version.toml

    [versions]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 16 14:58:26 UTC 2021
    - 24 bytes
    - Viewed (0)
  9. maven-model-builder/src/test/resources/poms/validation/bad-version.xml

    specific language governing permissions and limitations
    under the License.
    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <groupId>foo</groupId>
      <artifactId>bar</artifactId>
      <version>this\is/bad</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Jul 17 21:53:47 UTC 2010
    - 914 bytes
    - Viewed (0)
  10. 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)
Back to top