Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 627 for wsprefix (0.12 sec)

  1. docs_src/bigger_applications/app/main.py

    from .routers import items, users
    
    app = FastAPI(dependencies=[Depends(get_query_token)])
    
    
    app.include_router(users.router)
    app.include_router(items.router)
    app.include_router(
        admin.router,
        prefix="/admin",
        tags=["admin"],
        dependencies=[Depends(get_token_header)],
        responses={418: {"description": "I'm a teapot"}},
    )
    
    
    @app.get("/")
    async def root():
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Nov 29 17:32:18 UTC 2020
    - 552 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/curl/io/ContentOutputStream.java

        protected static final String PREFIX = "curl4j-";
    
        protected static final String SUFFIX = ".tmp";
    
        protected boolean done = false;
    
        public ContentOutputStream(final int threshold, final File tmpDir) {
            super(threshold, PREFIX, SUFFIX, tmpDir);
        }
    
        @Override
        public File getFile() {
            done = true;
    Registered: Thu Oct 31 02:32:13 UTC 2024
    - Last Modified: Mon Nov 14 21:05:19 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  3. internal/event/arn.go

    	}
    
    	*arn = *parsedARN
    	return nil
    }
    
    // parseARN - parses string to ARN.
    func parseARN(s string) (*ARN, error) {
    	// ARN must be in the format of arn:minio:sqs:<REGION>:<ID>:<TYPE>
    	if !strings.HasPrefix(s, "arn:minio:sqs:") {
    		return nil, &ErrInvalidARN{s}
    	}
    
    	tokens := strings.Split(s, ":")
    	if len(tokens) != 6 {
    		return nil, &ErrInvalidARN{s}
    	}
    
    	if tokens[4] == "" || tokens[5] == "" {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. docs/em/docs/tutorial/bigger-applications.md

    👉 🔜 ✊ ⏲ &amp; 🔜 🕴 🔨 🕴.
    
    âšĢī¸ 🏆 đŸšĢ 📉 🎭. đŸ‘ļ
    
    ///
    
    ### 🔌 `APIRouter` ⏎ī¸ 🛃 `prefix`, `tags`, `responses`, &amp; `dependencies`
    
    🔜, ➡ī¸ 🌈 👆 đŸĸ 🤝 👆 `app/internal/admin.py` 📁.
    
    âšĢī¸ 🔌 `APIRouter` ⏎ī¸ 📡 *➡ 🛠ī¸* 👈 👆 đŸĸ 💰 🖖 📚 🏗.
    
    👉 đŸ–ŧ âšĢī¸ 🔜 💎 🙅. ✋ī¸ ➡ī¸ đŸ’Ŧ 👈 ↩ī¸ âšĢī¸ 💰 ⏎ī¸ 🎏 🏗 đŸĸ, đŸ‘Ĩ đŸšĢ🔜 🔀 âšĢī¸ &amp; 🚮 `prefix`, `dependencies`, `tags`, ♒ī¸. 🔗 `APIRouter`:
    
    ```Python hl_lines="3" title="app/internal/admin.py"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool-decom.go

    	for i := range decomBuckets {
    		bucket, prefix := path2BucketObject(p.Pools[idx].Decommission.QueuedBuckets[i])
    		decomBuckets[i] = decomBucketInfo{
    			Name:   bucket,
    			Prefix: prefix,
    		}
    	}
    
    	return decomBuckets
    }
    
    //msgp:ignore decomBucketInfo
    type decomBucketInfo struct {
    	Name   string
    	Prefix string
    }
    
    func (db decomBucketInfo) String() string {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 13:20:19 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  6. internal/config/dns/dns_path.go

    // the resulting key will be /skydns/local/skydns/staging/service .
    func msgPath(s, prefix string) string {
    	l := dns.SplitDomainName(s)
    	for i, j := 0, len(l)-1; i < j; i, j = i+1, j-1 {
    		l[i], l[j] = l[j], l[i]
    	}
    	return path.Join(append([]string{etcdPathSeparator + prefix + etcdPathSeparator}, l...)...)
    }
    
    // dnsJoin joins labels to form a fully qualified domain name. If the last label is
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 26 15:03:08 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/Init.java

                                                if (!line.line().startsWith(prefix)) {
                                                    candidates.add(
                                                            new Candidate(prefix, prefix, null, null, null, null, false));
                                                }
                                            }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/reflect/InvokableTest.java

      @SuppressWarnings("unused") // most are called by reflection
      private static class Prepender {
    
        private final String prefix;
        private final int times;
    
        Prepender(@NotBlank @Nullable String prefix, int times) throws NullPointerException {
          this.prefix = prefix;
          this.times = times;
        }
    
        Prepender(String... varargs) {
          this(null, 0);
        }
    
        // just for testing
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:00:28 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/reflect/InvokableTest.java

      @SuppressWarnings("unused") // most are called by reflection
      private static class Prepender {
    
        private final String prefix;
        private final int times;
    
        Prepender(@NotBlank @Nullable String prefix, int times) throws NullPointerException {
          this.prefix = prefix;
          this.times = times;
        }
    
        Prepender(String... varargs) {
          this(null, 0);
        }
    
        // just for testing
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 13:00:28 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/certificates/v1alpha1/generated.proto

      // named with the signer name as a prefix (translating slashes to colons).
      // For example, for the signer name `example.com/foo`, valid
      // ClusterTrustBundle object names include `example.com:foo:abc` and
      // `example.com:foo:v1`.
      //
      // If signerName is empty, then the ClusterTrustBundle object's name must
      // not have such a prefix.
      //
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top