Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 156 for GetStatus (0.21 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/ProgressStartEvent.java

        public String getDescription() {
            return description;
        }
    
        @Override
        @Nullable
        public String getLoggingHeader() {
            return loggingHeader;
        }
    
        public String getStatus() {
            return status;
        }
    
        public int getTotalProgress() {
            return totalProgress;
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/cc/training/coordinator.h

      Status Join();
    
      /// Reports status to the coordinator. This is usually called by threads.
      void ReportStatus(const Status& status);
    
      /// Returns the latest status.
      Status GetStatus();
    
      /// Returns immediately if the coordinator is stopped or blocks until
      /// RequestStop() is called.
      void WaitForStop();
    
      // Returns the cost graph from stored run metadata in registered runners.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/runtime/runtime.go

    	if err != nil {
    		return errors.Wrap(err, "container runtime is not running")
    	}
    
    	for _, condition := range res.GetStatus().GetConditions() {
    		if condition.GetType() == runtimeapi.RuntimeReady && // NetworkReady will not be tested on purpose
    			!condition.GetStatus() {
    			return errors.Errorf(
    				"container runtime condition %q is not true. reason: %s, message: %s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockResponse.kt

      }
    
      @JvmName("-deprecated_getStatus")
      @Deprecated(
        message = "moved to var",
        replaceWith = ReplaceWith(expression = "status"),
        level = DeprecationLevel.ERROR,
      )
      fun getStatus(): String = status
    
      fun setStatus(status: String) =
        apply {
          this.status = status
        }
    
      fun setResponseCode(code: Int): MockResponse {
        val reason =
          when (code) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. mockwebserver/api/mockwebserver3.api

    	public final fun getPushPromises ()Ljava/util/List;
    	public final fun getSettings ()Lokhttp3/internal/http2/Settings;
    	public final fun getSocketPolicy ()Lmockwebserver3/SocketPolicy;
    	public final fun getStatus ()Ljava/lang/String;
    	public final fun getStreamHandler ()Lmockwebserver3/StreamHandler;
    	public final fun getThrottleBytesPerPeriod ()J
    	public final fun getThrottlePeriodNanos ()J
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 03 21:59:45 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java

            this.response.reset();
            try {
                getTreeHandle().send(this.nextRequest, this.response);
                return this.response.getStatus() != NtStatus.NT_STATUS_NO_MORE_FILES;
            }
            catch ( SmbException e ) {
                if ( e.getNtStatus() == NtStatus.NT_STATUS_NO_MORE_FILES ) {
                    log.debug("No more entries", e);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 5.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/ReportDaemonStatusClient.java

            if (!statuses.isEmpty()) {
                for(Status status : statuses) {
                    Long pid = status.getPid();
                    LOGGER.quiet(String.format(STATUS_FORMAT, pid == null ? "PID unknown" : pid, status.getStatus(), status.getVersion()));
                }
            }
        }
    
        @VisibleForTesting
        void printStoppedDaemons(final List<DaemonStopEvent> stopEvents) {
            if (!stopEvents.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventTransformer.java

                    invokeListener(startEvent);
                    return;
                }
    
                if (startEvent.getParentProgressOperationId() == null || GUtil.isTrue(startEvent.getLoggingHeader()) || GUtil.isTrue(startEvent.getStatus()) || startEvent.getBuildOperationCategory() != BuildOperationCategory.UNCATEGORIZED) {
                    forwarded.add(startEvent.getProgressOperationId());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/serializer/ProgressStartEventSerializer.java

                    flags |= LOGGING_HEADER_IS_SUB_DESCRIPTION;
                } else {
                    flags |= LOGGING_HEADER;
                }
            }
    
            String status = event.getStatus();
            if (!status.isEmpty()) {
                if (description.endsWith(status)) {
                    flags |= STATUS_IS_SUB_DESCRIPTION;
                } else {
                    flags |= STATUS;
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. tensorflow/cc/training/coordinator_test.cc

      }
    
      Status Join() override {
        if (join_counter_ != nullptr) {
          (*join_counter_)++;
        }
        thread_pool_.reset();
        return status_;
      }
    
      Status GetStatus() { return status_; }
    
      void SetStatus(const Status& status) { status_ = status; }
    
      bool IsRunning() const override { return !stopped_; };
    
      void Stop() { stopped_ = true; }
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 23 09:10:43 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top