Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 312 for myversion (0.38 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                fqid == 'dependency-version-catalog:alias-not-finished'
                contextualLabel == 'Problem: In version catalog libs, dependency alias builder \'my.great.lib\' was not finished.'
                details == 'A version was not set or explicitly declared as not wanted'
                solutions == [
                    'Call `.version()` to give the alias a version',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  2. pkg/apis/apiserverinternal/validation/validation_test.go

    	}, {
    		ssv: apiserverinternal.ServerStorageVersion{
    			APIServerID:       "fea",
    			EncodingVersion:   "v1alpha1",
    			DecodableVersions: []string{"v1alpha1", "v1"},
    			ServedVersions:    []string{"v2"},
    		},
    		expectedErr: `[].servedVersions[0]: Invalid value: "v2": individual served version : v2 must be included in decodableVersions : [v1alpha1 v1]`,
    	}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 21:43:49 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/deleted_kinds_test.go

    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/version"
    	"k8s.io/apiserver/pkg/registry/rest"
    )
    
    func Test_newResourceExpirationEvaluator(t *testing.T) {
    	tests := []struct {
    		name           string
    		currentVersion version.Info
    		expected       resourceExpirationEvaluator
    		expectedErr    string
    	}{
    		{
    			name: "beta",
    			currentVersion: version.Info{
    				Major:      "1",
    				Minor:      "20+",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>test</groupId>
        <artifactId>parent</artifactId>
        <version>1.0.0</version>
        <packaging>pom</packaging>
        <properties>
            <scala.version>2.12.1</scala.version>
            <scala.binary.version>2.12</scala.binary.version>
            <myversion>1.0.0</myversion>
        </properties>
    </project>
    """
    
            pomFile << """
    <project>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  5. pkg/apis/apiserverinternal/validation/validation.go

    			" with an optional DNS subdomain prefix and '/' (e.g. 'example.com/MyVersion')")
    	}
    
    	if len(version) == 0 {
    		errs = append(errs, "version part: "+utilvalidation.EmptyError())
    	} else if msgs := utilvalidation.IsDNS1035Label(version); len(msgs) != 0 {
    		errs = append(errs, prefixEach(msgs, "version part: ")...)
    	}
    	return errs
    }
    
    func prefixEach(msgs []string, prefix string) []string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 21:43:49 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. pkg/api/testing/serialization_test.go

    	rc := &api.ReplicationController{}
    	extGroup := schema.GroupVersion{Group: "apps", Version: "v1"}
    	extCodec := legacyscheme.Codecs.LegacyCodec(extGroup)
    
    	defaultGroup := schema.GroupVersion{Group: "", Version: "v1"}
    	defaultCodec := legacyscheme.Codecs.LegacyCodec(defaultGroup)
    
    	fuzzInternalObject(t, schema.GroupVersion{Group: "apps", Version: runtime.APIVersionInternal}, rs, rand.Int63())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  7. 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)
  8. src/go/types/version.go

    package types
    
    import (
    	"fmt"
    	"go/ast"
    	"go/token"
    	"go/version"
    	"internal/goversion"
    )
    
    // A goVersion is a Go language version string of the form "go1.%d"
    // where d is the minor version number. goVersion strings don't
    // contain release numbers ("go1.20.1" is not a valid goVersion).
    type goVersion string
    
    // asGoVersion returns v as a goVersion (e.g., "go1.20.1" becomes "go1.20").
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 23:12:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/version.go

    package types2
    
    import (
    	"fmt"
    	"go/version"
    	"internal/goversion"
    )
    
    // A goVersion is a Go language version string of the form "go1.%d"
    // where d is the minor version number. goVersion strings don't
    // contain release numbers ("go1.20.1" is not a valid goVersion).
    type goVersion string
    
    // asGoVersion returns v as a goVersion (e.g., "go1.20.1" becomes "go1.20").
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. 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)
Back to top