Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1001 - 1010 of 1,061 for api1 (0.21 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java

    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    import org.codelibs.fess.opensearch.user.exentity.User;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class AuthenticationChainTest extends UnitFessTestCase {
    
        // Test basic update operation
        @Test
        public void test_update_normalUser() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java

    import java.util.concurrent.atomic.AtomicInteger;
    import java.util.function.Consumer;
    
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class ThreadDumpUtilTest extends UnitFessTestCase {
    
        @Test
        public void test_printThreadDump() {
            // This test verifies that printThreadDump() method exists and can be called without exceptions
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 15.6K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/io/FileBackedOutputStream.java

        } catch (InvocationTargetException e) {
          /*
           * It's theoretically possible for Reference.reachabilityFence to exist under older VMs but
           * not work. (Under Android in particular, we really should check the API Level instead of
           * probing for methods....) But it's hard to imagine how reachabilityFence in particular could
           * exist but throw, so we propagate anything that's thrown, presumably an unchecked Exception
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Mar 07 17:30:49 GMT 2026
    - 12.4K bytes
    - Click Count (0)
  4. guava-gwt/pom.xml

              <show>package</show>
            </configuration>
          </plugin>
          <!-- Disable "normal" testing, which doesn't work for GWT tests. -->
          <plugin>
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Jan 12 15:19:17 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  5. .idea/inspectionProfiles/Gradle.xml

              <option value="io.reactivex.annotations.Beta" />
              <option value="io.reactivex.annotations.Experimental" />
              <option value="org.apache.http.annotation.Beta" />
              <option value="org.gradle.api.Incubating" />
              <option value="org.jetbrains.annotations.ApiStatus.Experimental" />
              <option value="rx.annotations.Beta" />
              <option value="rx.annotations.Experimental" />
            </set>
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Jun 26 21:49:47 GMT 2024
    - 15.4K bytes
    - Click Count (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-HostnamesCommon.kt

    import okhttp3.internal.idn.Punycode
    import okio.Buffer
    
    /**
     * Quick and dirty pattern to differentiate IP addresses from hostnames. This is an approximation
     * of Android's private InetAddress#isNumeric API.
     *
     * This matches IPv6 addresses as a hex string containing at least one colon, and possibly
     * including dots after the first colon. It matches IPv4 addresses as strings containing only
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 11.2K bytes
    - Click Count (0)
  7. android/guava/src/com/google/common/collect/CollectSpliterators.java

    import java.util.stream.IntStream;
    import org.jspecify.annotations.Nullable;
    
    /** Spliterator utilities for {@code common.collect} internals. */
    @GwtCompatible
    @IgnoreJRERequirement // used only from APIs that work with Stream
    final class CollectSpliterators {
      private CollectSpliterators() {}
    
      static <T extends @Nullable Object> Spliterator<T> indexed(
          int size, int extraCharacteristics, IntFunction<T> function) {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 20.5K bytes
    - Click Count (0)
  8. guava/src/com/google/common/base/Predicates.java

       */
      @GwtIncompatible // java.util.regex.Pattern
      public static Predicate<CharSequence> contains(Pattern pattern) {
        return new ContainsPatternPredicate(new JdkPattern(pattern));
      }
    
      // End public API, begin private implementation classes.
    
      private enum ObjectPredicate implements Predicate<@Nullable Object> {
        /**
         * @see Predicates#alwaysTrue()
         */
        ALWAYS_TRUE {
          @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Mar 08 16:16:42 GMT 2026
    - 26.6K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/net/InternetDomainName.java

       * in the subdomain list. The number of levels must be non-negative, and less than {@code N-1},
       * where {@code N} is the number of parts in the domain.
       *
       * <p>TODO: Reasonable candidate for addition to public API.
       */
      private InternetDomainName ancestor(int levels) {
        ImmutableList<String> ancestorParts = parts.subList(levels, parts.size());
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 21:21:59 GMT 2026
    - 26.2K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

     */
    package org.codelibs.fess.util;
    
    import java.util.HashMap;
    import java.util.Map;
    
    import org.codelibs.fess.exception.FessSystemException;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    import org.w3c.dom.NamedNodeMap;
    import org.w3c.dom.Node;
    
    public class PrunedTagTest extends UnitFessTestCase {
    
        @Test
        public void test_hashCode() {
            PrunedTag prunedtag = new PrunedTag("tag");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 21.1K bytes
    - Click Count (0)
Back to Top