Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 99 for 1918 (0.1 sec)

  1. docs/en/docs/tutorial/request-files.md

        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="9  17"
        {!> ../../../docs_src/request_files/tutorial001_02_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="10  18"
        {!> ../../../docs_src/request_files/tutorial001_02_an.py!}
        ```
    
    === "Python 3.10+ non-Annotated"
    
        !!! tip
            Prefer to use the `Annotated` version if possible.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	/*1904*/ uint16(xMatch),
    	/*1905*/ uint16(xCondPrefix), 4,
    	0xF3, 1933,
    	0xF2, 1927,
    	0x66, 1921,
    	0x0, 1915,
    	/*1915*/ uint16(xSetOp), uint16(MOVNTPS),
    	/*1917*/ uint16(xReadSlashR),
    	/*1918*/ uint16(xArgM128),
    	/*1919*/ uint16(xArgXmm),
    	/*1920*/ uint16(xMatch),
    	/*1921*/ uint16(xSetOp), uint16(MOVNTPD),
    	/*1923*/ uint16(xReadSlashR),
    	/*1924*/ uint16(xArgM128),
    	/*1925*/ uint16(xArgXmm),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  3. misc/wasm/wasm_exec.html

    license that can be found in the LICENSE file.
    -->
    <html>
    
    <head>
    	<meta charset="utf-8">
    	<title>Go wasm</title>
    </head>
    
    <body>
    	<!--
    	Add the following polyfill for Microsoft Edge 17/18 support:
    	<script src="https://cdn.jsdelivr.net/npm/text-encoding@0.7.0/lib/encoding.min.js"></script>
    	(see https://caniuse.com/#feat=textencoder)
    	-->
    	<script src="wasm_exec.js"></script>
    	<script>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 02 17:25:11 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/plugin/internal/MavenPluginJavaPrerequisiteCheckerTest.java

        @Test
        void testMatchesVersion() {
            MavenPluginJavaPrerequisiteChecker checker = new MavenPluginJavaPrerequisiteChecker(new GenericVersionScheme());
            assertTrue(checker.matchesVersion("1.0", "1.8"));
            assertTrue(checker.matchesVersion("1.8", "9.0.1+11"));
            assertFalse(checker.matchesVersion("[1.0,2],[3,4]", "2.1"));
            assertTrue(checker.matchesVersion("[1.0,2],[3,4]", "3.1"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/fix/import_test.go

    import (
    	"flag"
    	"http"
    	"log"
    	"template"
    )
    
    var addr = flag.String("addr", ":1718", "http service address") // Q=17, R=18
    `,
    		Out: `package main
    
    import (
    	"flag"
    	"log"
    	"net/http"
    	"text/template"
    )
    
    var addr = flag.String("addr", ":1718", "http service address") // Q=17, R=18
    `,
    	},
    	{
    		Name: "import.17",
    		Fn:   addImportFn("x/y/z", "x/a/c"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/zerrors_windows.go

    	RPC_S_SEND_INCOMPLETE                                                     syscall.Errno = 1913
    	RPC_S_INVALID_ASYNC_HANDLE                                                syscall.Errno = 1914
    	RPC_S_INVALID_ASYNC_CALL                                                  syscall.Errno = 1915
    	RPC_X_PIPE_CLOSED                                                         syscall.Errno = 1916
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 923.3K bytes
    - Viewed (0)
  7. docs/em/docs/tutorial/extra-data-types.md

    === "🐍 3️⃣.6️⃣ &amp; 🔛"
    
        ```Python hl_lines="18-19"
        {!> ../../../docs_src/extra_data_types/tutorial001.py!}
        ```
    
    === "🐍 3️⃣.1️⃣0️⃣ &amp; 🔛"
    
        ```Python hl_lines="17-18"
        {!> ../../../docs_src/extra_data_types/tutorial001_py310.py!}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/route/interface_classic.go

    	}
    	m := &InterfaceAddrMessage{
    		Version: int(b[2]),
    		Type:    int(b[3]),
    		Flags:   int(nativeEndian.Uint32(b[8:12])),
    		raw:     b[:l],
    	}
    	if runtime.GOOS == "netbsd" {
    		m.Index = int(nativeEndian.Uint16(b[16:18]))
    	} else {
    		m.Index = int(nativeEndian.Uint16(b[12:14]))
    	}
    	var err error
    	m.Addrs, err = parseAddrs(uint(nativeEndian.Uint32(b[4:8])), parseKernelInetAddr, b[w.bodyOff:])
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. test/fixedbugs/bug242.go

    	gbyte()
    	if _, present := m[13]; present {
    		println("bad map removal")
    		panic("fail")
    	}
    
    	c := make(chan byte, 1)
    	c <- 'C'
    	// 15          16
    	*f(), p1 = <-e1(c, 16)
    	close(c)
    	// 17          18
    	*f(), p2 = <-e1(c, 18)
    	a[17] += '0'
    	if !p1 || p2 {
    		println("bad chan check", i, p1, p2)
    		panic("fail")
    	}
    
    	s1 := S1{'D'}
    	s2 := S2{'E'}
    	var iv I
    	// 19                20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 2.1K bytes
    - Viewed (0)
  10. docs/em/docs/how-to/custom-request-and-route.md

    🌐 👥 💪 🍵 📨 🔘 `try`/`except` 🍫:
    
    ```Python hl_lines="13  15"
    {!../../../docs_src/custom_request_and_route/tutorial002.py!}
    ```
    
    🚥 ⚠ 📉, `Request` 👐 🔜 ↔, 👥 💪 ✍ &amp; ⚒ ⚙️ 📨 💪 🕐❔ 🚚 ❌:
    
    ```Python hl_lines="16-18"
    {!../../../docs_src/custom_request_and_route/tutorial002.py!}
    ```
    
    ## 🛃 `APIRoute` 🎓 📻
    
    👆 💪 ⚒ `route_class` 🔢 `APIRouter`:
    
    ```Python hl_lines="26"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top