Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NewPriorityQueue (0.23 sec)

  1. android/guava/src/com/google/common/collect/Queues.java

       *     in 15.0)
       */
      @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989
      public static <E extends Comparable> PriorityQueue<E> newPriorityQueue() {
        return new PriorityQueue<>();
      }
    
      /**
       * Creates a {@code PriorityQueue} containing the given elements.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Queues.java

       *     in 15.0)
       */
      @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989
      public static <E extends Comparable> PriorityQueue<E> newPriorityQueue() {
        return new PriorityQueue<>();
      }
    
      /**
       * Creates a {@code PriorityQueue} containing the given elements.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. pkg/scheduler/scheduler_test.go

    			podInformer := informerFactory.Core().V1().Pods()
    			// Need to add/update/delete testPod to the store.
    			podInformer.Informer().GetStore().Add(testPod)
    
    			queue := internalqueue.NewPriorityQueue(nil, informerFactory, internalqueue.WithClock(testingclock.NewFakeClock(time.Now())))
    			schedulerCache := internalcache.New(ctx, 30*time.Second)
    
    			if err := queue.Add(logger, testPod); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top