Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 266 for Factory (0.14 sec)

  1. android/guava/src/com/google/common/collect/MultimapBuilder.java

              // (their subclasses are inaccessible)
              @SuppressWarnings({"unchecked", "rawtypes"})
              Supplier<Set<V>> factory = (Supplier) new EnumSetSupplier<V0>(valueClass);
              return Multimaps.newSetMultimap(MultimapBuilderWithKeys.this.<K, V>createMap(), factory);
            }
          };
        }
      }
    
      /** Returns a new, empty {@code Multimap} with the specified implementation. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 18K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/MultimapBuilder.java

              // (their subclasses are inaccessible)
              @SuppressWarnings({"unchecked", "rawtypes"})
              Supplier<Set<V>> factory = (Supplier) new EnumSetSupplier<V0>(valueClass);
              return Multimaps.newSetMultimap(MultimapBuilderWithKeys.this.<K, V>createMap(), factory);
            }
          };
        }
      }
    
      /** Returns a new, empty {@code Multimap} with the specified implementation. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 18K bytes
    - Viewed (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/ClientRuleEventListener.kt

    import java.net.Proxy
    import java.util.concurrent.TimeUnit
    
    class ClientRuleEventListener(
      val delegate: EventListener = NONE,
      var logger: (String) -> Unit,
    ) : EventListener(),
      EventListener.Factory {
      private var startNs: Long? = null
    
      override fun create(call: Call): EventListener = this
    
      override fun callStart(call: Call) {
        startNs = System.nanoTime()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:58:02 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/impl/MethodDescImpl.java

    import java.util.Collection;
    import java.util.Map;
    
    import org.codelibs.core.beans.BeanDesc;
    import org.codelibs.core.beans.MethodDesc;
    import org.codelibs.core.beans.ParameterizedClassDesc;
    import org.codelibs.core.beans.factory.ParameterizedClassDescFactory;
    import org.codelibs.core.exception.MethodNotStaticRuntimeException;
    import org.codelibs.core.lang.MethodUtil;
    
    /**
     * Implementation class of {@link MethodDesc}.
     *
     * @author koichik
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

    import org.kohsuke.args4j.Option;
    import org.lastaflute.di.core.external.GenericExternalContext;
    import org.lastaflute.di.core.external.GenericExternalContextComponentDefRegister;
    import org.lastaflute.di.core.factory.SingletonLaContainerFactory;
    import org.opensearch.monitor.jvm.JvmInfo;
    import org.opensearch.monitor.os.OsProbe;
    import org.opensearch.monitor.process.ProcessProbe;
    
    import jakarta.annotation.Resource;
    
    /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/TreeTraverser.java

     * implement it:
     *
     * {@snippet :
     * // won't work
     * TreeTraverser<NodeType> traverser = node -> node.getChildNodes();
     * }
     *
     * Instead, you can pass a lambda expression to the {@code using} factory method:
     *
     * {@snippet :
     * TreeTraverser<NodeType> traverser = TreeTraverser.using(node -> node.getChildNodes());
     * }
     *
     * @author Louis Wasserman
     * @since 15.0
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  7. okhttp/build.gradle.kts

          // Work around robolectric requirements and limitations
          // https://cs.android.com/android-studio/platform/tools/base/+/mirror-goog-studio-main:build-system/gradle-core/src/main/java/com/android/build/gradle/tasks/factory/AndroidUnitTest.java;l=339
          allJvmArgs = allJvmArgs.filter { !it.startsWith("--add-opens") }
        }
        if (name.matches("test.*UnitTest".toRegex()) && javaLauncher.get().metadata.languageVersion.asInt() < 17) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 03 03:59:03 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

        private final List<DocBoostMatcher> docBoostMatcherList = new ArrayList<>();
    
        /** List of active crawler instances */
        private List<Crawler> crawlerList;
    
        /** Factory for creating document ingesters */
        private IngestFactory ingestFactory = null;
    
        /**
         * Default constructor for IndexUpdater.
         * Initializes a new instance with default settings.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

        protected static final String URL_EXCLUDE_PATTERN = "url_exclude_pattern";
    
        /** The underlying index update callback to delegate operations to. */
        protected IndexUpdateCallback indexUpdateCallback;
    
        /** Factory for creating crawler clients to handle different URL schemes. */
        protected CrawlerClientFactory crawlerClientFactory;
    
        /** List of URLs to be deleted, cached for batch processing. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 28.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            assertSame(doc, result);
        }
    
        // Test ingest with exception in ingester
        public void test_ingest_withException() {
            final TestIngestFactory factory = (TestIngestFactory) ingestFactory;
            factory.setThrowException(true);
    
            final Map<String, Object> doc = new HashMap<>();
            doc.put("test", "value");
            final AccessResult<String> accessResult = new TestAccessResult();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
Back to top