Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 63 for favourite (0.2 sec)

  1. tests/test_tutorial/test_dataclasses/test_tutorial003.py

            },
            {
                "name": "System of an Up",
                "items": [
                    {
                        "name": "Salt",
                        "description": "The kombucha mushroom people's favorite",
                    },
                    {"name": "Pad Thai", "description": None},
                    {
                        "name": "Lonely Night",
                        "description": "The mostests lonliest nightiest of allest",
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Sep 28 04:14:40 GMT 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/main/resources/esclient.xml

    		</postConstruct>
    		<!-- fess_log index -->
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_log.click_log/click_log"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_log.favorite_log/favorite_log"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_log.search_log/search_log"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Mar 23 05:42:27 GMT 2023
    - 15.9K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/_aws/fess/doc.json

            "format": "date_optional_time"
          },
          "digest": {
            "type": "text",
            "index": false
          },
          "doc_id": {
            "type": "keyword"
          },
          "favorite_count": {
            "type": "long"
          },
          "filename": {
            "type": "keyword"
          },
          "filetype": {
            "type": "keyword"
          },
          "host": {
            "type": "keyword"
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/_cloud/fess/doc.json

            "format": "date_optional_time"
          },
          "digest": {
            "type": "text",
            "index": false
          },
          "doc_id": {
            "type": "keyword"
          },
          "favorite_count": {
            "type": "long"
          },
          "filename": {
            "type": "keyword"
          },
          "filetype": {
            "type": "keyword"
          },
          "host": {
            "type": "keyword"
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/doc.json

            "format": "date_optional_time"
          },
          "digest": {
            "type": "text",
            "index": false
          },
          "doc_id": {
            "type": "keyword"
          },
          "favorite_count": {
            "type": "long"
          },
          "filename": {
            "type": "keyword"
          },
          "filetype": {
            "type": "keyword"
          },
          "host": {
            "type": "keyword"
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Aug 15 11:50:35 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/first-steps.md

    You can also return Pydantic models (you'll see more about that later).
    
    There are many other objects and models that will be automatically converted to JSON (including ORMs, etc). Try using your favorite ones, it's highly probable that they are already supported.
    
    ## Recap
    
    * Import `FastAPI`.
    * Create an `app` instance.
    * Write a **path operation decorator** (like `@app.get("/")`).
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jun 30 18:25:16 GMT 2023
    - 9.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/log/cbean/cq/bs/BsFavoriteLogCQ.java

        //                                                                       =============
        @Override
        public String asTableDbName() {
            return "favorite_log";
        }
    
        @Override
        public String xgetAliasName() {
            return "favorite_log";
        }
    
        // ===================================================================================
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 42.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                    }
                    if ("click_log".equals(name)) {
                        return writeNdjsonResponse(id, getClickLogNdjsonWriteCall());
                    }
                    if ("favorite_log".equals(name)) {
                        return writeNdjsonResponse(id, getFavoriteLogNdjsonWriteCall());
                    }
                } else if ("fess.json".equals(id)) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setUserFavorite(final boolean value) {
            setSystemPropertyAsBoolean(Constants.USER_FAVORITE_PROPERTY, value);
        }
    
        default boolean isUserFavorite() {
            return getSystemPropertyAsBoolean(Constants.USER_FAVORITE_PROPERTY, false);
        }
    
        default void setWebApiJson(final boolean value) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  10. docs/en/docs/alternatives.md

    This solved having to write YAML (another syntax) inside of Python docstrings.
    
    This combination of Flask, Flask-apispec with Marshmallow and Webargs was my favorite backend stack until building **FastAPI**.
    
    Using it led to the creation of several Flask full-stack generators. These are the main stacks I (and several external teams) have been using up to now:
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 23.2K bytes
    - Viewed (0)
Back to top