Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 755 for synchronised (0.25 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/DependentComponentsReport.java

        public void report() {
            // Once we are here, the project lock is held. If we synchronize to avoid cross-project operations, we will have a dead lock.
            getWorkerLeaseService().runAsIsolatedTask(() -> {
                // Output reports per execution, not mixed.
                // Cross-project ModelRegistry operations do not happen concurrently.
                synchronized (DependentComponentsReport.class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/concurrent/Instants.groovy

        void setTimeout(int instantTimeout) {
            synchronized (lock) {
                this.instantTimeout = instantTimeout
            }
        }
    
        @Override
        String toString() {
            return "instants"
        }
    
        void operationStarted() {
            synchronized (lock) {
                operations++
            }
        }
    
        void operationFinished() {
            synchronized (lock) {
                operations--
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. test-site/activator-launch-1.3.2.jar

    Launch$$anonfun$resolveConfig$1(LaunchConfiguration); } xsbt/boot/Cache.class package xsbt.boot; public final synchronized class Cache { private final scala.Function2 create; private final java.util.HashMap delegate; public final synchronized Object apply(Object, Object); private Object newEntry(Object, Object); public void Cache(scala.Function2); } xsbt/boot/ListMap$$anon$1.class package xsbt.boot; public final synchronized class ListMap$$anon$1 extends ListMap { public final scala.Function1 defaultF$1; public final...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  4. .teamcity/.mvn/wrapper/maven-wrapper.jar

    artifactId=maven-wrapper org/apache/maven/wrapper/BootstrapMainStarter.class package org.apache.maven.wrapper; public synchronized class BootstrapMainStarter { public void BootstrapMainStarter(); public void start(String[], java.io.File) throws Exception; private java.io.File findLauncherJar(java.io.File); } org/apache/maven/wrapper/DefaultDownloader$1.class package org.apache.maven.wrapper; synchronized class DefaultDownloader$1 extends java.net.Authenticator { void DefaultDownloader$1(DefaultDownloader); protected...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 49.5K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar

    org/hamcrest/BaseMatcher.class package org.hamcrest; public abstract synchronized class BaseMatcher implements Matcher { public void BaseMatcher(); public final void _dont_implement_Matcher___instead_extend_BaseMatcher_(); public void describeMismatch(Object, Description); public String toString(); } org/hamcrest/Condition$1.class package org.hamcrest; synchronized class Condition$1 { } org/hamcrest/Condition$Matched.class package org.hamcrest; final synchronized class Condition$Matched extends Condition { private...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 44K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/testers/CollectionSpliteratorTester.java

        initCollectionWithNullElement();
        synchronized (collection) { // for Collections.synchronized
          assertFalse(collection.spliterator().hasCharacteristics(Spliterator.NONNULL));
        }
      }
    
      @CollectionFeature.Require(SUPPORTS_ADD)
      public void testSpliteratorNotImmutable_CollectionAllowsAdd() {
        // If add is supported, verify that IMMUTABLE is not reported.
        synchronized (collection) { // for Collections.synchronized
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    component.repository.exception.ComponentLifecycleEx; public synchronized void setClassWorld(org.codehaus.classworlds.ClassWorld); public synchronized void setConfiguration(java.net.URL) throws java.io.IOException; public synchronized void setConfiguration(java.io.Reader) throws java.io.IOException; public synchronized void addContextValue(Object, Object); public synchronized void setProperties(java.util.Properties); public synchronized void setProperties(java.io.File); public void setLoggerManag...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/io/NoCloseOutputStream.java

            this.delegate = delegate;
        }
    
        @Override
        public synchronized void write(int b) throws IOException {
            delegate.write(b);
        }
    
        @Override
        public synchronized void flush() throws IOException {
            delegate.flush();
        }
    
        @Override
        public synchronized void write(byte[] b, int off, int len) throws IOException {
            delegate.write(b, off, len);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         */
        WorkResult copy(Action<? super CopySpec> action);
    
        /**
         * Synchronizes the contents of a destination directory with some source directories and files.
         * The given action is used to configure a {@link CopySpec}, which is then used to synchronize the files.
         *
         * @param action action Action to configure the CopySpec.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    component.repository.exception.ComponentLifecycleEx; public synchronized void setClassWorld(org.codehaus.classworlds.ClassWorld); public synchronized void setConfiguration(java.net.URL) throws java.io.IOException; public synchronized void setConfiguration(java.io.Reader) throws java.io.IOException; public synchronized void addContextValue(Object, Object); public synchronized void setProperties(java.util.Properties); public synchronized void setProperties(java.io.File); public void setLoggerManag...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 205.7K bytes
    - Viewed (0)
Back to top