Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 948 for semver (0.17 sec)

  1. docs/changelogs/changelog_4x.md

     [public_suffix]: https://publicsuffix.org/
     [rfc_2045]: https://tools.ietf.org/html/rfc2045
     [rfc_7231_647]: https://tools.ietf.org/html/rfc7231#section-6.4.7
     [rfc_7692]: https://tools.ietf.org/html/rfc7692
     [semver]: https://semver.org/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. hack/tools/go.mod

    	github.com/BurntSushi/toml v1.3.2 // indirect
    	github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24 // indirect
    	github.com/GaijinEntertainment/go-exhaustruct/v3 v3.2.0 // indirect
    	github.com/Masterminds/semver v1.5.0 // indirect
    	github.com/OpenPeeDeeP/depguard/v2 v2.2.0 // indirect
    	github.com/alecthomas/go-check-sumtype v0.1.4 // indirect
    	github.com/alexkohler/nakedret/v2 v2.0.2 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. go.mod

    	github.com/charmbracelet/x/input v0.1.2 // indirect
    	github.com/charmbracelet/x/term v0.1.1 // indirect
    	github.com/charmbracelet/x/windows v0.1.2 // indirect
    	github.com/coreos/go-semver v0.3.1 // indirect
    	github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
    	github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
    	github.com/docker/go-units v0.5.0 // indirect
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/workcmd/edit.go

    		}
    	})
    }
    
    // allowedVersionArg returns whether a token may be used as a version in go.mod.
    // We don't call modfile.CheckPathVersion, because that insists on versions
    // being in semver form, but here we want to allow versions like "master" or
    // "1234abcdef", which the go command will resolve the next time it runs (or
    // during -fix).  Even so, we need to make sure the version is a valid token.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modcmd/edit.go

    }
    
    // allowedVersionArg returns whether a token may be used as a version in go.mod.
    // We don't call modfile.CheckPathVersion, because that insists on versions
    // being in semver form, but here we want to allow versions like "master" or
    // "1234abcdef", which the go command will resolve the next time it runs (or
    // during -fix).  Even so, we need to make sure the version is a valid token.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // StringValue is a string.
      optional string string = 5;
    
      // StringSliceValue is an array of strings.
      optional NamedResourcesStringSlice stringSlice = 9;
    
      // VersionValue is a semantic version according to semver.org spec 2.0.0.
      optional string version = 10;
    }
    
    // NamedResourcesFilter is used in ResourceFilterModel.
    message NamedResourcesFilter {
      // Selector is a CEL expression which must evaluate to true if a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/staticpods.go

    		return "", err
    	}
    
    	return convertImageTagMetadataToSemver(image.TagFromImage(pod.Spec.Containers[0].Image)), nil
    }
    
    // convertImageTagMetadataToSemver converts imagetag in the format of semver_metadata to semver+metadata
    func convertImageTagMetadataToSemver(tag string) string {
    	// Container registries do not support `+` characters in tag names. This prevents imagetags from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/context.go

    func (node *Proxy) IsAmbient() bool {
    	return node.IsWaypointProxy() || node.IsZTunnel()
    }
    
    // IstioVersion encodes the Istio version of the proxy. This is a low key way to
    // do semver style comparisons and generate the appropriate envoy config
    type IstioVersion struct {
    	Major int
    	Minor int
    	Patch int
    }
    
    var MaxIstioVersion = &IstioVersion{Major: 65535, Minor: 65535, Patch: 65535}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
  9. cmd/kubeadm/app/preflight/checks.go

    	}
    
    	// Checks if k8sVersion greater or equal than the first unsupported versions by current version of kubeadm,
    	// that is major.minor+1 (all patch and pre-releases versions included)
    	// NB. in semver patches number is a numeric, while pre-release is a string where numeric identifiers always have lower precedence than non-numeric identifiers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/server.go

    	serviceEntryController *serviceentry.Controller
    
    	httpServer  *http.Server // debug, monitoring and readiness Server.
    	httpAddr    string
    	httpsServer *http.Server // webhooks HTTPS Server.
    	httpsAddr   string
    
    	grpcServer        *grpc.Server
    	grpcAddress       string
    	secureGrpcServer  *grpc.Server
    	secureGrpcAddress string
    
    	// monitoringMux listens on monitoringAddr(:15014).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top