Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1201 - 1210 of 1,605 for Largest (0.08 sec)

  1. docs/em/docs/benchmarks.md

    # ๐Ÿ“‡
    
    ๐Ÿ”ฌ ๐Ÿ‡ธ๐Ÿ‡ฒ ๐Ÿ“‡ ๐ŸŽฆ **FastAPI** ๐Ÿˆธ ๐Ÿƒโ€โ™‚ ๐Ÿ”ฝ Uvicorn <a href="https://www.techempower.com/benchmarks/#section=test&runid=7464e520-0dc2-473d-bd34-dbdfd7e85911&hw=ph&test=query&l=zijzen-7" class="external-link" target="_blank">1๏ธโƒฃ โฉ ๐Ÿ ๐Ÿ› ๏ธ ๐Ÿ’ช</a>, ๐Ÿ•ด ๐Ÿ”› ๐Ÿ’ƒ &amp; Uvicorn ๐Ÿ‘ซ (โš™๏ธ ๐Ÿ”˜ FastAPI). (*)
    
    โœ‹๏ธ ๐Ÿ•โ” โœ… ๐Ÿ“‡ &amp; ๐Ÿ”บ ๐Ÿ‘† ๐Ÿ”œ โœ”๏ธ ๐Ÿ“„ ๐Ÿคฏ.
    
    ## ๐Ÿ“‡ &amp; ๐Ÿš…
    
    ๐Ÿ•โ” ๐Ÿ‘† โœ… ๐Ÿ“‡, โšซ๏ธ โš  ๐Ÿ‘€ ๐Ÿ“š ๐Ÿงฐ ๐ŸŽ ๐Ÿ†Ž ๐Ÿ”ฌ ๐ŸŒ“.
    
    ๐ŸŽฏ, ๐Ÿ‘€ Uvicorn, ๐Ÿ’ƒ &amp; FastAPI ๐Ÿ”ฌ ๐Ÿ‘ฏโ€โ™‚๏ธ (๐Ÿ‘ช ๐Ÿ“š ๐ŸŽ ๐Ÿงฐ).
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. internal/bucket/bandwidth/reader.go

    	lastErr  error           // last error reported, if this non-nil all reads will fail.
    	m        *Monitor
    	opts     *MonitorReaderOptions
    }
    
    // BucketOptions represents the bucket and optionally its replication target pair.
    type BucketOptions struct {
    	Name           string
    	ReplicationARN string // This is optional, and not mandatory.
    }
    
    // MonitorReaderOptions provides configurable options for monitor reader implementation.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Jul 12 14:57:31 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. .github/workflows/sigbuild-docker.yml

            id: docker_build
            uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6.9.0
            with:
              push: true
              context: ./tensorflow/tools/tf_sig_build_dockerfiles
              target: devel
              build-args: |
                PYTHON_VERSION=${{ matrix.python-version }}
                CACHEBUSTER=${{ steps.tf-version.outputs.DATE }}
              tags: |
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Nov 01 08:40:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. internal/bucket/replication/destination.go

    func (d Destination) LegacyArn() bool {
    	return strings.HasPrefix(d.ARN, DestinationARNPrefix)
    }
    
    // TargetArn returns true if arn format has prefix  "arn:minio:replication:::"
    // used for multi-destination targets
    func (d Destination) TargetArn() bool {
    	return strings.HasPrefix(d.ARN, DestinationARNMinIOPrefix)
    }
    
    // MarshalXML - encodes to XML data.
    func (d Destination) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. ci/official/utilities/code_check_changed_files.bats

        git config --system --add safe.directory '*'
        git config --system protocol.file.allow always
    
        # Note that you could generate a list of all the affected targets with e.g.:
        # bazel query $(paste -sd "+" $BATS_FILE_TMPDIR/changed_files) --keep_going
        # Only shows Added, Changed, Modified, Renamed, and Type-changed files
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Wed Jan 10 19:39:41 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. src/README.vendor

        go get golang.org/x/net@master
        go mod tidy
        go mod vendor
    
    Use caution when passing '-u' to 'go get'. The '-u' flag updates
    modules providing all transitively imported packages, not only
    the module providing the target package.
    
    Note that 'go mod vendor' only copies packages that are transitively
    imported by packages in the current module. If a new package is needed,
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Sep 30 19:15:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/netns_linux.go

    	containedCall := func() error {
    		threadNS, err := netns.GetCurrentNS()
    		if err != nil {
    			return fmt.Errorf("failed to open current netns: %v", err)
    		}
    		defer threadNS.Close()
    
    		// switch to target namespace
    		if err = NetnsSet(fdable); err != nil {
    			return err
    		}
    		defer func() {
    			err := threadNS.Set() // switch back
    			if err == nil {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jan 31 10:05:36 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin.jsp

                                                                            name="delete" data-toggle="modal"
                                                                            data-target='#confirmToDelete-${f:h(artifact.name)}-${f:h(artifact.version).replace(".", "\\.")}'
                                                                            value="<la:message key="labels.crud_button_delete" />"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 10.5K bytes
    - Viewed (0)
  9. docs/zh/docs/tutorial/debugging.md

    ๆ‰€ไปฅ๏ผŒไธ‹้ข่ฟ™ไธ€่กŒไธไผš่ขซๆ‰ง่กŒ๏ผš
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    /// info
    
    ๆ›ดๅคšไฟกๆฏ่ฏทๆฃ€ๆŸฅ <a href="https://docs.python.org/3/library/__main__.html" class="external-link" target="_blank">Python ๅฎ˜ๆ–นๆ–‡ๆกฃ</a>.
    
    ///
    
    ## ไฝฟ็”จไฝ ็š„่ฐƒ่ฏ•ๅ™จ่ฟ่กŒไปฃ็ 
    
    ็”ฑไบŽๆ˜ฏไปŽไปฃ็ ็›ดๆŽฅ่ฟ่กŒ็š„ Uvicorn ๆœๅŠกๅ™จ๏ผŒๆ‰€ไปฅไฝ ๅฏไปฅไปŽ่ฐƒ่ฏ•ๅ™จ็›ดๆŽฅ่ฐƒ็”จ Python ็จ‹ๅบ๏ผˆไฝ ็š„ FastAPI ๅบ”็”จ๏ผ‰ใ€‚
    
    ---
    
    ไพ‹ๅฆ‚๏ผŒไฝ ๅฏไปฅๅœจ Visual Studio Code ไธญ๏ผš
    
    * ่ฟ›ๅ…ฅๅˆฐใ€Œ่ฐƒ่ฏ•ใ€้ขๆฟใ€‚
    * ใ€ŒๆทปๅŠ ้…็ฝฎ...ใ€ใ€‚
    * ้€‰ไธญใ€ŒPythonใ€
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. buildscripts/checkdeps.sh

    		cd $(dirname $TARGET_FILE)
    		TARGET_FILE=$(basename $TARGET_FILE)
    	done
    
    	# Compute the canonicalized name by finding the physical path
    	# for the directory we're in and appending the target file.
    	PHYS_DIR=$(pwd -P)
    	RESULT=$PHYS_DIR/$TARGET_FILE
    	echo $RESULT
    }
    
    ## FIXME:
    ## In OSX, 'sort -V' option does not exist, hence
    ## we have our own version compare function.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top