Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 771 - 780 of 1,617 for Message1 (0.05 seconds)

  1. src/main/resources/fess_indices/fess_log.notification_queue/notification_queue.json

    {
      "properties": {
        "hostname": {
          "type": "keyword"
        },
        "level": {
          "type": "keyword"
        },
        "loggerName": {
          "type": "keyword"
        },
        "message": {
          "type": "text",
          "index": false
        },
        "throwable": {
          "type": "text",
          "index": false
        },
        "timestamp": {
          "type": "date",
          "format": "epoch_millis"
        }
      }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 386 bytes
    - Click Count (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/GenerationListener.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package gradlebuild.docs.dsl.docbook;
    
    public interface GenerationListener {
        void warning(String message);
    
        void start(String context);
    
        void finish();
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 782 bytes
    - Click Count (0)
  3. docs/uk/docs/advanced/websockets.md

    **FastAPI** надає той самий `WebSocket` напряму як зручність для вас, розробника. Але він походить безпосередньо зі Starlette.
    
    ///
    
    ## Очікуйте повідомлення та надсилайте повідомлення { #await-for-messages-and-send-messages }
    
    У вашому маршруті WebSocket ви можете `await` повідомлення і надсилати повідомлення.
    
    {* ../../docs_src/websockets_/tutorial001_py310.py hl[48:52] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 7.9K bytes
    - Click Count (0)
  4. src/main/webapp/WEB-INF/view/login/newpassword.jsp

    			</la:link>
    		</div>
    		<div class="card">
    			<div class="card-body login-card-body">
    				<p class="login-box-msg">
    					<la:message key="labels.login.newpassword" />
    				</p>
    				<%-- Message --%>
    				<div>
    					<la:info id="msg" message="false">
    						<div class="alert alert-info">${msg}</div>
    					</la:info>
    					<la:errors />
    				</div>
    				<la:form styleId="newPassword" method="post">
    					<div class="input-group mb-3">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 13 05:54:52 GMT 2025
    - 3.1K bytes
    - Click Count (0)
  5. docs/tr/docs/advanced/behind-a-proxy.md

    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Response şöyle bir şey olur:
    
    ```JSON
    {
        "message": "Hello World",
        "root_path": "/api/v1"
    }
    ```
    
    ### FastAPI Uygulamasında `root_path` Ayarlama { #setting-the-root-path-in-the-fastapi-app }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  6. fastapi/.agents/skills/fastapi/references/other-tools.md

        # Some blocking I/O operation
        return f"Hello {name}"
    
    
    @app.get("/items/")
    async def read_items():
        result = await asyncify(do_blocking_work)(name="World")
        return {"message": result}
    ```
    
    And run async code inside of blocking sync code with `syncify()`:
    
    ```python
    from asyncer import syncify
    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 10:05:57 GMT 2026
    - 1.5K bytes
    - Click Count (0)
  7. compat/maven-builder-support/src/main/java/org/apache/maven/building/Problem.java

         *
         * @return The exception that caused this problem or {@code null} if not applicable.
         */
        Exception getException();
    
        /**
         * Gets the message that describes this problem.
         *
         * @return The message describing this problem, never {@code null}.
         */
        String getMessage();
    
        /**
         * Gets the severity level of this problem.
         *
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Wed Jan 15 18:51:29 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  8. src/main/java/jcifs/internal/smb2/rdma/RdmaCredits.java

     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
     */
    package jcifs.internal.smb2.rdma;
    
    /**
     * RDMA credit management for flow control.
     *
     * Credits are used to control the flow of messages between
     * RDMA peers to prevent buffer overflow.
     */
    public class RdmaCredits {
    
        private int initialCredits;
        private int creditsGranted;
    
        /**
         * Create new RDMA credits manager
         */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 23 05:11:12 GMT 2025
    - 2K bytes
    - Click Count (0)
  9. docs_src/behind_a_proxy/tutorial004_py310.py

        ],
        root_path="/api/v1",
        root_path_in_servers=False,
    )
    
    
    @app.get("/app")
    def read_main(request: Request):
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 437 bytes
    - Click Count (0)
  10. tests/test_openapi_servers.py

                "description": "Staging but actually localhost still",
            },
            {"url": "https://prod.example.com"},
        ]
    )
    
    
    @app.get("/foo")
    def foo():
        return {"message": "Hello World"}
    
    
    client = TestClient(app)
    
    
    def test_app():
        response = client.get("/foo")
        assert response.status_code == 200, response.text
    
    
    def test_openapi_schema():
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Dec 27 18:19:10 GMT 2025
    - 1.7K bytes
    - Click Count (0)
Back to Top