Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,219 for rerunning (0.21 sec)

  1. staging/src/k8s.io/api/batch/v1/zz_generated.prerelease-lifecycle.go

    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *CronJob) APILifecycleIntroduced() (major, minor int) {
    	return 1, 21
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractIdleService.java

      }
    
      @Override
      public String toString() {
        return serviceName() + " [" + state() + "]";
      }
    
      @Override
      public final boolean isRunning() {
        return delegate.isRunning();
      }
    
      @Override
      public final State state() {
        return delegate.state();
      }
    
      /** @since 13.0 */
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 13:59:28 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Stopwatch.java

       */
      public boolean isRunning() {
        return isRunning;
      }
    
      /**
       * Starts the stopwatch.
       *
       * @return this {@code Stopwatch} instance
       * @throws IllegalStateException if the stopwatch is already running.
       */
      @CanIgnoreReturnValue
      public Stopwatch start() {
        checkState(!isRunning, "This stopwatch is already running.");
        isRunning = true;
        startTick = ticker.read();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. tensorflow/cc/training/coordinator.cc

      mutex_lock l(runners_lock_);
      for (const auto& runner : runners_) {
        if (runner->IsRunning()) {
          return false;
        }
      }
      return true;
    }
    
    Status Coordinator::RequestStop() {
      mutex_lock l(mu_);
      if (should_stop_) {
        return Status(absl::StatusCode::kFailedPrecondition,
                      "The Coordinator is not running.");
      }
      should_stop_ = true;
      wait_for_stop_.notify_all();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:30:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/policy/v1/zz_generated.prerelease-lifecycle.go

    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *Eviction) APILifecycleIntroduced() (major, minor int) {
    	return 1, 22
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. pkg/kube/kclient/interfaces.go

    	// Create creates a resource, returning the newly applied resource.
    	Create(object T) (T, error)
    	// Update updates a resource, returning the newly applied resource.
    	Update(object T) (T, error)
    	// UpdateStatus updates a resource's status, returning the newly applied resource.
    	UpdateStatus(object T) (T, error)
    	// Patch patches the resource, returning the newly applied resource.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:09:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/dryrun/dryrun.go

    }
    
    // WaitForStaticPodHashChange returns a dummy nil error in order for the flow to just continue as we're dryrunning
    func (w *Waiter) WaitForStaticPodHashChange(_, _, _ string) error {
    	return nil
    }
    
    // PrintFilesIfDryRunning prints the static pod manifests to stdout and informs about the temporary directory to go and lookup when dry running
    func PrintFilesIfDryRunning(needPrintManifest bool, manifestDir string, outputWriter io.Writer) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerAction.java

        protected EditBody createEditBody(final ScheduledJob entity) {
            final EditBody body = new EditBody();
            copyBeanToBean(entity, body, op -> op.exclude(Constants.COMMON_CONVERSION_RULE));
            body.running = entity.isRunning();
            return body;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_signal_ios_arm64.c

    	mach_msg_type_number_t code_count)
    {
    	kern_return_t ret;
    	arm_unified_thread_state_t thread_state;
    	mach_msg_type_number_t state_count = ARM_UNIFIED_THREAD_STATE_COUNT;
    
    	// Returning KERN_SUCCESS intercepts the exception.
    	//
    	// Returning KERN_FAILURE lets the exception fall through to the
    	// next handler, which is the standard signal emulation code
    	// registered on the task port.
    
    	if (exception != EXC_BAD_ACCESS) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:04:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/generators/go122-syscall-steal-proc-simple.go

    	b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunning)
    	b0.Event("GoSyscallBegin", testgen.Seq(1), testgen.NoStack)
    	b0.Event("GoSyscallEndBlocked")
    
    	// A running goroutine steals proc 0.
    	b1 := g.Batch(trace.ThreadID(1), 0)
    	b1.Event("ProcStatus", trace.ProcID(2), go122.ProcRunning)
    	b1.Event("GoStatus", trace.GoID(2), trace.ThreadID(1), go122.GoRunning)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 988 bytes
    - Viewed (0)
Back to top