Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 773 for area (0.03 sec)

  1. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

         */
        public long getQueryTime() {
            return queryTime;
        }
    
        /**
         * Checks whether the search results are partial due to timeout or other constraints.
         *
         * @return true if the results are partial, false if complete
         */
        public boolean isPartialResults() {
            return partialResults;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

        /** Array of fields that can be used for sorting search results */
        protected String[] sortFields;
    
        /** Set of fields that are allowed in API responses */
        protected Set<String> apiResponseFieldSet;
    
        /** Set of fields that are not analyzed during indexing */
        protected Set<String> notAnalyzedFieldSet;
    
        /** List of additional default fields with their boost values */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2Test.kt

              assertThat(associatedStreamId).isEqualTo(-1)
              assertThat(headerBlock).isEqualTo(sentHeaders)
            }
          },
        )
      }
    
      /** Headers are compressed, then framed.  */
      @Test fun headersFrameThenContinuation() {
        val sentHeaders = largeHeaders()
        val headerBlock = literalHeaders(sentHeaders)
    
        // Write the first headers frame.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 28.1K bytes
    - Viewed (0)
  4. LICENSES/vendor/github.com/chai2010/gettext-go/LICENSE

    Copyright 2013 ChaiShushan <chaishushan{AT}gmail.com>. All rights reserved.
    
    Redistribution and use in source and binary forms, with or without
    modification, are permitted provided that the following conditions are
    met:
    
       * Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
       * Redistributions in binary form must reproduce the above
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  5. dbflute_fess/dfprop/outsideSqlMap.dfprop

        #   [true]
        #     The customize entities for procedure's out-parameter
        #     and not-param-result are auto-generated.
        #     And also not-param-result's properties are auto-generated.
        #     Target procedures are executed actually at Sql2Entity task.
        #     (because of getting from execution meta data (result set meta data))
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/InetAddresses.java

       * an IPv4 address or not.
       *
       * <p>IPv6 addresses are <b>coerced</b> to IPv4 addresses before being converted to integers.
       *
       * <p>As long as there are applications that assume that all IP addresses are IPv4 addresses and
       * can therefore be converted safely to integers (for whatever purpose) this function can be used
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Objects.java

    @GwtCompatible
    public final class Objects extends ExtraObjectsMethodsForWeb {
    
      /**
       * Determines whether two possibly-null objects are equal. Returns:
       *
       * <ul>
       *   <li>{@code true} if {@code a} and {@code b} are both null.
       *   <li>{@code true} if {@code a} and {@code b} are both non-null and they are equal according to
       *       {@link Object#equals(Object)}.
       *   <li>{@code false} in all other situations.
       * </ul>
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 28 22:51:26 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/CompactHashMap.java

    import java.util.Set;
    import org.jspecify.annotations.Nullable;
    
    /**
     * CompactHashMap is an implementation of a Map. All optional operations (put and remove) are
     * supported. Null keys and values are supported.
     *
     * <p>{@code containsKey(k)}, {@code put(k, v)} and {@code remove(k)} are all (expected and
     * amortized) constant time operations. Expected in the hashtable sense (depends on the hash
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 35.7K bytes
    - Viewed (0)
  9. README.md

    ## Snapshots and Documentation
    
    Snapshots of Guava built from the `master` branch are available through Maven
    using version `999.0.0-HEAD-jre-SNAPSHOT`, or `999.0.0-HEAD-android-SNAPSHOT`
    for the Android flavor.
    
    [Snapshot API Javadoc][guava-snapshot-api-docs] as well as
    [Snapshot API Diffs][guava-snapshot-api-diffs] are also available.
    
    Another easy way to get to the Javadoc is to open
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 05 15:30:14 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableMap.java

      }
    
      /**
       * Returns a {@link Collector} that accumulates elements into an {@code ImmutableMap} whose keys
       * and values are the result of applying the provided mapping functions to the input elements.
       *
       * <p>If the mapped keys contain duplicates (according to {@link Object#equals(Object)}), the
       * values are merged using the specified merging function. If the merging function returns {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 44.3K bytes
    - Viewed (0)
Back to top