Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for finalA (0.16 sec)

  1. android/guava/src/com/google/common/util/concurrent/AbstractService.java

            }
          };
      private static final ListenerCallQueue.Event<Listener> STOPPING_FROM_STARTING_EVENT =
          stoppingEvent(STARTING);
      private static final ListenerCallQueue.Event<Listener> STOPPING_FROM_RUNNING_EVENT =
          stoppingEvent(RUNNING);
    
      private static final ListenerCallQueue.Event<Listener> TERMINATED_FROM_NEW_EVENT =
          terminatedEvent(NEW);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/LazyConsumerActionExecutor.java

    public class LazyConsumerActionExecutor implements ConsumerActionExecutor {
        private final Distribution distribution;
        private final ToolingImplementationLoader implementationLoader;
        private final LoggingProvider loggingProvider;
    
        private final Lock lock = new ReentrantLock();
        private final Condition condition = lock.newCondition();
        private final Set<Thread> executing = new HashSet<Thread>();
        private boolean stopped;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCoordinator.java

        private final static Logger LOG = LoggerFactory.getLogger(DefaultCacheCoordinator.class);
    
        private final String cacheDisplayName;
        private final File baseDir;
        private final CacheCleanupExecutor cleanupAction;
        private final ExecutorFactory executorFactory;
        private final FileAccess fileAccess;
        private final Map<String, IndexedCacheEntry<?, ?>> caches = new HashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 12:21:15 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

    @CompileStatic
    abstract class PerformanceTest extends DistributionTest {
        public static final String TC_URL = "https://builds.gradle.org/viewLog.html?buildId="
        public static final Set<String> NON_CACHEABLE_VERSIONS = Sets.newHashSet("last", "nightly", "flakiness-detection-commit")
        private final Property<String> baselines = getProject().getObjects().property(String.class)
    
        private final Map<String, String> databaseParameters = new HashMap<>()
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/AsyncCacheAccessDecoratedCache.java

        @Nullable
        @Override
        public V get(final K key) {
            return asyncCacheAccess.read(() -> indexedCache.getIfPresent(key));
        }
    
        @Override
        public V get(K key, Function<? super K, ? extends V> producer, Runnable completion) {
            throw new UnsupportedOperationException();
        }
    
        @Override
        public void putLater(final K key, final V value, final Runnable completion) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/service/scopes/DefaultGradleUserHomeScopeServiceRegistry.java

        public static final String REUSE_USER_HOME_SERVICES = "org.gradle.internal.reuse.user.home.services";
        private final ServiceRegistry sharedServices;
        private final ServiceRegistrationProvider provider;
        private final Lock lock = new ReentrantLock();
        private final Map<File, Services> servicesForHomeDir = new HashMap<>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/DefaultListenerManager.java

            private final Class<T> type;
            private final ListenerDispatch dispatch;
            private final ListenerDispatch dispatchNoLogger;
            private final boolean stateful;
    
            private volatile ProxyDispatchAdapter<T> source;
            private final Set<ListenerDetails> listeners = new LinkedHashSet<ListenerDetails>();
            private final List<Runnable> queuedOperations = new LinkedList<Runnable>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 10:09:43 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

        }
    
        public JobProcess startProcess(final String sessionId, final List<String> cmdList, final Consumer<ProcessBuilder> pbCall) {
            return startProcess(sessionId, cmdList, pbCall, InputStreamThread.MAX_BUFFER_SIZE, null);
        }
    
        public synchronized JobProcess startProcess(final String sessionId, final List<String> cmdList, final Consumer<ProcessBuilder> pbCall,
                final int bufferSize, final Consumer<String> outputCallback) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. subprojects/core/src/testFixtures/groovy/org/gradle/util/internal/MultithreadedTestRule.java

        private static final Logger LOGGER = LoggerFactory.getLogger(MultithreadedTestRule.class);
        private static final int MAX_WAIT_TIME = 5000;
        private ExecutorImpl executor;
        private final Lock lock = new ReentrantLock();
        private final Condition condition = lock.newCondition();
        private final Set<Thread> active = new HashSet<Thread>();
        private final Set<Thread> synching = new HashSet<Thread>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

            final CrawlerWebServer server1 = new CrawlerWebServer(7070);
            server1.start();
            final CrawlerWebServer server2 = new CrawlerWebServer(7071);
            server2.start();
    
            final String url1 = "http://localhost:7070/";
            final String url2 = "http://localhost:7071/";
            try {
                final int maxCount = 10;
                final int numOfThread = 10;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18K bytes
    - Viewed (0)
Back to top