Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,038 for prefers (0.21 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParser.java

            while (reader.peek() != END_OBJECT) {
                // At this stage, 'strictly' implies 'requires'.
                String cst = reader.nextName();
                switch (cst) {
                    case "prefers":
                        preferredVersion = reader.nextString();
                        break;
                    case "requires":
                        requiredVersion = reader.nextString();
                        break;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

        val writerTask = writerTask
        if (writerTask != null) {
          taskQueue.schedule(writerTask)
        }
      }
    
      /**
       * Attempts to remove a single frame from a queue and send it. This prefers to write urgent pongs
       * before less urgent messages and close frames. For example it's possible that a caller will
       * enqueue messages followed by pongs, but this sends pongs followed by messages. Pongs are always
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    This has the advantage that the published versions correspond to the ones the published artifact was tested against.
    
    Example use cases for resolved versions:
    
    * A project uses dynamic versions for dependencies but prefers exposing the resolved version for a given release to its consumers.
    * In combination with <<dependency_locking.adoc#dependency-locking,dependency locking>>, you want to publish the locked versions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    		// MOVNTSS is F3 0F 2B /r (supposedly; not in manuals).
    		// Usually inner prefixes win for display,
    		// so that F3 F2 0F 2B 11 is REP MOVNTSD
    		// and F2 F3 0F 2B 11 is REPN MOVNTSS.
    		// Libopcodes always prefers MOVNTSS regardless of prefix order.
    		if countPrefix(&inst, 0xF3) > 0 {
    			found := false
    			for i := len(inst.Prefix) - 1; i >= 0; i-- {
    				switch inst.Prefix[i] & 0xFF {
    				case 0xF3:
    					if !found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. docs/changelogs/changelog_2x.md

        Previously URLs with special characters like `|` and `[` would break when
        subjected to URI’s overly-strict validation.
     *  Fix: Don't re-encode `+` as `%20` in encoded URL query strings. OkHttp
        prefers `%20` when doing its own encoding, but will retain `+` when that is
        provided.
     *  Fix: Enforce that callers call `WebSocket.close()` on IO errors. Error
        handling in WebSockets is significantly improved.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top