Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,266 for pollable (0.13 sec)

  1. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJavaToolchainProvisioningService.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.annotation.Nullable;
    import javax.inject.Inject;
    import java.io.File;
    import java.net.URI;
    import java.util.Collection;
    import java.util.List;
    import java.util.Map;
    import java.util.Optional;
    import java.util.TreeMap;
    import java.util.concurrent.Callable;
    import java.util.stream.Collectors;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/JvmPluginsHelper.java

    import org.gradle.api.tasks.javadoc.Javadoc;
    import org.gradle.internal.Cast;
    import org.gradle.language.base.plugins.LifecycleBasePlugin;
    
    import javax.annotation.Nullable;
    import java.util.Set;
    import java.util.concurrent.Callable;
    import java.util.function.BiFunction;
    import java.util.function.Supplier;
    
    import static org.gradle.util.internal.TextUtil.camelToKebabCase;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

                  public void run() {
                    try {
                      Future<?> future =
                          executor.submit(
                              new Callable<@Nullable Void>() {
                                @Override
                                public @Nullable Void call() throws Exception {
                                  // WAIT #1
                                  barrier.await(1, TimeUnit.SECONDS);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  4. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningExtension.java

         * }
         * </code></pre>
         *
         * @since 6.0
         */
        @SuppressWarnings("unused")
        public void useInMemoryPgpKeys(@Nullable String defaultKeyId, @Nullable String defaultSecretKey, @Nullable String defaultPassword) {
            setSignatories(new InMemoryPgpSignatoryProvider(defaultKeyId, defaultSecretKey, defaultPassword));
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeDependentBinariesResolutionStrategy.java

    import javax.annotation.Nullable;
    import java.io.StringWriter;
    import java.util.ArrayDeque;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Deque;
    import java.util.HashMap;
    import java.util.LinkedHashMap;
    import java.util.LinkedHashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.concurrent.Callable;
    import java.util.concurrent.ExecutionException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

      public abstract static class CustomScheduler extends Scheduler {
    
        /** A callable class that can reschedule itself using a {@link CustomScheduler}. */
        private final class ReschedulableCallable implements Callable<@Nullable Void> {
    
          /** The underlying task. */
          private final Runnable wrappedRunnable;
    
          /** The executor on which this Callable will be scheduled. */
          private final ScheduledExecutorService executor;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/Platform.java

    import jsinterop.annotations.JsMethod;
    import jsinterop.annotations.JsPackage;
    import jsinterop.annotations.JsProperty;
    import jsinterop.annotations.JsType;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Minimal GWT emulation of {@code com.google.common.collect.Platform}.
     *
     * @author Hayward Chan
     */
    final class Platform {
      static <K, V> Map<K, V> newHashMapWithExpectedSize(int expectedSize) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 29 18:16:45 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/firUtils.kt

            is KtFunctionLiteral -> (parent as? KtLambdaExpression)?.unwrap()
            else -> this
        } ?: this
    }
    
    internal fun KaTypeNullability.toConeNullability() = when (this) {
        KaTypeNullability.NULLABLE -> ConeNullability.NULLABLE
        KaTypeNullability.NON_NULLABLE -> ConeNullability.NOT_NULL
        KaTypeNullability.UNKNOWN -> ConeNullability.UNKNOWN
    }
    
    /**
     * @receiver A symbol that needs to be imported
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/tasks/PublishToIvyRepository.java

    import org.gradle.internal.service.ServiceRegistry;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.annotation.Nullable;
    import javax.inject.Inject;
    import java.net.URI;
    import java.util.Collection;
    import java.util.Set;
    import java.util.concurrent.Callable;
    
    import static org.gradle.internal.serialization.Transient.varOf;
    
    /**
     * Publishes an IvyPublication to an IvyArtifactRepository.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

      public abstract static class CustomScheduler extends Scheduler {
    
        /** A callable class that can reschedule itself using a {@link CustomScheduler}. */
        private final class ReschedulableCallable implements Callable<@Nullable Void> {
    
          /** The underlying task. */
          private final Runnable wrappedRunnable;
    
          /** The executor on which this Callable will be scheduled. */
          private final ScheduledExecutorService executor;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 27.5K bytes
    - Viewed (0)
Back to top