Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,691 for kversion (0.32 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/metrics/metrics_test.go

    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/component-base/metrics/legacyregistry"
    )
    
    var (
    	kind     = schema.GroupVersionKind{Group: "kgroup", Version: "kversion", Kind: "kind"}
    	resource = schema.GroupVersionResource{Group: "rgroup", Version: "rversion", Resource: "resource"}
    	attr     = admission.NewAttributesRecord(nil, nil, kind, "ns", "name", resource, "subresource", admission.Create, &metav1.CreateOptions{}, false, nil)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:01:37 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/version/version.go

    // This function assumes that the highest supported version must be v1.x.
    func HighestSupportedVersion(versions []string) (*Version, error) {
    	if len(versions) == 0 {
    		return nil, errors.New("empty array for supported versions")
    	}
    
    	var (
    		highestSupportedVersion *Version
    		theErr                  error
    	)
    
    	for i := len(versions) - 1; i >= 0; i-- {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 18 19:25:29 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. released-versions.json

        "version": "8.9-20240612013748+0000",
        "buildTime": "20240612013748+0000"
      },
      "latestRc": {
        "version": "8.8-rc-2",
        "buildTime": "20240527070937+0000"
      },
      "finalReleases": [
        {
          "version": "8.8",
          "buildTime": "20240531214656+0000"
        },
        {
          "version": "8.7",
          "buildTime": "20240322155246+0000"
        },
        {
          "version": "8.6",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 12 01:51:16 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. cluster/images/etcd-version-monitor/etcd-version-monitor.go

    		return fmt.Errorf("failed to decode etcd version JSON: %v", err)
    	}
    
    	// Return without updating the version if it stayed the same since last time.
    	if *lastSeenBinaryVersion == version.BinaryVersion {
    		return nil
    	}
    
    	// Delete the metric for the previous version.
    	if *lastSeenBinaryVersion != "" {
    		deleted := etcdVersion.Delete(metrics.Labels{"binary_version": *lastSeenBinaryVersion})
    		if !deleted {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    						if existing.Versions[i].Version == v.Version {
    							existing.Versions[i] = v
    							break
    						}
    					}
    
    				} else {
    					// New group-version, just append
    					existing.Versions = append(existing.Versions, v)
    				}
    
    				sourcesUsed[gv] = key.source
    				groupsToUse[key.name] = existing
    			}
    			// Check to see if we have overlapping versions. If we do, take the one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/build.go

    			return
    		}
    
    		checksumOk := func(suffix string) bool {
    			return rs == nil || m.Version == "" || !mustHaveSums() ||
    				modfetch.HaveSum(module.Version{Path: m.Path, Version: m.Version + suffix})
    		}
    
    		mod := module.Version{Path: m.Path, Version: m.Version}
    
    		if m.Version != "" {
    			if old := reuse[mod]; old != nil {
    				if err := checkReuse(ctx, mod, old.Origin); err == nil {
    					*m = *old
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/modfile.go

    			}
    		}
    		if summary.goVersion != "" && gover.Compare(summary.goVersion, gover.GoStrictVersion) >= 0 {
    			if gover.Compare(summary.goVersion, gover.Local()) > 0 {
    				return nil, &gover.TooNewError{What: "module " + m.String(), GoVersion: summary.goVersion}
    			}
    			summary.require = append(summary.require, module.Version{Path: "go", Version: summary.goVersion})
    		}
    		if len(f.Retract) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  8. maven-artifact/src/main/java/org/apache/maven/artifact/resolver/AbstractArtifactResolutionException.java

                sb.append("    mvn install:install-file -DgroupId=");
                sb.append(groupId);
                sb.append(" -DartifactId=");
                sb.append(artifactId);
                sb.append(" -Dversion=");
                sb.append(version);
    
                // insert classifier only if it was used in the artifact
                if (classifier != null && !classifier.equals("")) {
                    sb.append(" -Dclassifier=");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    		if prog.Program == meta["Program"] && prog.Version == meta["Version"] &&
    			prog.GoVersion == meta["GoVersion"] && prog.GOOS == meta["GOOS"] &&
    			prog.GOARCH == meta["GOARCH"] {
    			return prog
    		}
    	}
    	prog := telemetry.ProgramReport{
    		Program:   meta["Program"],
    		Version:   meta["Version"],
    		GoVersion: meta["GoVersion"],
    		GOOS:      meta["GOOS"],
    		GOARCH:    meta["GOARCH"],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/go/types/check.go

    	downgradeOk := check.version.cmp(go1_21) >= 0
    
    	// determine Go version for each file
    	for _, file := range check.files {
    		// use unaltered Config.GoVersion by default
    		// (This version string may contain dot-release numbers as in go1.20.1,
    		// unlike file versions which are Go language versions only, if valid.)
    		v := check.conf.GoVersion
    
    		fileVersion := asGoVersion(file.GoVersion)
    		if fileVersion.isValid() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top