Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 401 for Float (0.02 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RequestData.java

        }
    
        /**
         * Gets the weight/priority of this request.
         * @return the weight
         */
        public float getWeight() {
            return weight;
        }
    
        /**
         * Sets the weight/priority of this request.
         * @param weight the weight
         */
        public void setWeight(float weight) {
            this.weight = weight;
        }
    
        /**
         * Returns the hash code for this RequestData.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 4K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/extra-data-types.md

    # βž• πŸ’½ πŸ†Ž
    
    πŸ†™ πŸ”œ, πŸ‘† βœ”οΈ βš™οΈ ⚠ πŸ“Š πŸ†Ž, πŸ’–:
    
    * `int`
    * `float`
    * `str`
    * `bool`
    
    βœ‹οΈ πŸ‘† πŸ’ͺ βš™οΈ πŸŒ… πŸ— πŸ“Š πŸ†Ž.
    
    & πŸ‘† πŸ”œ βœ”οΈ 🎏 βš’ πŸ‘€ πŸ†™ πŸ”œ:
    
    * πŸ‘‘ πŸ‘¨β€πŸŽ¨ πŸ•β€πŸ¦Ί.
    * πŸ’½ πŸ› οΈ βšͺ️➑️ πŸ“¨ πŸ“¨.
    * πŸ’½ πŸ› οΈ πŸ“¨ πŸ’½.
    * πŸ’½ πŸ”¬.
    * 🏧 ✍ & 🧾.
    
    ## 🎏 πŸ’½ πŸ†Ž
    
    πŸ“₯ πŸŒ– πŸ“Š πŸ†Ž πŸ‘† πŸ’ͺ βš™οΈ:
    
    * `UUID`:
        * 🐩 "⭐ 😍 πŸ†”", ⚠ πŸ†” πŸ“š πŸ’½ & βš™οΈ.
        * πŸ“¨ & πŸ“¨ πŸ”œ 🎨 `str`.
    * `datetime.datetime`:
        * 🐍 `datetime.datetime`.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

        padding-right: 8px;
      }
    
      .daterangepicker .ranges, .daterangepicker .drp-calendar {
        float: left;
      }
    }
    
    @media (min-width: 730px) {
      .daterangepicker .ranges {
        width: auto;
      }
    
      .daterangepicker .ranges {
        float: left;
      }
    
      .daterangepicker.rtl .ranges {
        float: right;
      }
    
      .daterangepicker .drp-calendar.left {
        clear: none !important;
      }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

        /**
         * Converts an object value to a float for score calculations.
         * Handles Float and String types, returning 0.0f for unsupported types.
         *
         * @param value the object to convert to float
         * @return float representation of the value, or 0.0f if conversion fails
         */
        protected float toFloat(final Object value) {
            if (value instanceof final Float f) {
                return f;
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

      Tensor t_cc(DT_FLOAT, TensorShape({2, 3}));
      t_cc.flat<float>().setConstant(1.0);
      tensorflow::TensorProto t_proto;
      t_cc.AsProtoField(&t_proto);
    
      TF_Buffer* t_buffer = TF_NewBuffer();
      TF_CHECK_OK(MessageToBuffer(t_proto, t_buffer));
    
      const int num_bytes = 6 * sizeof(float);
      float* values =
          reinterpret_cast<float*>(tensorflow::cpu_allocator()->AllocateRaw(
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Fri Dec 27 12:18:10 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/LongAdder.java

      @Override
      public int intValue() {
        return (int) sum();
      }
    
      /** Returns the {@link #sum} as a {@code float} after a widening primitive conversion. */
      @Override
      public float floatValue() {
        return (float) sum();
      }
    
      /** Returns the {@link #sum} as a {@code double} after a widening primitive conversion. */
      @Override
      public double doubleValue() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/UnsignedLong.java

      }
    
      /**
       * Returns the value of this {@code UnsignedLong} as a {@code float}, analogous to a widening
       * primitive conversion from {@code long} to {@code float}, and correctly rounded.
       */
      @Override
      public float floatValue() {
        if (value >= 0) {
          return (float) value;
        }
        // The top bit is set, which means that the float value is going to come from the top 24 bits.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jun 04 13:03:16 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/collection/LruHashMap.java

        /**
         * Default initial capacity.
         */
        protected static final int DEFAULT_INITIAL_CAPACITY = 16;
    
        /**
         * Default load factor.
         */
        protected static final float DEFAULT_LOAD_FACTOR = 0.75f;
    
        /**
         * Upper limit on the number of entries.
         */
        protected final int limitSize;
    
        /**
         * Creates an {@link LruHashMap}.
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/LittleEndianDataInputStream.java

        return Longs.fromBytes(b8, b7, b6, b5, b4, b3, b2, b1);
      }
    
      /**
       * Reads a {@code float} as specified by {@link DataInputStream#readFloat()}, except using
       * little-endian byte order.
       *
       * @return the next four bytes of the input stream, interpreted as a {@code float} in
       *     little-endian byte order
       * @throws IOException if an I/O error occurs
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 03:49:18 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/extra-data-types.md

    # ZusΓ€tzliche Datentypen
    
    Bisher haben Sie gΓ€ngige Datentypen verwendet, wie zum Beispiel:
    
    * `int`
    * `float`
    * `str`
    * `bool`
    
    Sie kΓΆnnen aber auch komplexere Datentypen verwenden.
    
    Und Sie haben immer noch dieselbe FunktionalitΓ€t wie bisher gesehen:
    
    * Großartige Editor-Unterstützung.
    * Datenkonvertierung bei eingehenden Requests.
    * Datenkonvertierung fΓΌr Response-Daten.
    * Datenvalidierung.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top