Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,002 for prefers (0.14 sec)

  1. src/cmd/go/internal/work/shell.go

    //
    // reportCmd returns a non-nil error if and only if cmdErr != nil. It assumes
    // that the command output, if non-empty, is more detailed than the command
    // error (which is usually just an exit status), so prefers using the output as
    // the ultimate error. Typically, the caller should return this error from an
    // Action, which it will be printed by the Builder.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    This is typically the case for _classified_ artifacts, but you may also need to select an artifact with a different file type or extension.
    Gradle discourages use of classifiers in dependencies and prefers to model such artifacts as <<variant_model.adoc#understanding-variant-selection,additional variants of a module>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/import.go

    		}
    	}
    }
    
    // queryImport attempts to locate a module that can be added to the current
    // build list to provide the package with the given import path.
    //
    // Unlike QueryPattern, queryImport prefers to add a replaced version of a
    // module *before* checking the proxies for a version to add.
    func queryImport(ctx context.Context, path string, rs *Requirements) (module.Version, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleSelectorsTest.groovy

            and:
            sort([prefer30, prefer10, prefer20, require20, require30]) == [require30, require20, prefer30, prefer20, prefer10]
    
            and:
            sort([prefer30, dynamic1, prefer10]) == [prefer30, prefer10, dynamic1]
    
            and:
            sort([dynamic1, prefer10, fromLock, dynamic2]) == [fromLock, prefer10, dynamic1, dynamic2]
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/html.go

        outlined[outlines[i]] = "";
    }
    
    window.onload = function() {
        if (history.state !== null) {
            expandedDefault = history.state.expandedDefault;
        }
        if (window.matchMedia && window.matchMedia("(prefers-color-scheme: dark)").matches) {
            toggleDarkMode();
            document.getElementById("dark-mode-button").checked = true;
        }
    
        var ssaElemClicked = function(elem, event, selections, selected) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    //
    // chooseArbitrarily prefers module paths that were already in the build list at
    // the start of 'go get', prefers modules that provide packages over those that
    // do not, and chooses the first module meeting those criteria (so biases toward
    // longer paths).
    func (r *resolver) chooseArbitrarily(cs pathSet) (isPackage bool, m module.Version) {
    	// Prefer to upgrade some module that was already in the build list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    			out: &runtimetesting.ExternalTestType1{MyWeirdCustomEmbeddedVersionKindField: runtimetesting.MyWeirdCustomEmbeddedVersionKindField{APIVersion: "custom/v1", ObjectKind: "TestType3"}, A: "test"},
    		},
    		// prefers the best match
    		{
    			scheme: GetTestScheme(),
    			in:     &runtimetesting.ExternalTestType1{A: "test"},
    			gv:     schema.GroupVersions{{Version: runtime.APIVersionInternal}, {Version: "v1"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    // of resource.
    func (b *Builder) SingleResourceType() *Builder {
    	b.singleResourceType = true
    	return b
    }
    
    // mappingFor returns the RESTMapping for the Kind given, or the Kind referenced by the resource.
    // Prefers a fully specified GroupVersionResource match. If one is not found, we match on a fully
    // specified GroupVersionKind, or fallback to a match on GroupKind.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  9. src/regexp/regexp.go

    //
    // In the template, a variable is denoted by a substring of the form
    // $name or ${name}, where name is a non-empty sequence of letters,
    // digits, and underscores. A purely numeric name like $1 refers to
    // the submatch with the corresponding index; other names refer to
    // capturing parentheses named with the (?P<name>...) syntax. A
    // reference to an out of range or unmatched index or a name that is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * forgiving: it will automatically percent-encode the `|'` yielding `http://example.com/abc%7Cdef`.
     * This kind behavior is consistent with web browsers. `HttpUrl` prefers consistency with major web
     * browsers over consistency with obsolete specifications.
     *
     * ### Paths and Queries should decompose
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
Back to top