Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of about 10,000 for a$ (0.06 sec)

  1. 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)
  2. 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)
  3. architecture/standards/0004-use-a-platform-architecture.md

    An architecture module is responsible for providing a coherent set of features and:
    
    - Provides a set of APIs and services for use from outside the module.
    - Has a private implementation.
    - Is owned by a single team. A team may own multiple architecture modules.
    
    The modules are arranged into several different "Gradle platforms".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. pilot/pkg/xds/deltaadstest.go

    	timeout       time.Duration
    }
    
    func (a *DeltaAdsTest) Cleanup() {
    	// Place in once to avoid race when two callers attempt to cleanup
    	a.cancelOnce.Do(func() {
    		a.cancelContext()
    		_ = a.client.CloseSend()
    		if a.conn != nil {
    			_ = a.conn.Close()
    		}
    	})
    }
    
    func (a *DeltaAdsTest) adsReceiveChannel() {
    	context.AfterFunc(a.context, a.Cleanup)
    	for {
    		resp, err := a.client.Recv()
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. 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)
  9. pilot/pkg/xds/adstest.go

    	timeout       time.Duration
    }
    
    func (a *AdsTest) Cleanup() {
    	// Place in once to avoid race when two callers attempt to cleanup
    	a.cancelOnce.Do(func() {
    		a.cancelContext()
    		_ = a.client.CloseSend()
    		if a.conn != nil {
    			_ = a.conn.Close()
    		}
    	})
    }
    
    func (a *AdsTest) adsReceiveChannel() {
    	context.AfterFunc(a.context, a.Cleanup)
    	for {
    		resp, err := a.client.Recv()
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6K 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