Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 557 for knows (0.12 sec)

  1. docs/em/docs/project-generation.md

    * ๐Ÿ <a href="https://github.com/fastapi/fastapi" class="external-link" target="_blank">**FastAPI**</a> ๐Ÿ‘ฉโ€๐Ÿ’ป:
        * **โฉ**: ๐Ÿ“ถ โ†• ๐ŸŽญ, ๐Ÿ”› ๐Ÿ‡ท๐Ÿ‡ช โฎ๏ธ **โœณ** &amp; **๐Ÿšถ** (๐Ÿ‘ ๐Ÿ’ƒ &amp; Pydantic).
        * **๐Ÿ‹๏ธ**: ๐Ÿ‘‘ ๐Ÿ‘จโ€๐ŸŽจ ๐Ÿ•โ€๐Ÿฆบ. <abbr title="also known as auto-complete, autocompletion, IntelliSense">๐Ÿ› ๏ธ</abbr> ๐ŸŒ. ๐ŸŒ˜ ๐Ÿ•ฐ ๐Ÿ› ๏ธ.
        * **โฉ**: ๐Ÿ”ง โฉ โš™๏ธ &amp; ๐Ÿ’ก. ๐ŸŒ˜ ๐Ÿ•ฐ ๐Ÿ‘‚ ๐Ÿฉบ.
        * **๐Ÿ“**: ๐Ÿ“‰ ๐Ÿ“Ÿ โŽ. ๐Ÿ’— โš’ โšช๏ธโžก๏ธ ๐Ÿ”  ๐Ÿ”ข ๐Ÿ“„.
        * **๐Ÿ‹๏ธ**: ๐Ÿคš ๐Ÿญ-๐Ÿ”œ ๐Ÿ“Ÿ. โฎ๏ธ ๐Ÿง ๐ŸŽ“ ๐Ÿงพ.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Jul 29 23:35:07 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. android/guava-tests/benchmark/com/google/common/util/concurrent/FuturesGetCheckedBenchmark.java

              URISyntaxException.class);
    
      @Param Validator validator;
      @Param Result result;
      @Param ExceptionType exceptionType;
      /**
       * The number of other exception types in the cache of known-good exceptions and the number of
       * other {@code ClassValue} entries for the exception type to be tested. This lets us evaluate
       * whether our solution scales to use with multiple exception types and to whether it is affected
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Mar 22 03:01:34 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk8WithJettyBootPlatform.kt

            String::class.java == returnType && callArgs.size == 1 && callArgs[0] is List<*>
          ) {
            val peerProtocols = callArgs[0] as List<*>
            // Pick the first known protocol the peer advertises.
            for (i in 0..peerProtocols.size) {
              val protocol = peerProtocols[i] as String
              if (protocol in protocols) {
                selected = protocol
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. internal/disk/stat_windows.go

    // It returns free space available to the user (including quota limitations)
    //
    // https://msdn.microsoft.com/en-us/library/windows/desktop/aa364937(v=vs.85).aspx
    func GetInfo(path string, _ bool) (info Info, err error) {
    	// Stat to know if the path exists.
    	if _, err = os.Stat(path); err != nil {
    		return Info{}, err
    	}
    
    	lpFreeBytesAvailable := int64(0)
    	lpTotalNumberOfBytes := int64(0)
    	lpTotalNumberOfFreeBytes := int64(0)
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/lifecycle/LifecycleExecutor.java

        // by the POM builder because they will have to be defined in plugin management. Once this is setComplete then it
        // can be passed back so that the default configuration information can be populated.
        //
        // We need to know the specific version so that we can look up the right version of the plugin descriptor
        // which tells us what the default configuration is.
        //
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. cmd/sts-datatypes.go

    type WebIdentityResult struct {
    	// The identifiers for the temporary security credentials that the operation
    	// returns.
    	AssumedRoleUser AssumedRoleUser `xml:",omitempty"`
    
    	// The intended audience (also known as client ID) of the web identity token.
    	// This is traditionally the client identifier issued to the application that
    	// requested the client grants.
    	Audience string `xml:",omitempty"`
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/math/Quantiles.java

            swap(array, partitionPoint, i);
            partitionPoint--;
          }
        }
    
        // We now know that all elements with indexes in (from, partitionPoint] are less than or equal
        // to the pivot at from, and all elements with indexes in (partitionPoint, to] are greater than
        // it. We swap the pivot into partitionPoint and we know the array is partitioned around that.
        swap(array, from, partitionPoint);
        return partitionPoint;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/MutableClassToInstanceMapTest.java

        map = MutableClassToInstanceMap.create();
      }
    
      public void testConstraint() {
    
        /**
         * We'll give ourselves a pass on testing all the possible ways of breaking the constraint,
         * because we know that newClassMap() is implemented using ConstrainedMap which is itself
         * well-tested. A purist would object to this, but what can I say, we're dirty cheaters.
         */
        map.put(Integer.class, new Integer(5));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/templates.md

    Also, before that, in previous versions, the `request` object was passed as part of the key-value pairs in the context for Jinja2.
    
    ///
    
    /// tip
    
    By declaring `response_class=HTMLResponse` the docs UI will be able to know that the response will be HTML.
    
    ///
    
    /// note | "Technical Details"
    
    You could also use `from starlette.templating import Jinja2Templates`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. docs/ja/docs/features.md

    **FastAPI** ใฏไปฅไธ‹ใฎๆฉŸ่ƒฝใ‚’ใ‚‚ใกใพใ™:
    
    ### ใ‚ชใƒผใƒ—ใƒณใ‚นใ‚ฟใƒณใƒ€ใƒผใƒ‰ๆบ–ๆ‹ 
    
    * APIไฝœๆˆใฎใŸใ‚ใฎ<a href="https://github.com/OAI/OpenAPI-Specification" class="external-link" target="_blank"><strong>OpenAPI</strong></a>ใ€‚ใ“ใ‚Œใฏใ€<abbr title="also known as: endpoints, routes">path</abbr> <abbr title="also known as HTTP methods, as POST, GET, PUT, DELETE">operations</abbr>ใฎๅฎฃ่จ€ใ€ใƒ‘ใƒฉใƒกใƒผใ‚ฟใ€ใƒœใƒ‡ใ‚ฃใƒชใ‚ฏใ‚จใ‚นใƒˆใ€ใ‚ปใ‚ญใƒฅใƒชใƒ†ใ‚ฃใชใฉใ‚’ๅซใ‚“ใงใ„ใพใ™ใ€‚
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top