Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for isShutdown (0.3 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

            executorServiceTypeOnCurrentJvm()     | Executor                       | "java.util.concurrent.Executors.newSingleThreadExecutor().tap { shutdown() }"
            ByteArrayInputStream                  | InputStream                    | "new java.io.ByteArrayInputStream([] as byte[])"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  2. pilot/test/xds/fake.go

    	// Disable debounce to reduce test times
    	s.DebounceOptions.DebounceAfter = opts.DebounceTime
    	// Setup time to Now instead of process start to make logs not misleading
    	s.DiscoveryStartTime = time.Now()
    	t.Cleanup(s.Shutdown)
    
    	serviceHandler := func(_, curr *model.Service, _ model.Event) {
    		pushReq := &model.PushRequest{
    			Full:           true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 16:08:52 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  3. pkg/controller/podgc/gc_controller_test.go

    			}
    			for _, pod := range test.pods {
    				podInformer.Informer().GetStore().Add(pod)
    			}
    			// Overwrite queue
    			fakeClock := testingclock.NewFakeClock(time.Now())
    			gcc.nodeQueue.ShutDown()
    			gcc.nodeQueue = workqueue.NewTypedDelayingQueueWithConfig(workqueue.TypedDelayingQueueConfig[string]{Clock: fakeClock, Name: "podgc_test_queue"})
    
    			// First GC of orphaned pods
    			gcc.gc(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

          if (d > 0L) millis = d / (1000 * 1000);
          else break;
        }
      }
    
      /** Waits out termination of a thread pool or fails doing so. */
      void joinPool(ExecutorService exec) {
        try {
          exec.shutdown();
          assertTrue(
              "ExecutorService did not terminate in a timely manner",
              exec.awaitTermination(2 * LONG_DELAY_MS, MILLISECONDS));
        } catch (SecurityException ok) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top