Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of about 10,000 for finalA (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/deployment/internal/SimpleBlockingDeployment.java

    import java.util.concurrent.locks.Lock;
    import java.util.concurrent.locks.ReentrantLock;
    
    class SimpleBlockingDeployment implements DeploymentInternal {
        private final Lock lock = new ReentrantLock();
        private final Condition upToDate = lock.newCondition();
    
        private final DeploymentInternal delegate;
    
        private boolean outOfDate;
    
        SimpleBlockingDeployment(DeploymentInternal delegate) {
            this.delegate = delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 18:00:07 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/ClassLoaderCache.java

    import java.util.concurrent.locks.ReentrantLock;
    
    @ThreadSafe
    @ServiceScope(Scope.Global.class)
    public class ClassLoaderCache {
        private final Lock lock = new ReentrantLock();
        private final Cache<ClassLoader, ClassLoaderDetails> classLoaderDetails;
        private final Cache<UUID, ClassLoader> classLoaderIds;
    
        public ClassLoaderCache() {
            classLoaderDetails = CacheBuilder.newBuilder().weakKeys().build();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

        }
    
        private static class Finished implements BuildOperationFinishedNotification {
    
            private final long timestamp;
    
            private final OperationIdentifier id;
            private final OperationIdentifier parentId;
            private final Object details;
            private final Object result;
            private final Throwable failure;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcess.java

    import static java.lang.String.format;
    
    public class DefaultWorkerProcess implements WorkerProcess {
        private final static Logger LOGGER = Logging.getLogger(DefaultWorkerProcess.class);
        private final Lock lock = new ReentrantLock();
        private final Condition condition = lock.newCondition();
        private ObjectConnection connection;
        private ConnectionAcceptor acceptor;
        private ExecHandle execHandle;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/job/PythonJob.java

            return resultBuf.toString();
    
        }
    
        protected void executePython() {
            final List<String> cmdList = new ArrayList<>();
            final ServletContext servletContext = ComponentUtil.getComponent(ServletContext.class);
            final ProcessHelper processHelper = ComponentUtil.getProcessHelper();
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    
            if (StringUtil.isBlank(filename)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheFactory.java

    public class DefaultCacheFactory implements CacheFactory, Closeable {
        private final Map<File, DirCacheReference> dirCaches = new HashMap<>();
        private final FileLockManager lockManager;
        private final ExecutorFactory executorFactory;
        private final BuildOperationRunner buildOperationRunner;
        private final Lock lock = new ReentrantLock();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 15:54:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

        private void importFessJson(final String fileName, final File tempFile) {
            try (final InputStream in = new FileInputStream(tempFile); final OutputStream out = Files.newOutputStream(getFessJsonPath())) {
                CopyUtil.copy(in, out);
            } catch (final IOException e) {
                logger.warn("Failed to process fess.json file: {}", fileName, e);
            } finally {
                deleteTempFile(tempFile);
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectInAnyOrder.java

    import java.util.Collection;
    import java.util.List;
    import java.util.concurrent.locks.Lock;
    
    class ExpectInAnyOrder implements TrackingHttpHandler {
        private final Lock lock;
        private final List<TrackingHttpHandler> expected;
        private final List<TrackingHttpHandler> available;
        private TrackingHttpHandler current = null;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:39:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultIncludedBuildTaskGraph.java

        }
    
        private static final int MONITORING_POLL_TIME = 30;
        private final BuildOperationRunner buildOperationRunner;
        private final BuildStateRegistry buildRegistry;
        private final WorkerLeaseService workerLeaseService;
        private final PlanExecutor planExecutor;
        private final BuildTreeWorkGraphPreparer workGraphPreparer;
        private final int monitoringPollTime;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:04:24 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top