Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Algorithmica (0.28 sec)

  1. src/sort/sort.go

    //    The given algorithms are in-place, number of Swap and Assignments
    //    grow as n log n but the algorithm is not stable.
    //  - "Fast Stable In-Place Sorting with O(n) Data Moves" J.I. Munro and
    //    V. Raman in Algorithmica (1996) 16, 115-160:
    //    This algorithm either needs additional 2n bits or works only if there
    //    are enough different elements available to encode some permutations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. src/runtime/mwbbuf.go

    // license that can be found in the LICENSE file.
    
    // This implements the write barrier buffer. The write barrier itself
    // is gcWriteBarrier and is implemented in assembly.
    //
    // See mbarrier.go for algorithmic details on the write barrier. This
    // file deals only with the buffer.
    //
    // The write barrier has a fast path and a slow path. The fast path
    // simply enqueues to a per-P write barrier buffer. It's written in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    	p.resolveBrackets(dirEmbed, s.p.initialTypes)
    }
    
    type bracketPairer struct {
    	sos Class // direction corresponding to start of sequence
    
    	// The following is a restatement of BD 16 using non-algorithmic language.
    	//
    	// A bracket pair is a pair of characters consisting of an opening
    	// paired bracket and a closing paired bracket such that the
    	// Bidi_Paired_Bracket property value of the former equals the latter,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.12.md

    SIG Scheduling development efforts have been primarily focused on improving performance and reliability of the scheduler.
    - Performance of the inter-pod affinity/anti-affinity feature is improved over 100X via algorithmic optimization.
    - DaemonSet pods, which used to be scheduled by the DaemonSet controller, will be scheduled by the default scheduler in 1.12. This change allows DaemonSet pods to enjoy all the scheduling features of the default scheduler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
Back to top