Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 349 for lessFn (0.13 sec)

  1. pkg/scheduler/internal/queue/testing.go

    func NewTestQueue(ctx context.Context, lessFn framework.LessFunc, opts ...Option) *PriorityQueue {
    	return NewTestQueueWithObjects(ctx, lessFn, nil, opts...)
    }
    
    // NewTestQueueWithObjects creates a priority queue with an informer factory
    // populated with the provided objects.
    func NewTestQueueWithObjects(
    	ctx context.Context,
    	lessFn framework.LessFunc,
    	objs []runtime.Object,
    	opts ...Option,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 10 00:53:58 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/heap/heap.go

    }
    
    // New returns a Heap which can be used to queue up items to process.
    func New(keyFn KeyFunc, lessFn lessFunc) *Heap {
    	return NewWithRecorder(keyFn, lessFn, nil)
    }
    
    // NewWithRecorder wraps an optional metricRecorder to compose a Heap object.
    func NewWithRecorder(keyFn KeyFunc, lessFn lessFunc, metricRecorder metrics.MetricRecorder) *Heap {
    	return &Heap{
    		data: &data{
    			items:    map[string]*heapItem{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 29 18:37:35 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/queue/scheduling_queue.go

    	Run(logger klog.Logger)
    }
    
    // NewSchedulingQueue initializes a priority queue as a new scheduling queue.
    func NewSchedulingQueue(
    	lessFn framework.LessFunc,
    	informerFactory informers.SharedInformerFactory,
    	opts ...Option) SchedulingQueue {
    	return NewPriorityQueue(lessFn, informerFactory, opts...)
    }
    
    // NominatedNodeName returns nominated node name of a Pod.
    func NominatedNodeName(pod *v1.Pod) string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  4. test/prove.go

    func f4d(a, b, c int) int {
    	if a < b {
    		if a < c {
    			if a < b { // ERROR "Proved Less64$"
    				if a < c { // ERROR "Proved Less64$"
    					return 87
    				}
    				return 89
    			}
    			return 91
    		}
    		return 93
    	}
    	return 95
    }
    
    func f4e(a, b, c int) int {
    	if a < b {
    		if b > a { // ERROR "Proved Less64$"
    			return 101
    		}
    		return 103
    	}
    	return 105
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 23 00:02:36 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (RotateLeft32 ...) => (I32Rotl ...)
    (RotateLeft64 ...) => (I64Rotl ...)
    
    // Lowering comparisons
    (Less64  ...) => (I64LtS ...)
    (Less32  x y) => (I64LtS (SignExt32to64 x) (SignExt32to64 y))
    (Less16  x y) => (I64LtS (SignExt16to64 x) (SignExt16to64 y))
    (Less8   x y) => (I64LtS (SignExt8to64  x) (SignExt8to64  y))
    (Less64U ...) => (I64LtU ...)
    (Less32U x y) => (I64LtU (ZeroExt32to64 x) (ZeroExt32to64 y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  6. docs/de/docs/contributing.md

    * In Codeblöcken innerhalb des Markdown-Dokuments, übersetzen Sie Kommentare (`# ein Kommentar`), aber lassen Sie den Rest unverändert.
    
    * Ändern Sie nichts, was in "``" (Inline-Code) eingeschlossen ist.
    
    * In Zeilen, die mit `===` oder `!!!` beginnen, übersetzen Sie nur den ` "... Text ..."`-Teil. Lassen Sie den Rest unverändert.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 23:55:23 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/feature_request.md

    ---
    name: Feature request
    about: Suggest an idea for this project
    title: ''
    labels: ''
    assignees: ''
    
    ---
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Feb 10 22:19:06 UTC 2020
    - 190 bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/feature_request.md

    ---
    name: Feature request
    about: Suggest an idea for this project
    title: ''
    labels: ''
    assignees: ''
    
    ---
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 15 11:56:53 UTC 2020
    - 190 bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/feature_request.md

    ---
    name: Feature request
    about: Suggest an idea for this project
    title: ''
    labels: ''
    assignees: ''
    
    ---
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Mon Feb 10 22:18:26 UTC 2020
    - 190 bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultClasspathTransformation.java

        /**
         * Helper class to traverse graph. Required to make the containing method thread-safe
         * and yet use class level data to lessen stack usage in recursion
         */
        private class ClasspathGraphVisitor {
            MetadataGraph graph;
    
            ClasspathContainer cpc;
    
            List<MetadataGraphVertex> visited;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top