Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 184 for cdat (0.03 sec)

  1. docs_src/websockets/tutorial001.py

    from fastapi import FastAPI, WebSocket
    from fastapi.responses import HTMLResponse
    
    app = FastAPI()
    
    html = """
    <!DOCTYPE html>
    <html>
        <head>
            <title>Chat</title>
        </head>
        <body>
            <h1>WebSocket Chat</h1>
            <form action="" onsubmit="sendMessage(event)">
                <input type="text" id="messageText" autocomplete="off"/>
                <button>Send</button>
            </form>
            <ul id='messages'>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 26 19:09:53 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  2. src/io/io_test.go

    		{data: dat, off: 0, n: len(dat), bufLen: len(dat) / 2, at: 0, exp: dat[:len(dat)/2], err: nil},
    		{data: dat, off: 0, n: len(dat), bufLen: len(dat), at: 0, exp: dat, err: nil},
    		{data: dat, off: 0, n: len(dat), bufLen: len(dat) / 2, at: 2, exp: dat[2 : 2+len(dat)/2], err: nil},
    		{data: dat, off: 3, n: len(dat), bufLen: len(dat) / 2, at: 2, exp: dat[5 : 5+len(dat)/2], err: nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:04:41 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. docs/en/docs/css/custom.css

      /* \00A0 is a non-breaking space
            to make the mark be on the same line as the link
        */
      content: "\00A0↪";
    }
    
    .shadow {
      box-shadow: 5px 5px 10px #999;
    }
    
    /* Give space to lower icons so Gitter chat doesn't get on top of them */
    .md-footer-meta {
      padding-bottom: 2em;
    }
    
    .user-list {
      display: flex;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }
    
    .user-list-center {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jan 28 09:53:45 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. ci/official/containers/linux_arm64/devel.usertools/code_check_full.bats

        echo "Please remove the following extra licenses from $LICENSES_TARGET:"
        cat $BATS_TEST_TMPDIR/actual_extra_licenses
      fi
    
      if [[ -s $BATS_TEST_TMPDIR/actual_missing_licenses ]]; then
        echo "Please include the missing licenses for the following packages in $LICENSES_TARGET:"
        cat $BATS_TEST_TMPDIR/actual_missing_licenses
      fi
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  5. buildscripts/verify-build.sh

    		cat "$WORK_DIR/dist-minio-9001.log"
    		echo "server3 log:"
    		cat "$WORK_DIR/dist-minio-9002.log"
    		echo "server4 log:"
    		cat "$WORK_DIR/dist-minio-9003.log"
    	fi
    
    	rm -f "$WORK_DIR/dist-minio-9000.log" "$WORK_DIR/dist-minio-9001.log" "$WORK_DIR/dist-minio-9002.log" "$WORK_DIR/dist-minio-9003.log"
    
    	return "$rv"
    }
    
    function purge() {
    	rm -rf "$1"
    }
    
    function __init__() {
    	echo "Initializing environment"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:28:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. test/escape_struct_param1.go

    }
    
    func (u *U) SPPi() *string { // ERROR "leaking param: u to result ~r0 level=2$"
    	return *u._spp
    }
    
    func tSPPi() {
    	s := "cat" // ERROR "moved to heap: s$"
    	ps := &s
    	pps := &ps
    	pu := &U{ps, pps} // ERROR "&U{...} does not escape$"
    	Ssink = pu.SPPi()
    }
    
    func tiSPP() {
    	s := "cat" // ERROR "moved to heap: s$"
    	ps := &s
    	pps := &ps
    	pu := &U{ps, pps} // ERROR "&U{...} does not escape$"
    	Ssink = *pu.SPP()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 8.9K bytes
    - Viewed (0)
  7. test/escape_struct_param2.go

    }
    
    func (u U) SPPi() *string { // ERROR "leaking param: u to result ~r0 level=1$"
    	return *u._spp
    }
    
    func tSPPi() {
    	s := "cat" // ERROR "moved to heap: s$"
    	ps := &s
    	pps := &ps
    	pu := &U{ps, pps} // ERROR "&U{...} does not escape$"
    	Ssink = pu.SPPi()
    }
    
    func tiSPP() {
    	s := "cat" // ERROR "moved to heap: s$"
    	ps := &s
    	pps := &ps
    	pu := &U{ps, pps} // ERROR "&U{...} does not escape$"
    	Ssink = *pu.SPP()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 8.9K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ToolingModelContract.java

     * <pre>
     *      &#64;ToolingModelContract(subTypes = [Dog.class, Cat.class])
     *      interface Animal {}
     * </pre>
     * <p>
     * On the client-side we will be able to write code such as:
     * <pre>
     *      if (model instanceof Dog) {
     *          ((Dog) model).bark();
     *      } else if (model instanceof Cat) {
     *          ((Cat) model).meow();
     *      } else if (model instance of Bird) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 08:48:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. docs/vi/docs/tutorial/index.md

    ---
    
    ## Cài đặt FastAPI
    
    Bước đầu tiên là cài đặt FastAPI.
    
    Với hướng dẫn này, bạn có thể muốn cài đặt nó với tất cả các phụ thuộc và tính năng tùy chọn:
    
    <div class="termy">
    
    ```console
    $ pip install "fastapi[all]"
    
    ---> 100%
    ```
    
    </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Sep 02 15:44:17 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeStaxBuilder.java

                        XmlNode child = build(parser, trim, locationBuilder);
                        children.add(child);
                    }
                } else if (eventType == XMLStreamReader.CHARACTERS || eventType == XMLStreamReader.CDATA) {
                    String text = parser.getText();
                    lValue = lValue != null ? lValue + text : text;
                } else if (eventType == XMLStreamReader.END_ELEMENT) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top