Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 407 for unschedule (0.19 sec)

  1. src/main/java/org/codelibs/fess/helper/JobHelper.java

                if (jobManager.isSchedulingDone()) {
                    jobManager.findJobByUniqueOf(LaJobUnique.of(scheduledJob.getId())).ifPresent(job -> {
                        job.unschedule();
                    }).orElse(() -> logger.debug("Job {} is not scheduled.", scheduledJob.getId()));
                }
            } catch (final Exception e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/schedule.go

    		return true
    	}
    	return false
    }
    
    // Schedule the Values in each Block. After this phase returns, the
    // order of b.Values matters and is the order in which those values
    // will appear in the assembly output. For now it generates a
    // reasonable valid schedule using a priority queue. TODO(khr):
    // schedule smarter.
    func schedule(f *Func) {
    	// reusable priority queue
    	priq := new(ValHeap)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller_test.go

    	informerSyncTimeout   = 30 * time.Second
    )
    
    var (
    	noScheduleTolerations = []v1.Toleration{{Key: "dedicated", Value: "user1", Effect: "NoSchedule"}}
    	noScheduleTaints      = []v1.Taint{{Key: "dedicated", Value: "user1", Effect: "NoSchedule"}}
    	noExecuteTaints       = []v1.Taint{{Key: "dedicated", Value: "user1", Effect: "NoExecute"}}
    )
    
    func nowPointer() *metav1.Time {
    	now := metav1.Now()
    	return &now
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

          private ScheduledFuture<@Nullable Void> submitToExecutor(Schedule schedule) {
            return executor.schedule(this, schedule.delay, schedule.unit);
          }
        }
    
        /**
         * Contains the most recently submitted {@code Future}, which may be cancelled or updated,
         * always under a lock.
         */
        private static final class SupplantableFuture implements Cancellable {
          private final ReentrantLock lock;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

          private ScheduledFuture<@Nullable Void> submitToExecutor(Schedule schedule) {
            return executor.schedule(this, schedule.delay, schedule.unit);
          }
        }
    
        /**
         * Contains the most recently submitted {@code Future}, which may be cancelled or updated,
         * always under a lock.
         */
        private static final class SupplantableFuture implements Cancellable {
          private final ReentrantLock lock;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  6. pkg/controller/controller_utils_test.go

    		unscheduled5Hours                   = pod("unscheduled-5-hours", "", v1.PodPending, false, 0, then5Hours, then5Hours, nil)
    		unscheduled8Hours                   = pod("unscheduled-10-hours", "", v1.PodPending, false, 0, then8Hours, then8Hours, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/concurrent/Task.kt

     * ----------
     *
     * Tasks control their recurrence schedule. The [runOnce] function returns -1L to signify that the
     * task should not be executed again. Otherwise it returns a delay until the next execution.
     *
     * A task has at most one next execution. If the same task instance is scheduled multiple times, the
     * earliest one wins. This applies to both executions scheduled with [TaskRunner.Queue.schedule] and
     * those implied by the returned execution delay.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/partitioned_topological_sort.cc

      int num_partitions_after = 0;
      int num_partitions_before = 0;
      int num_unscheduled_ops = 0;
    
      bool scheduled_everything = true;
      // Unscheduled operations and their respective partitions.
      llvm::DenseMap<Operation *, int> unscheduled_ops;
    
      // Mark all operations as unscheduled and precompute the partition
      // to which they belong.
      bool prev_part = false;
      for (Operation &op : ops) {
        ++num_all_ops;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskQueue.kt

       */
      fun schedule(
        task: Task,
        delayNanos: Long = 0L,
      ) {
        taskRunner.lock.withLock {
          if (shutdown) {
            if (task.cancelable) {
              taskRunner.logger.taskLog(task, this) { "schedule canceled (queue is shutdown)" }
              return
            }
            taskRunner.logger.taskLog(task, this) { "schedule failed (queue is shutdown)" }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/layout.go

    			cid := zerodegree[len(zerodegree)-1]
    			zerodegree = zerodegree[:len(zerodegree)-1]
    			if !scheduled[cid] {
    				bid = cid
    				continue blockloop
    			}
    		}
    
    		// Still nothing, pick the unscheduled successor block encountered most recently.
    		for len(succs) > 0 {
    			// Pop an element from the tail of the queue.
    			cid := succs[len(succs)-1]
    			succs = succs[:len(succs)-1]
    			if !scheduled[cid] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top