Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 156 for Signal (0.22 sec)

  1. android/guava/src/com/google/common/base/Equivalence.java

       *
       * @since 10.0
       */
      public final Predicate<@Nullable T> equivalentTo(@CheckForNull T target) {
        return new EquivalentToPredicate<>(this, target);
      }
    
      private static final class EquivalentToPredicate<T>
          implements Predicate<@Nullable T>, Serializable {
    
        private final Equivalence<T> equivalence;
        @CheckForNull private final T target;
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 24 01:41:50 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSessionFactory.java

    import org.eclipse.aether.RepositorySystem;
    
    @Singleton
    @Named
    public class DefaultSessionFactory {
        private final RepositorySystem repositorySystem;
        private final MavenRepositorySystem mavenRepositorySystem;
        private final Lookup lookup;
        private final RuntimeInformation runtimeInformation;
    
        @Inject
        @SuppressWarnings("checkstyle:ParameterNumber")
        public DefaultSessionFactory(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 12:55:57 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

    /**
     * SessionScope
     */
    public class SessionScope implements Scope {
    
        private static final Provider<Object> SEEDED_KEY_PROVIDER = () -> {
            throw new IllegalStateException();
        };
    
        /**
         * ScopeState
         */
        protected static final class ScopeState {
            private final Map<Key<?>, CachingProvider<?>> provided = new ConcurrentHashMap<>();
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 12:52:20 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableMap.java

                  requireNonNull(localAlternatingKeysAndValues[inI++]);
            }
          }
          return newAlternatingKeysAndValues;
        }
    
        static final class DuplicateKey {
          private final Object key;
          private final Object value1;
          private final Object value2;
    
          DuplicateKey(Object key, Object value1, Object value2) {
            this.key = key;
            this.value1 = value1;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 41.7K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultSession.java

    public class DefaultSession extends AbstractSession implements InternalMavenSession {
    
        private final MavenSession mavenSession;
        private final MavenRepositorySystem mavenRepositorySystem;
        private final RuntimeInformation runtimeInformation;
        private final Map<String, Project> allProjects = Collections.synchronizedMap(new WeakHashMap<>());
    
        @SuppressWarnings("checkstyle:ParameterNumber")
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 12:55:57 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Sets.java

          final Set<? extends E> set1, final Set<? extends E> set2) {
        checkNotNull(set1, "set1");
        checkNotNull(set2, "set2");
    
        return new SetView<E>() {
          @Override
          public UnmodifiableIterator<E> iterator() {
            final Iterator<? extends E> itr1 = set1.iterator();
            final Iterator<? extends E> itr2 = set2.iterator();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 77.4K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

        EMPTY_GENERATORS = builder.buildOrThrow();
      }
    
      private final AtomicInteger freshness = new AtomicInteger(1);
      private final ListMultimap<Class<?>, Object> sampleInstances = ArrayListMultimap.create();
    
      /**
       * The freshness level at which the {@link Empty @Empty} annotated method was invoked to generate
       * instance.
       */
      private final Map<Type, Integer> emptyInstanceGenerated = new HashMap<>();
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 28K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java

    public class UpgradedProperties {
    
        private static final Pattern SETTER_REGEX = Pattern.compile("set[A-Z].*");
        private static final Pattern GETTER_REGEX = Pattern.compile("get[A-Z].*");
        private static final Pattern BOOLEAN_GETTER_REGEX = Pattern.compile("is[A-Z].*");
        public static final String OLD_ACCESSORS_OF_UPGRADED_PROPERTIES = "oldAccessorsOfUpgradedProperties";
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 23 08:40:36 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java

        private class ResolveTask implements Runnable {
    
            private final ClassLoader classLoader;
    
            private final CountDownLatch latch;
    
            private final Artifact artifact;
    
            private final RepositorySystemSession session;
    
            private final List<ArtifactRepository> remoteRepositories;
    
            private final ArtifactResolutionResult result;
    
            ResolveTask(
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 24.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ExecutionList.java

                      + runnable
                      + " with executor "
                      + executor,
                  e);
        }
      }
    
      private static final class RunnableExecutorPair {
        final Runnable runnable;
        final Executor executor;
        @CheckForNull RunnableExecutorPair next;
    
        RunnableExecutorPair(
            Runnable runnable, Executor executor, @CheckForNull RunnableExecutorPair next) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:17:24 GMT 2024
    - 6.9K bytes
    - Viewed (0)
Back to top