Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 637 for inversion (0.73 sec)

  1. pkg/apis/certificates/v1beta1/conversion.go

    limitations under the License.
    */
    
    package v1beta1
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    func addConversionFuncs(scheme *runtime.Scheme) error {
    	// Add field conversion funcs.
    	return scheme.AddFieldLabelConversionFunc(SchemeGroupVersion.WithKind("CertificateSigningRequest"),
    		func(label, value string) (string, string, error) {
    			switch label {
    			case "metadata.name",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 27 10:17:55 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  2. src/go/build/constraint/vers.go

    }
    
    // minVersion returns the minimum Go major version (9 for go1.9)
    // implied by expression z, or if sign < 0, by expression !z.
    func minVersion(z Expr, sign int) int {
    	switch z := z.(type) {
    	default:
    		return -1
    	case *AndExpr:
    		op := andVersion
    		if sign < 0 {
    			op = orVersion
    		}
    		return op(minVersion(z.X, sign), minVersion(z.Y, sign))
    	case *OrExpr:
    		op := orVersion
    		if sign < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:19:00 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/GradleVersionSpec.java

            // The cross-version tests should fail if the specified version range is outside the supported set of versions
            if(minVersion.getBaseVersion().compareTo(lowestTestedVersion) < 0) {
                throw new RuntimeException(String.format("Unsupported version range '%s' specified in constraint '%s'. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. VERSION

    zirain <******@****.***> 1713809620 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 5 bytes
    - Viewed (0)
  5. build/build-image/VERSION

    Lucas Käldström <******@****.***> 1485540217 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 18:03:37 UTC 2017
    - 2 bytes
    - Viewed (0)
  6. build/build-image/cross/VERSION

    cpanato <******@****.***> 1717690383 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 28 bytes
    - Viewed (0)
  7. operator/cmd/mesh.go

    // limitations under the License.
    
    package main
    
    import (
    	"os"
    
    	"istio.io/istio/istioctl/pkg/cli"
    	"istio.io/istio/operator/cmd/mesh"
    	binversion "istio.io/istio/operator/version"
    	"istio.io/istio/pkg/version"
    )
    
    func main() {
    	version.Info.Version = binversion.OperatorVersionString
    	rootCmd := mesh.GetRootCmd(cli.NewCLIContext(nil), os.Args[1:])
    	if err := rootCmd.Execute(); err != nil {
    		os.Exit(1)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:33 UTC 2023
    - 963 bytes
    - Viewed (0)
  8. istioctl/pkg/util/common.go

    	"strings"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	binversion "istio.io/istio/operator/version"
    )
    
    var NeverMatch = &metav1.LabelSelector{
    	MatchLabels: map[string]string{
    		"istio.io/deactivated": "never-match",
    	},
    }
    
    var ManifestsFlagHelpStr = `Specify a path to a directory of charts and profiles
    (e.g. ~/Downloads/istio-` + binversion.OperatorVersionString + `/manifests).`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/features/features.go

    		return nil
    	}
    	parsedExpVersion, err := version.ParseSemantic(requestedVersion)
    	if err != nil {
    		return errors.Wrapf(err, "error parsing version %s", requestedVersion)
    	}
    	for k := range requestedFeatures {
    		if minVersion := allFeatures[k].MinimumVersion; minVersion != nil {
    			if !parsedExpVersion.AtLeast(minVersion) {
    				return errors.Errorf(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K 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