Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 210 for Synchronizer (0.2 sec)

  1. 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)
  2. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultMemoryManager.java

                }
            }
        }
    
        @Override
        public void addMemoryHolder(MemoryHolder holder) {
            synchronized (holdersLock) {
                holders.add(holder);
            }
        }
    
        @Override
        public void removeMemoryHolder(MemoryHolder holder) {
            synchronized (holdersLock) {
                holders.remove(holder);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/services/internal/RegisteredBuildServiceProvider.java

            synchronized (instanceLock) {
                stopActions = stopActions.plus(stopAction);
            }
        }
    
        @Override
        protected Value<? extends T> calculateOwnValue(ValueConsumer consumer) {
            return Value.of(getInstance());
        }
    
        private T getInstance() {
            listener.beforeGet(this);
            synchronized (instanceLock) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. platforms/extensibility/unit-test-fixtures/src/main/java/org/gradle/testfixtures/internal/TestInMemoryCacheFactory.java

                synchronized (this) {
                    return action.get();
                }
            }
    
            @Override
            public void useCache(Runnable action) {
                assertNotClosed();
                // The contract of useCache() means we have to provide some basic synchronization.
                synchronized (this) {
                    action.run();
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 6K 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/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpClientFactory.java

                return jsch;
            }
        }
    
        public void releaseSftpClient(LockableSftpClient sftpClient) {
            synchronized (lock) {
                idleClients.put(sftpClient.getHost(), sftpClient);
            }
        }
    
        @Override
        public void stop() {
            synchronized (lock) {
                try {
                    CompositeStoppable.stoppable(allClients).stop();
                } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

         *
         * @param propertyName The name of the property to set
         * @param value The value to temporarily set the property to
         * @param factory Instance created by the Factory implementation
         */
        public synchronized <T> T withSystemProperty(String propertyName, String value, Factory<T> factory) {
            String originalValue = overrideProperty(propertyName, value);
    
            try {
                return factory.create();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/artifact/testutils/TestFileManager.java

            }
        }
    
        public void markForDeletion(File toDelete) {
            filesToDelete.add(toDelete);
            warnAboutCleanup = true;
        }
    
        public synchronized File createTempDir() {
            try {
                Thread.sleep(20);
            } catch (InterruptedException e) {
                // ignore
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AggregateFutureState.java

          synchronized (state) {
            if (state.seenExceptions == expect) {
              state.seenExceptions = update;
            }
          }
        }
    
        @Override
        int decrementAndGetRemainingCount(AggregateFutureState<?> state) {
          synchronized (state) {
            return --state.remaining;
          }
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 20:40:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top