Search Options

Results per page
Sort
Preferred Languages
Advance

Results 851 - 860 of 1,424 for cool (0.04 sec)

  1. docs/em/docs/tutorial/query-params.md

    ```
    
    ////
    
    πŸ‘‰ πŸ’Ό, πŸ”’ πŸ”’ `q` πŸ”œ πŸ“¦, & πŸ”œ `None` πŸ”’.
    
    /// check
    
    πŸ‘€ πŸ‘ˆ **FastAPI** πŸ™ƒ πŸ₯ƒ πŸ‘€ πŸ‘ˆ ➑ πŸ”’ `item_id` ➑ πŸ”’ & `q` 🚫,, ⚫️ πŸ”’ πŸ”’.
    
    ///
    
    ## πŸ”’ πŸ”’ πŸ†Ž πŸ› οΈ
    
    πŸ‘† πŸ’ͺ πŸ“£ `bool` πŸ†Ž, & πŸ‘« πŸ”œ πŸ—œ:
    
    //// tab | 🐍 3️⃣.6️⃣ & πŸ”›
    
    ```Python hl_lines="9"
    {!> ../../docs_src/query_params/tutorial003.py!}
    ```
    
    ////
    
    //// tab | 🐍 3️⃣.1️⃣0️⃣ & πŸ”›
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. docs/tr/docs/tutorial/query-params.md

    ///
    
    ## Sorgu Parametresi Tip Dânüşümü
    
    Aşağıda gârüldüğü gibi dânüştürülmek üzere `bool` tipleri de tanımlayabilirsiniz:
    
    //// tab | Python 3.10+
    
    ```Python hl_lines="7"
    {!> ../../docs_src/query_params/tutorial003_py310.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. docs/uk/docs/index.md

    from typing import Union
    
    from fastapi import FastAPI
    from pydantic import BaseModel
    
    app = FastAPI()
    
    
    class Item(BaseModel):
        name: str
        price: float
        is_offer: Union[bool, None] = None
    
    
    @app.get("/")
    def read_root():
        return {"Hello": "World"}
    
    
    @app.get("/items/{item_id}")
    def read_item(item_id: int, q: Union[str, None] = None):
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 20 19:20:23 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/builtin/builtin.go

    for the language's special identifiers.
    */
    package builtin
    
    import "cmp"
    
    // bool is the set of boolean values, true and false.
    type bool bool
    
    // true and false are the two untyped boolean values.
    const (
    	true  = 0 == 0 // Untyped bool.
    	false = 0 != 0 // Untyped bool.
    )
    
    // uint8 is the set of all unsigned 8-bit integers.
    // Range: 0 through 255.
    type uint8 uint8
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. cmd/admin-handlers-config-kv.go

    func (bce badConfigErr) Unwrap() error {
    	return bce.Err
    }
    
    type setConfigResult struct {
    	Cfg                     config.Config
    	SubSys                  string
    	Dynamic                 bool
    	LoggerWebhookCfgUpdated bool
    }
    
    // SetConfigKVHandler - PUT /minio/admin/v3/set-config-kv
    func (a adminAPIHandlers) SetConfigKVHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. docs/em/docs/tutorial/extra-data-types.md

    # βž• πŸ’½ πŸ†Ž
    
    πŸ†™ πŸ”œ, πŸ‘† βœ”οΈ βš™οΈ ⚠ πŸ“Š πŸ†Ž, πŸ’–:
    
    * `int`
    * `float`
    * `str`
    * `bool`
    
    βœ‹οΈ πŸ‘† πŸ’ͺ βš™οΈ πŸŒ… πŸ— πŸ“Š πŸ†Ž.
    
    & πŸ‘† πŸ”œ βœ”οΈ 🎏 βš’ πŸ‘€ πŸ†™ πŸ”œ:
    
    * πŸ‘‘ πŸ‘¨β€πŸŽ¨ πŸ•β€πŸ¦Ί.
    * πŸ’½ πŸ› οΈ βšͺ️➑️ πŸ“¨ πŸ“¨.
    * πŸ’½ πŸ› οΈ πŸ“¨ πŸ’½.
    * πŸ’½ πŸ”¬.
    * 🏧 ✍ & 🧾.
    
    ## 🎏 πŸ’½ πŸ†Ž
    
    πŸ“₯ πŸŒ– πŸ“Š πŸ†Ž πŸ‘† πŸ’ͺ βš™οΈ:
    
    * `UUID`:
        * 🐩 "⭐ 😍 πŸ†”", ⚠ πŸ†” πŸ“š πŸ’½ & βš™οΈ.
        * πŸ“¨ & πŸ“¨ πŸ”œ 🎨 `str`.
    * `datetime.datetime`:
        * 🐍 `datetime.datetime`.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. scripts/deploy_docs_status.py

    from pydantic_settings import BaseSettings
    
    
    class Settings(BaseSettings):
        github_repository: str
        github_token: SecretStr
        deploy_url: str | None = None
        commit_sha: str
        run_id: int
        is_done: bool = False
    
    
    def main():
        logging.basicConfig(level=logging.INFO)
        settings = Settings()
    
        logging.info(f"Using config: {settings.model_dump_json()}")
        g = Github(settings.github_token.get_secret_value())
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Aug 09 15:52:41 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. src/buildall.bash

    	shift
    fi
    
    if [ "$sete" = true ]; then
    	set -e
    fi
    
    pattern="$1"
    if [ "$pattern" = "" ]; then
    	pattern=.
    fi
    
    ./make.bash || exit 1
    GOROOT="$(cd .. && pwd)"
    
    gettargets() {
    	../bin/go tool dist list | sed -e 's|/|-|' |
    		grep -E -v '^(android|ios)' # need C toolchain even for cross-compiling
    	echo linux-arm-arm5
    }
    
    selectedtargets() {
    	gettargets | grep -E "$pattern"
    }
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Apr 23 17:45:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. istioctl/cmd/root_test.go

    // limitations under the License.
    
    package cmd
    
    import (
    	"bytes"
    	"strings"
    	"testing"
    
    	"github.com/spf13/cobra"
    )
    
    func checkHelpForFlag(t *testing.T, gotHelpText, flag string, wantExists bool) {
    	t.Helper()
    
    	if strings.Contains(gotHelpText, flag) != wantExists {
    		if wantExists {
    			t.Errorf("%q flag was expected but not found in help text", flag)
    		} else {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jan 15 17:59:55 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  10. cni/pkg/iptables/iptables.go

    )
    
    type Config struct {
    	TraceLogging bool `json:"IPTABLES_TRACE_LOGGING"`
    	EnableIPv6   bool `json:"ENABLE_INBOUND_IPV6"`
    	RedirectDNS  bool `json:"REDIRECT_DNS"`
    	// If true, TPROXY will be used for redirection. Else, REDIRECT will be used.
    	// Currently, this is treated as a feature flag, but may be promoted to a permanent feature if there is a need.
    	TPROXYRedirection bool `json:"TPROXY_REDIRECTION"`
    }
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Oct 15 15:39:28 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top