Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 402 for prefers (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    Instead, Gradle will dynamically generate a module descriptor (without any dependency information) based on the presence of artifacts.
    
    [NOTE]
    ====
    As Gradle prefers to use modules whose descriptor has been created from real meta-data rather than being generated, flat directory repositories cannot be used to override artifacts with real meta-data from other repositories declared in the build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		if argPos != "" {
    			// Keep the argument in preference to the parent, as the
    			// argument is normally earlier in program flow.
    			// Keep the argument in preference to an earlier argument,
    			// as that prefers the memory argument which is also earlier
    			// in the program flow.
    			pos = argPos
    		}
    	}
    
    	return pos, checkOp
    }
    
    func genResult(rr *RuleRewrite, arch arch, result, pos string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    Plugins that extend these types and override methods from the base class may no longer behave the same way.
    Internally, `AbstractArchiveTask` prefers the new properties and methods like `getArchiveName()` are façades over the new properties.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top