Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 84 for Synchronizer (0.17 sec)

  1. android/guava/src/com/google/common/collect/Tables.java

       * ...
       * Map<C, V> row = table.row(rowKey);  // Needn't be in synchronized block
       * ...
       * synchronized (table) {  // Synchronizing on table, not row!
       *   Iterator<Entry<C, V>> i = row.entrySet().iterator(); // Must be in synchronized block
       *   while (i.hasNext()) {
       *     foo(i.next());
       *   }
       * }
       * }</pre>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientsManager.java

            WorkerDaemonClient client = workerDaemonStarter.startDaemon(forkOptions);
            synchronized (lock) {
                allClients.add(client);
            }
            return client;
        }
    
        public void release(WorkerDaemonClient client) {
            synchronized (lock) {
                if (!client.isFailed()) {
                    idleClients.add(client);
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

        @Nullable
        public Object remove(Object key) {
            Object result;
            synchronized (delegate) {
                result = delegate.remove(key);
            }
            reportAccess(key, result);
            reportRemoval(key);
            return result;
    
        }
    
        @Override
        public void putAll(Map<?, ?> t) {
            synchronized (delegate) {
                delegate.putAll(t);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    utionExcepti.class package org.apache.maven.plugin; public synchronized class MojoExecutionExcepti extends AbstractMojoExecutio { public void MojoExecutionExcepti(Object, String, String); public void MojoExecutionExcepti(String, Exception); public void MojoExecutionExcepti(String, Throwable); public void MojoExecutionExcepti(String); } org/apache/maven/plugin/MojoFailureException.class package org.apache.maven.plugin; public synchronized class MojoFailureException extends AbstractMojoExecutio { public...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/test/remote-repo/org/apache/maven/its/plugins/maven-it-plugin/0.1/maven-it-plugin-0.1.jar

    maven-plugin-api jar 2.0 org/apache/maven/plugin/coreit/AMojo.class package org.apache.maven.plugin.coreit; public synchronized class AMojo extends org.apache.maven.plugin.AbstractMojo { private String version; private String[] models; public void AMojo(); public void execute(); } org/apache/maven/plugin/coreit/BMojo.class package org.apache.maven.plugin.coreit; public synchronized class BMojo extends org.apache.maven.plugin.AbstractMojo { private String version; private String[] models; public void...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

        public synchronized static void init(WarningMode warningMode, BuildOperationProgressEventEmitter buildOperationProgressEventEmitter, Problems problemsService, ProblemStream problemStream) {
            DEPRECATED_FEATURE_HANDLER.init(warningMode, buildOperationProgressEventEmitter, problemsService, problemStream);
        }
    
        public synchronized static void reset() {
            DEPRECATED_FEATURE_HANDLER.reset();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractLazyModuleComponentResolveMetadata.java

            metadata.copyCachedConfigurations(this.configurations);
            if (copyGraphVariants) {
                this.graphVariants = metadata.graphVariants;
            }
        }
    
        private synchronized void copyCachedConfigurations(Map<String, ModuleConfigurationMetadata> target) {
            target.putAll(configurations);
        }
    
        @Override
        public VariantMetadataRules getVariantMetadataRules() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestWorker.java

        private TestClassProcessor processor;
        private TestResultProcessor resultProcessor;
    
        /**
         * Note that the state object is not synchronized and not thread-safe.  Any modifications to the
         * the state should ONLY be made inside the main thread or inside a command passed to the run queue
         * (which will execute on the main thread).
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJavaInstallationRegistry.java

            Installations(Supplier<Set<InstallationLocation>> initializer) {
                this.initializer = initializer;
            }
    
            synchronized Set<InstallationLocation> get() {
                initIfNeeded();
                return locations;
            }
    
            synchronized void add(InstallationLocation location) {
                initIfNeeded();
                locations.add(location);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

            void queueIncoming(Message message) {
                synchronized (lock) {
                    receiveQueue << message
                    lock.notifyAll()
                }
            }
    
            void queueBroken(Throwable failure = new RuntimeException()) {
                queueIncoming(new Failure(failure))
            }
    
            Message receive() {
                synchronized (lock) {
                    while (receiveQueue.empty) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top