Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 186 for stopped_ (0.15 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/InternalCancellableConnection.java

         * @throws InternalBuildCancelledException When the operation was cancelled before it could complete.
         * @throws IllegalStateException When this connection has been stopped.
         * @since 2.1-rc-1
         */
        BuildResult<?> getModel(ModelIdentifier modelIdentifier, InternalCancellationToken cancellationToken,
                                BuildParameters operationParameters) throws
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. tensorflow/cc/training/coordinator.h

      /// supposed to be in running state when they are registered here.
      Status RegisterRunner(std::unique_ptr<RunnerInterface> runner);
    
      /// Returns true iff all the registered runners have been stopped.
      bool AllRunnersStopped();
    
      /// Requests all running threads to stop.
      Status RequestStop();
    
      /// Returns true if its RequestStop() has been called.
      bool ShouldStop();
    
    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. src/main/java/org/codelibs/core/timer/TimeoutManager.java

        public synchronized void stop() {
            if (thread != null) {
                thread.interrupt();
                thread = null;
                if (logger.isDebugEnabled()) {
                    logger.debug("TimeoutManager stopped.");
                }
            }
        }
    
        /**
         * スレッドに割り込みを行い、終了するまで待機します。
         *
         * @param timeoutMillis
         *            待機する時間(ミリ秒単位)
         * @return スレッドが終了した場合は<code>true</code>
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerControl.java

        /**
         * Starts the worker process, blocking until successfully started.
         */
        WorkerProcess start();
    
        /**
         * Requests that the worker complete all work and stop. Blocks until the worker process has stopped.
         */
        ExecResult stop();
    
        /**
         * Requests that the worker stop immediately, without waiting for it to complete its work.
         */
        void stopNow();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. tests/fuzz/autoregistration_controller_fuzzer.go

    	"istio.io/istio/pkg/config/schema/collections"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/keepalive"
    )
    
    type fakeConn struct {
    	proxy    *model.Proxy
    	connTime time.Time
    	stopped  bool
    }
    
    func makeConn(proxy *model.Proxy, connTime time.Time) *fakeConn {
    	return &fakeConn{proxy: proxy, connTime: connTime}
    }
    
    func (f *fakeConn) ID() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/Stoppable.java

     */
    public interface Stoppable {
        /**
         * <p>Requests a graceful stop of this object. Blocks until all concurrent activity has been completed.</p>
         *
         * <p>If this object has already been stopped, this method does nothing.</p>
         */
        void stop();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 989 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/base/timings.go

    					}
    					// events associated with stop replace prior events
    					if e := t.events[i]; e != nil {
    						events = e
    					}
    				}
    			} else {
    				// previous phase stopped
    				if qt.start {
    					// between a stopped and started phase; unaccounted time
    					unaccounted += dt
    				} else {
    					// previous stop implicitly started current phase
    					label = qt.label
    					events = t.events[i]
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. samples/jwt-server/src/main.go

    		}
    	}
    
    	response.WriteHeader(http.StatusOK)
    	response.Write([]byte(string(jwtKey)))
    }
    
    func (s *JWTServer) startHTTP(address string, wg *sync.WaitGroup) {
    	defer func() {
    		wg.Done()
    		log.Printf("Stopped JWT HTTP server")
    	}()
    
    	listener, err := net.Listen("tcp", address)
    	if err != nil {
    		log.Fatalf("Failed to create HTTP server: %v", err)
    	}
    	// Store the port for test only.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 16 23:56:50 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

          finalizeReferentCalled = true;
        }
      }
    
      /**
       * Keeps a weak reference to the underlying reference queue. When this reference is cleared, we
       * know that the background thread has stopped and released its strong reference.
       */
      private WeakReference<ReferenceQueue<Object>> queueReference;
    
    
      public void testThatFinalizerStops() {
        weaklyReferenceQueue();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. pkg/scheduler/metrics/metric_recorder.go

    	interval time.Duration
    
    	// stopCh is used to stop the goroutine which periodically flushes metrics.
    	stopCh <-chan struct{}
    	// IsStoppedCh indicates whether the goroutine is stopped. It's used in tests only to make sure
    	// the metric flushing goroutine is stopped so that tests can collect metrics for verification.
    	IsStoppedCh chan struct{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 16 07:27:08 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top