Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,014 for resort (0.23 sec)

  1. src/cmd/go/internal/modfetch/codehost/git.go

    	// 1 if not.
    	_, err := Run(ctx, r.dir, "git", "merge-base", "--is-ancestor", "--", tag, rev)
    
    	// Git reports "is an ancestor" with exit code 0 and "not an ancestor" with
    	// exit code 1.
    	// Unfortunately, if we've already fetched rev with a shallow history, git
    	// merge-base has been observed to report a false-negative, so don't stop yet
    	// even if the exit code is 1!
    	if err == nil {
    		return true, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    .. TENCENT
    .. everything else
    . higher major versions take precedence over lower ones
    . higher minor versions take precedence over lower ones
    . installation paths take precedence according to their lexicographic ordering (last resort criteria for deterministically deciding
    between installations of the same type, from the same vendor and with the same version)
    
    All these rules are applied as multilevel sorting criteria, *in the order shown*.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    The report provides both names and types.
    As a last resort, you can also check a plugin's source code, but that shouldn't be necessary in the majority of cases.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/runtime/os_windows.go

    		_WAIT_TIMEOUT   = 0x00000102
    		_WAIT_FAILED    = 0xFFFFFFFF
    	)
    
    	var result uintptr
    	if ns < 0 {
    		result = stdcall2(_WaitForSingleObject, getg().m.waitsema, uintptr(_INFINITE))
    	} else {
    		start := nanotime()
    		elapsed := int64(0)
    		for {
    			ms := int64(timediv(ns-elapsed, 1000000, nil))
    			if ms == 0 {
    				ms = 1
    			}
    			result = stdcall4(_WaitForMultipleObjects, 2,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    func (s *socketsFirst) sortAvailableNUMANodes() []int {
    	var result []int
    	for _, socket := range s.sortAvailableSockets() {
    		numas := s.acc.details.NUMANodesInSockets(socket).UnsortedList()
    		s.acc.sort(numas, s.acc.details.CPUsInNUMANodes)
    		result = append(result, numas...)
    	}
    	return result
    }
    
    // If sockets are higher in the memory hierarchy than NUMA nodes, then just
    // sort the sockets directly, and return them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    == Finding out more about your project
    
    Gradle provides a report that you can run from the command-line that shows some details about the components and binaries that your project produces. To use this report, just run `gradle components`. Below is an example of running this report for one of the sample projects:
    
    === Example: The components report
    
    .Output of **`gradle components`**
    ----
    > gradle components
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  7. platforms/software/reporting/src/main/java/org/gradle/api/reporting/Report.java

    /**
     * A file based report to be created.
     * <p>
     * Tasks that produce reports expose instances of this type for configuration via the {@link Reporting} interface.
     */
    public interface Report extends Configurable<Report> {
    
        Namer<Report> NAMER = new Namer<Report>() {
            @Override
            public String determineName(Report report) {
                return report.getName();
            }
        };
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    ** It is preferable to use <<composite_builds.adoc#composite_builds, composite builds>> for this use case
    ** If for some reason neither composite builds nor full featured repository are possible, then `mavenLocal()` is a last resort option
    
    After all these warnings, if you end up using `mavenLocal()`, consider combining it with <<#sec:repository-content-filtering,a repository filter>>.
    This will make sure it only provides what is expected and nothing else.
    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. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    You might also find that you can <<migmvn:unnecessary_plugins,replace a plugin with built-in Gradle functionality>>.
    As a last resort, you may need to reimplement a Maven plugin <<migmvn:custom_plugins,via your own custom plugins and task types>>.
    +
    The rest of this chapter looks in more detail at specific aspects of migrating a build from Maven to Gradle.
    
    [[migmvn:build_lifecycle]]
    == Understanding the build lifecycle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  10. src/internal/trace/internal/oldtrace/parser.go

    	// ev.Args[2] earlier, because it would produce seemingly broken timestamps
    	// (misplaced event). We also can't simply update the timestamp and resort
    	// events, because if timestamps are broken we will misplace the event and
    	// later report logically broken trace (instead of reporting broken
    	// timestamps).
    	lastSysBlock := make(map[uint64]Timestamp)
    	for i := 0; i < events.Len(); i++ {
    		ev := events.Ptr(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top