Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,040 for a$ (0.08 sec)

  1. src/cmd/internal/obj/ppc64/a.out.go

    	C_DACON    /* $n(REG) where n <= int64 */
    	C_BRA      /* A short offset argument to a branching instruction */
    	C_BRAPIC   /* Like C_BRA, but requires an extra NOP for potential TOC restore by the linker. */
    	C_ZOREG    /* An $0+reg memory op */
    	C_SOREG    /* An $n+reg memory arg where n is a 16 bit signed offset */
    	C_LOREG    /* An $n+reg memory arg where n is a 32 bit signed offset */
    	C_XOREG    /* An reg+reg memory arg */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. docs/em/docs/advanced/behind-a-proxy.md

    👆 💪 ✅ ⚫️ <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>:
    
    <img src="/img/tutorial/behind-a-proxy/image01.png">
    
    ✋️ 🚥 👥 🔐 🩺 🎚 "🛂" 📛 ⚙️ 🗳 ⏮️ ⛴ `9999`, `/api/v1/docs`, ⚫️ 👷 ☑ ❗ 👶
    
    👆 💪 ✅ ⚫️ <a href="http://127.0.0.1:9999/api/v1/docs" class="external-link" target="_blank">http://127.0.0.1:9999/api/v1/docs</a>:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/behind-a-proxy.md

    ## Proxy with a stripped path prefix
    
    Having a proxy with a stripped path prefix, in this case, means that you could declare a path at `/app` in your code, but then, you add a layer on top (the proxy) that would put your **FastAPI** application under a path like `/api/v1`.
    
    In this case, the original path `/app` would actually be served at `/api/v1/app`.
    
    Even though all your code is written assuming there's just `/app`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. docs/de/docs/advanced/behind-a-proxy.md

    Sie können das Experiment mit einem abgetrennten Pfadpräfix ganz einfach lokal ausführen, indem Sie <a href="https://docs.traefik.io/" class="external-link" target="_blank">Traefik</a> verwenden.
    
    <a href="https://github.com/containous/traefik/releases" class="external-link" target="_blank">Laden Sie Traefik herunter</a>, es ist eine einzelne Binärdatei, Sie können die komprimierte Datei extrahieren und sie direkt vom Terminal aus ausführen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:30:07 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. docs/zh/docs/advanced/behind-a-proxy.md

    输入 <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs 查看 API 文档:</a>
    
    <img src="/img/tutorial/behind-a-proxy/image01.png">
    
    但输入**官方**链接 `/api/v1/docs`,并使用端口 `9999` 访问 API 文档,就能正常运行了!🎉
    
    输入 <a href="http://127.0.0.1:9999/api/v1/docs" class="external-link" target="_blank">http://127.0.0.1:9999/api/v1/docs 查看文档:</a>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/main/resources/header.html

                            <li><a href="../userguide/build_file_basics.html">5. Build File Basics</a></li>
                            <li><a href="../userguide/dependency_management_basics.html">6. Dependency Management Basics</a></li>
                            <li><a href="../userguide/task_basics.html">7. Task Basics</a></li>
                            <li><a href="../userguide/plugin_basics.html">8. Plugins Basics</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  7. src/net/http/pattern_test.go

    		want   string
    	}{
    		{"/a/{x}", "/{x}/a", "/a/x"},
    		{"/{x}/a", "/a/{x}", "/x/a"},
    		{"/a/{z}/", "/{z}/a/", "/a/z/"},
    		{"/{z}/a/", "/a/{z}/", "/z/a/"},
    		{"/{a}/a/", "/a/{z}/", "/ax/a/"},
    		{"/a/{z}/{x...}", "/{z}/b/{y...}", "/a/z/"},
    		{"/{z}/b/{y...}", "/a/{z}/{x...}", "/z/b/"},
    		{"/a/b/", "/a/b/c", "/a/b/"},
    		{"/a/b/{x...}", "/a/b/c", "/a/b/"},
    		{"/a/b/{x...}", "/a/b/c/d", "/a/b/"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/net/http/cookiejar/jar_test.go

    		"A=1 A=2 A=3 A=4",
    		[]query{{"http://www.host.test/foo", "A=2 A=4 A=1 A=3"}},
    	},
    	{
    		"Refill #2.",
    		"http://www.google.com",
    		[]string{
    			"A=6",
    			"A=7; path=/foo",
    			"A=8; domain=.google.com",
    			"A=9; path=/foo; domain=.google.com"},
    		"A=1 A=2 A=3 A=4 A=6 A=7 A=8 A=9",
    		[]query{
    			{"http://www.host.test/foo", "A=2 A=4 A=1 A=3"},
    			{"http://www.google.com/foo", "A=7 A=9 A=6 A=8"},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java

            assertSame(mirrorA, mirrorSelector.getMirror(getRepo("a", "http://a.a"), mirrors));
    
            assertSame(mirrorB, mirrorSelector.getMirror(getRepo("b", "http://a.a"), mirrors));
    
            assertNull(mirrorSelector.getMirror(getRepo("c", "http://c.c"), mirrors));
        }
    
        @Test
        void testMirrorWildcardLookup() {
            Mirror mirrorA = newMirror("a", "a", "http://a");
            Mirror mirrorB = newMirror("b", "b", "http://b");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/util.go

    			return
    		}
    
    		if a.Name != NAME_NONE || a.Sym != nil {
    			a.WriteNameTo(w)
    			fmt.Fprintf(w, "(%v)(REG)", Rconv(int(a.Reg)))
    		} else {
    			io.WriteString(w, Rconv(int(a.Reg)))
    		}
    		if (RBaseARM64+1<<10+1<<9) /* arm64.REG_ELEM */ <= a.Reg &&
    			a.Reg < (RBaseARM64+1<<11) /* arm64.REG_ELEM_END */ {
    			fmt.Fprintf(w, "[%d]", a.Index)
    		}
    
    	case TYPE_BRANCH:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top