Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 445 for Floats (0.04 sec)

  1. docs/en/docs/tutorial/extra-data-types.md

    # Extra Data Types { #extra-data-types }
    
    Up to now, you have been using common data types, like:
    
    * `int`
    * `float`
    * `str`
    * `bool`
    
    But you can also use more complex data types.
    
    And you will still have the same features as seen up to now:
    
    * Great editor support.
    * Data conversion from incoming requests.
    * Data conversion for response data.
    * Data validation.
    * Automatic annotation and documentation.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  2. docs/es/docs/tutorial/extra-data-types.md

    # Tipos de Datos Extra
    
    Hasta ahora, has estado usando tipos de datos comunes, como:
    
    * `int`
    * `float`
    * `str`
    * `bool`
    
    Pero también puedes usar tipos de datos más complejos.
    
    Y seguirás teniendo las mismas funcionalidades como hasta ahora:
    
    * Gran soporte de editor.
    * Conversión de datos de requests entrantes.
    * Conversión de datos para datos de response.
    * Validación de datos.
    * Anotación y documentación automática.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsKeyMatchCQ.java

        }
    
        public void setBoost_Equal(Float boost) {
            setBoost_Term(boost, null);
        }
    
        public void setBoost_Equal(Float boost, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setBoost_Term(boost, opLambda);
        }
    
        public void setBoost_Term(Float boost) {
            setBoost_Term(boost, null);
        }
    
        public void setBoost_Term(Float boost, ConditionOptionCall<TermQueryBuilder> opLambda) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 68.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsElevateWordCQ.java

        }
    
        public void setBoost_Equal(Float boost) {
            setBoost_Term(boost, null);
        }
    
        public void setBoost_Equal(Float boost, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setBoost_Term(boost, opLambda);
        }
    
        public void setBoost_Term(Float boost) {
            setBoost_Term(boost, null);
        }
    
        public void setBoost_Term(Float boost, ConditionOptionCall<TermQueryBuilder> opLambda) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 64.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java

            Term term = new Term("title", "fuzzy");
            FuzzyQuery fuzzyQuery = new FuzzyQuery(term);
    
            // Test with different boost values
            float[] boostValues = { 0.5f, 1.0f, 2.5f, 10.0f };
            for (float boost : boostValues) {
                QueryBuilder result = queryProcessor.execute(context, fuzzyQuery, boost);
                assertNotNull(result);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/indexer/DocBoostMatcher.java

         * The method evaluates the boost expression and converts the result to a float value.
         * Supports Integer, Long, Float, Double, and String representations of numbers.
         *
         * @param map the document data as a map of field names to values
         * @return the calculated boost value as a float, or 0.0f if evaluation fails
         */
        public float getValue(final Map<String, Object> map) {
            if (map == null || map.isEmpty()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  7. docs/nl/docs/features.md

    * Ontworpen op basis van deze standaarden, na zorgvuldig onderzoek. In plaats van achteraf deze laag er bovenop te bouwen.
    * Dit maakt het ook mogelijk om automatisch **clientcode te genereren** in verschillende programmeertalen.
    
    ### Automatische documentatie
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Sep 03 13:50:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/query/TermQueryCommand.java

        @Override
        protected String getQueryClassName() {
            return TermQuery.class.getSimpleName();
        }
    
        @Override
        public QueryBuilder execute(final QueryContext context, final Query query, final float boost) {
            if (query instanceof final TermQuery termQuery) {
                if (logger.isDebugEnabled()) {
                    logger.debug("{}:{}", query, boost);
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/base/FunctionsTest.java

        Map<Float, String> m = ImmutableMap.of(4.0f, "A", 3.0f, "B", 2.0f, "C", 1.0f, "D");
        Predicate<? super Integer> h = Predicates.equalTo(42);
        Function<? super String, Integer> g = new HashCodeFunction();
        Function<Float, String> f = Functions.forMap(m, "F");
    
        Predicate<Float> p1 = Predicates.compose(Predicates.compose(h, g), f);
        Predicate<Float> p2 = Predicates.compose(h, Functions.compose(g, f));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  10. docs/em/docs/tutorial/extra-data-types.md

    # ➕ 💽 🆎
    
    🆙 🔜, 👆 ✔️ ⚙️ ⚠ 📊 🆎, 💖:
    
    * `int`
    * `float`
    * `str`
    * `bool`
    
    ✋️ 👆 💪 ⚙️ 🌅 🏗 📊 🆎.
    
    &amp; 👆 🔜 ✔️ 🎏 ⚒ 👀 🆙 🔜:
    
    * 👑 👨‍🎨 🐕‍🦺.
    * 💽 🛠️ ⚪️➡️ 📨 📨.
    * 💽 🛠️ 📨 💽.
    * 💽 🔬.
    * 🏧 ✍ &amp; 🧾.
    
    ## 🎏 💽 🆎
    
    📥 🌖 📊 🆎 👆 💪 ⚙️:
    
    * `UUID`:
        * 🐩 "⭐ 😍 🆔", ⚠ 🆔 📚 💽 &amp; ⚙️.
        * 📨 &amp; 📨 🔜 🎨 `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)
Back to top