Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,689 for resort (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.h

      // Returns a human-readable string representation of this report.
      std::string ToString() const;
    
      // Prints a human-readable report to stdout.
      void Print() const;
    
      // Saves the report to `file_path`. The textproto representation of
      // `QuantizationResults` will be written to the file. Returns non-ok status
      // when the file write fails.
      absl::Status Save(StringRef file_path) const;
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 10:10:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    		return total / div
    	}
    	return total
    }
    
    // Report contains the data and associated routines to extract a
    // report from a profile.
    type Report struct {
    	prof        *profile.Profile
    	total       int64
    	options     *Options
    	formatValue func(int64) string
    }
    
    // Total returns the total number of samples in a report.
    func (rpt *Report) Total() int64 { return rpt.total }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. pilot/pkg/status/distribution/report.go

    package distribution
    
    import (
    	"gopkg.in/yaml.v2"
    )
    
    type Report struct {
    	Reporter            string         `json:"reporter"`
    	DataPlaneCount      int            `json:"dataPlaneCount"`
    	InProgressResources map[string]int `json:"inProgressResources"`
    }
    
    func ReportFromYaml(content []byte) (Report, error) {
    	out := Report{}
    	err := yaml.Unmarshal(content, &out)
    	return out, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 971 bytes
    - Viewed (0)
Back to top