Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 803 for numer (0.24 sec)

  1. src/main/resources/fess_label_es.properties

    labels.searchlog_log_type_search_keyword=Número de palabras clave
    labels.searchlog_log_type_search_zerohit=Número de cero resultados
    labels.searchlog_log_type_search_zeroclick=Número de cero clics
    labels.searchlog_log_type_search_count_hour=Número de búsquedas/hora
    labels.searchlog_log_type_search_count_day=Número de búsquedas/día
    labels.searchlog_log_type_search_user_hour=Número de usuarios/hora
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/rdma/RdmaCredits.java

            this.initialCredits = initialCredits;
        }
    
        /**
         * Get number of credits granted by peer
         *
         * @return granted credits
         */
        public int getCreditsGranted() {
            return creditsGranted;
        }
    
        /**
         * Set number of credits granted by peer
         *
         * @param creditsGranted credits granted
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

     */
    public class SearchResult {
    
        /** The list of documents returned by the search query. */
        protected final List<Map<String, Object>> documentList;
    
        /** The total number of records that match the search criteria. */
        protected final long allRecordCount;
    
        /** The relation type indicating how the record count should be interpreted (e.g., "eq", "gte"). */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/hash/AbstractStreamingHasher.java

      private final ByteBuffer buffer;
    
      /** Number of bytes to be filled before process() invocation(s). */
      private final int bufferSize;
    
      /** Number of bytes processed per process() invocation. */
      private final int chunkSize;
    
      /**
       * Constructor for use by subclasses. This hasher instance will process chunks of the specified
       * size.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/BloomFilter.java

       */
      public void writeTo(OutputStream out) throws IOException {
        // Serial form:
        // 1 signed byte for the strategy
        // 1 unsigned byte for the number of hash functions
        // 1 big endian int, the number of longs in our bitset
        // N big endian longs of our bitset
        DataOutputStream dout = new DataOutputStream(out);
        dout.writeByte(SignedBytes.checkedCast(strategy.ordinal()));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/witness/WitnessHeartbeatResponse.java

            return returnCode == 0;
        }
    
        /**
         * Gets the sequence number.
         *
         * @return the sequence number
         */
        public long getSequenceNumber() {
            return sequenceNumber;
        }
    
        /**
         * Sets the sequence number.
         *
         * @param sequenceNumber the sequence number
         */
        public void setSequenceNumber(long sequenceNumber) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/entity/HighlightInfo.java

            return this;
        }
    
        /**
         * Gets the number of fragments.
         *
         * @return the maximum number of highlighted fragments
         */
        public int getNumOfFragments() {
            return numOfFragments;
        }
    
        /**
         * Sets the number of fragments with fluent interface.
         *
         * @param numOfFragments the maximum number of highlighted fragments
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/convert/FloatConversionUtil.java

            if (o == null) {
                return null;
            } else if (o instanceof Float) {
                return (Float) o;
            } else if (o instanceof Number) {
                return Float.valueOf(((Number) o).floatValue());
            } else if (o instanceof String) {
                return toFloat((String) o);
            } else if (o instanceof java.util.Date) {
                if (pattern != null) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      public <N1 extends Number, N2 extends Number, N11 extends N1>
          void testisSupertypeOf_equalWildcardTypes() {
        assertAssignable(
            new TypeToken<List<? extends N1>>() {}, new TypeToken<List<? extends N1>>() {});
        assertAssignable(new TypeToken<List<? super N1>>() {}, new TypeToken<List<? super N1>>() {});
        assertAssignable(
            new TypeToken<List<? extends Number>>() {}, new TypeToken<List<? extends Number>>() {});
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Sep 02 17:23:59 UTC 2025
    - 89K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_es.properties

    constraints.Required.message = {item} es obligatorio.
    constraints.TypeInteger.message = {item} debe ser un número.
    constraints.TypeLong.message = {item} debe ser un número.
    constraints.TypeFloat.message = {item} debe ser un número.
    constraints.TypeDouble.message = {item} debe ser un número.
    constraints.TypeAny.message = {item} no se puede convertir a {propertyType}.
    constraints.UriType.message = {item} tiene una URI no reconocida.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.7K bytes
    - Viewed (0)
Back to top