Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 748 for Synchronizer (0.16 sec)

  1. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/io/SynchronizedOutputStream.java

            this.delegate = delegate;
        }
    
        @Override
        public synchronized void write(int b) throws IOException {
            delegate.write(b);
        }
    
        @Override
        public synchronized void write(byte[] b) throws IOException {
            delegate.write(b);
        }
    
        @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)
  2. platforms/documentation/docs/src/snippets/plugins/consuming/common/ivy-repo/com.example/sample-plugins/1.0.0/sample-plugins-1.0.0.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 com/example/hello/HelloPlugin$1.class package com.example.hello; synchronized class HelloPlugin$1 implements org.gradle.api.Action { void HelloPlugin$1(HelloPlugin); public void execute(org.gradle.api.Task); } com/example/hello/HelloPlugin.class package com.example.hello; public synchronized class HelloPlugin implements org.gradle.api.Plugin { public void HelloPlugin(); public void apply(org.gradle.api.Project); } com/example/goodbye/GoodbyePlugin.class...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventRenderer.java

        }
    
        @Override
        public Snapshot snapshot() {
            synchronized (lock) {
                // Currently only snapshot the console output listener. Should snapshot all output listeners, and cleanup in restore()
                return new SnapshotImpl(logLevel.get(), console);
            }
        }
    
        @Override
        public void restore(Snapshot state) {
            synchronized (lock) {
                SnapshotImpl snapshot = (SnapshotImpl) state;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/testers/CollectionStreamTester.java

        synchronized (collection) { // to allow Collections.synchronized* tests to pass
          Helpers.assertEqualIgnoringOrder(
              getSampleElements(), Arrays.asList(collection.stream().toArray()));
        }
      }
    
      @CollectionFeature.Require(KNOWN_ORDER)
      public void testStreamToArrayKnownOrder() {
        synchronized (collection) { // to allow Collections.synchronized* tests to pass
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/DirectExecutorService.java

        startTask();
        try {
          command.run();
        } finally {
          endTask();
        }
      }
    
      @Override
      public boolean isShutdown() {
        synchronized (lock) {
          return shutdown;
        }
      }
    
      @Override
      public void shutdown() {
        synchronized (lock) {
          shutdown = true;
          if (runningTasks == 0) {
            lock.notifyAll();
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/multiproject/common/maven-repo/com/example/sample-plugins/1.0.0/sample-plugins-1.0.0.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 com/example/hello/HelloPlugin$1.class package com.example.hello; synchronized class HelloPlugin$1 implements org.gradle.api.Action { void HelloPlugin$1(HelloPlugin); public void execute(org.gradle.api.Task); } com/example/hello/HelloPlugin.class package com.example.hello; public synchronized class HelloPlugin implements org.gradle.api.Plugin { public void HelloPlugin(); public void apply(org.gradle.api.Project); } com/example/goodbye/GoodbyePlugin.class...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. gradle/wrapper/gradle-wrapper.jar

    dleUserHomeLookup.class package org.gradle.wrapper; public abstract synchronized class GradleUserHomeLookup { public static final String DEFAULT_GRADLE_USER_HOME; static void <clinit>(); } org/gradle/wrapper/GradleWrapperMain.class package org.gradle.wrapper; public synchronized class GradleWrapperMain { public static void main(String[]); } org/gradle/wrapper/Install$1.class package org.gradle.wrapper; public final synchronized class Install$1 implements java.util.concurrent.Callable { public void...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 08:44:14 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    ter.class package org.codehaus.plexus.context; public synchronized class ContextMapAdapter extends java.util.HashMap { private Context context; public void ContextMapAdapter(Context); public Object get(Object); } org/codehaus/plexus/context/DefaultContext$1.class package org.codehaus.plexus.context; synchronized class DefaultContext$1 { } org/codehaus/plexus/context/DefaultContext$Hidden.class package org.codehaus.plexus.context; synchronized class DefaultContext$Hidden implements java.io.Serializable...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 233.3K bytes
    - Viewed (0)
  9. 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: Mon Mar 04 22:45:41 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    ption.class package org.codehaus.plexus.component.composition; public synchronized class CompositionException extends Exception { private static final long serialVersionUID = -5587124702588800322; public void CompositionException(String); public void CompositionException(String, Throwable); } org/codehaus/plexus/component/discovery/ComponentDiscoveryEv.class package org.codehaus.plexus.component.discovery; public synchronized class ComponentDiscoveryEv { private org.codehaus.plexus.component.rep...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 32.4K bytes
    - Viewed (0)
Back to top