Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 167 for Precedence (0.15 sec)

  1. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    	cacheDir := getDefaultCacheDir()
    
    	// retrieve a user-provided value for the "cache-dir"
    	// override httpCacheDir and discoveryCacheDir if user-value is given.
    	// user-provided value has higher precedence than default
    	// and KUBECACHEDIR environment variable.
    	if f.CacheDir != nil && *f.CacheDir != "" && *f.CacheDir != getDefaultCacheDir() {
    		cacheDir = *f.CacheDir
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  2. src/archive/tar/common.go

    	//
    	// The following are semantically equivalent:
    	//  h.Xattrs[key] = value
    	//  h.PAXRecords["SCHILY.xattr."+key] = value
    	//
    	// When Writer.WriteHeader is called, the contents of Xattrs will take
    	// precedence over those in PAXRecords.
    	//
    	// Deprecated: Use PAXRecords instead.
    	Xattrs map[string]string
    
    	// PAXRecords is a map of PAX extended header records.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/coderepo_test.go

    		// The version/tag mismatch takes precedence over the +incompatible mismatched.
    		vcs:  "git",
    		path: "vcs-test.golang.org/git/semver-branch.git",
    		rev:  "v2.0.0+incompatible",
    		err:  `resolves to version v0.1.0 (v2.0.0 is not a tag)`,
    	},
    	{
    		// Git branch with a semver name, matching go.mod file, and mismatched version.
    		// The version/tag mismatch takes precedence over the +incompatible mismatched.
    		vcs:  "git",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/transform/transform.go

    			case err == ErrShortSrc && r.src1-r.src0 != len(r.src) && r.err == nil:
    				// Read more bytes into src via the code below, and try again.
    			default:
    				r.transformComplete = true
    				// The reader error (r.err) takes precedence over the
    				// transformer error (err) unless r.err is nil or io.EOF.
    				if r.err == nil || r.err == io.EOF {
    					r.err = err
    				}
    				continue
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  5. src/regexp/syntax/regexp.go

    	Name     string     // capturing name, for OpCapture
    }
    
    //go:generate stringer -type Op -trimprefix Op
    
    // An Op is a single regular expression operator.
    type Op uint8
    
    // Operators are listed in precedence order, tightest binding to weakest.
    // Character class operators are listed simplest to most complex
    // (OpLiteral, OpCharClass, OpAnyCharNotNL, OpAnyChar).
    
    const (
    	OpNoMatch        Op = 1 + iota // matches no strings
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:51 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

        def setup() {
            // Avoid mixing JUnit dependencies with the ones from the JVM running this test
            // For example, when using PTS/TD for running this test, the JUnit Platform Launcher classes from the GE plugin take precedence
            toolingApi.requireDaemons()
            testCode()
        }
    
        boolean supportsEfficientClassFiltering() {
            return getTargetVersion() >= GradleVersion.version('4.7')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/schema-extra-example.md

    And then the new OpenAPI 3.1.0 was based on the latest version (JSON Schema 2020-12) that included this new field `examples`.
    
    And now this new `examples` field takes precedence over the old single (and custom) `example` field, that is now deprecated.
    
    This new `examples` field in JSON Schema is **just a `list`** of examples, not a dict with extra metadata as in the other places in OpenAPI (described above).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/language/match.go

    // scoring also requires the full score to be computed for each pair of tags.
    //
    // We will use a different algorithm which aims to have the following properties:
    // - clarity on the precedence of the various selection factors, and
    // - improved performance by allowing early termination of a comparison.
    //
    // Matching algorithm (overview)
    // Input:
    //   - supported: a set of supported tags
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    }
    
    var map_MatchResources = map[string]string{
    	"":                     "MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

         * <p>
         * System properties can be also defined in the build scripts (and in the gradle.properties file), or with a JVM argument. In case of an overlapping system property definition the precedence is as follows:
         * <ul>
         *     <li>{@code withSystemProperties(...)} (highest)</li>
         *     <li>{@code addJvmArguments(...)} and {@code setJvmArguments(...)}</li>
         *     <li>build scripts</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
Back to top