Search Options

Results per page
Sort
Preferred Languages
Advance

Results 3651 - 3660 of 3,796 for Get (0.03 sec)

  1. docs/pt/docs/contributing.md

    <div class="termy">
    
    ```console
    $ which pip
    
    some/directory/fastapi/env/bin/pip
    ```
    
    </div>
    
    ////
    
    //// tab | Windows PowerShell
    
    <div class="termy">
    
    ```console
    $ Get-Command pip
    
    some/directory/fastapi/env/bin/pip
    ```
    
    </div>
    
    ////
    
    Se ele exibir o binรกrio `pip` em `env/bin/pip` entรฃo funcionou. ๐ŸŽ‰
    
    
    
    /// tip
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. docs/ko/docs/tutorial/dependencies/index.md

    ```Python hl_lines="8-11"
    {!> ../../docs_src/dependencies/tutorial001.py!}
    ```
    
    ////
    
    ์ด๊ฒŒ ๋‹ค์ž…๋‹ˆ๋‹ค.
    
    **๋‹จ ๋‘ ์ค„์ž…๋‹ˆ๋‹ค**.
    
    ๊ทธ๋ฆฌ๊ณ , ์ด ํ•จ์ˆ˜๋Š” ์—ฌ๋Ÿฌ๋ถ„์˜ ๋ชจ๋“  *๊ฒฝ๋กœ ์ž‘๋™ ํ•จ์ˆ˜*๊ฐ€ ๊ฐ€์ง€๊ณ  ์žˆ๋Š” ๊ฒƒ๊ณผ ๊ฐ™์€ ํ˜•ํƒœ์™€ ๊ตฌ์กฐ๋ฅผ ๊ฐ€์ง€๊ณ  ์žˆ์Šต๋‹ˆ๋‹ค.
    
    ์—ฌ๋Ÿฌ๋ถ„์€ ์ด๋ฅผ "๋ฐ์ฝ”๋ ˆ์ดํ„ฐ"๊ฐ€ ์—†๋Š” (`@app.get("/some-path")`๊ฐ€ ์—†๋Š”) *๊ฒฝ๋กœ ์ž‘๋™ ํ•จ์ˆ˜*๋ผ๊ณ  ์ƒ๊ฐํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    ๊ทธ๋ฆฌ๊ณ  ์—ฌ๋Ÿฌ๋ถ„์ด ์›ํ•˜๋Š” ๋ฌด์—‡์ด๋“  ๋ฐ˜ํ™˜ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    ์ด ๊ฒฝ์šฐ, ์ด ์˜์กด์„ฑ์€ ๋‹ค์Œ๊ณผ ๊ฐ™์€ ๊ฒฝ์šฐ๋ฅผ ๊ธฐ๋Œ€ํ•ฉ๋‹ˆ๋‹ค:
    
    * ์„ ํƒ์ ์ธ ์ฟผ๋ฆฌ ๋งค๊ฐœ๋ณ€์ˆ˜ `q`, `str`์„ ์ž๋ฃŒํ˜•์œผ๋กœ ๊ฐ€์ง‘๋‹ˆ๋‹ค.
    * ์„ ํƒ์ ์ธ ์ฟผ๋ฆฌ ๋งค๊ฐœ๋ณ€์ˆ˜ `skip`, `int`๋ฅผ ์ž๋ฃŒํ˜•์œผ๋กœ ๊ฐ€์ง€๋ฉฐ ๊ธฐ๋ณธ ๊ฐ’์€ `0`์ž…๋‹ˆ๋‹ค.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. misc/go_android_exec/main.go

    	// forcing cmd.Run to use another pipe and goroutine to pass
    	// along stderr from adb.
    	cmd.Stderr = struct{ io.Writer }{os.Stderr}
    	err := cmd.Run()
    
    	// Before we process err, flush any further output and get the exit code.
    	exitCode, err2 := filter.Finish()
    
    	if err != nil {
    		return 0, fmt.Errorf("adb exec-out %s: %v", args, err)
    	}
    	return exitCode, err2
    }
    
    func adb(args ...string) error {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.19.md

      E0303 17:25:03.436781 63839 summary_sys_containers.go:47] Failed to get system container stats for "/docker": failed to get cgroup stats for "/docker": failed to get container info for "/docker": unknown container "/docker"
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Jan 05 05:42:32 UTC 2022
    - 489.7K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/EventListenerTest.kt

    import okhttp3.ResponseBody.Companion.toResponseBody
    import okhttp3.internal.DoubleInetAddressDns
    import okhttp3.internal.RecordingOkAuthenticator
    import okhttp3.internal.connection.RealConnectionPool.Companion.get
    import okhttp3.logging.HttpLoggingInterceptor
    import okhttp3.testing.Flaky
    import okhttp3.testing.PlatformRule
    import okio.Buffer
    import okio.BufferedSink
    import org.hamcrest.BaseMatcher
    import org.hamcrest.CoreMatchers
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 56.9K bytes
    - Viewed (2)
  6. CHANGELOG/CHANGELOG-1.13.md

    - `kubectl get` no longer exits before printing all of its results if an error is found ([#70311](https://github.com/kubernetes/kubernetes/pull/70311), [@juanvallejo](https://github.com/juanvallejo))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

                            state = 1;
                        } else {
                            out[j++] = ch;
                        }
                        break;
                    case 1:
                        /* Get ASCII hex value and convert to platform dependant
                         * encoding like EBCDIC perhaps
                         */
                        b[0] = (byte)(Integer.parseInt( str.substring( i, i + 2 ), 16 ) & 0xFF);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.5K bytes
    - Viewed (0)
  8. docs/de/docs/contributing.md

    <div class="termy">
    
    ```console
    $ which pip
    
    some/directory/fastapi/env/bin/pip
    ```
    
    </div>
    
    ////
    
    //// tab | Windows PowerShell
    
    <div class="termy">
    
    ```console
    $ Get-Command pip
    
    some/directory/fastapi/env/bin/pip
    ```
    
    </div>
    
    ////
    
    Wenn die `pip` Binรคrdatei unter `env/bin/pip` angezeigt wird, hat es funktioniert. ๐ŸŽ‰
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. docs/ko/docs/features.md

    # ๊ธฐ๋Šฅ
    
    ## FastAPI์˜ ๊ธฐ๋Šฅ
    
    **FastAPI**๋Š” ๋‹ค์Œ๊ณผ ๊ฐ™์€ ๊ธฐ๋Šฅ์„ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค:
    
    ### ๊ฐœ๋ฐฉํ˜• ํ‘œ์ค€์„ ๊ธฐ๋ฐ˜์œผ๋กœ
    
    * <abbr title="์—”๋“œํฌ์ธํŠธ, ๋ผ์šฐํŠธ๋กœ๋„ ์•Œ๋ ค์ ธ ์žˆ์Šต๋‹ˆ๋‹ค">๊ฒฝ๋กœ</abbr><abbr title="POST, GET, PUT, DELETE์™€ ๊ฐ™์€ HTTP ๋ฉ”์†Œ๋“œ๋กœ ์•Œ๋ ค์ ธ ์žˆ์Šต๋‹ˆ๋‹ค">์ž‘๋™</abbr>, ๋งค๊ฐœ๋ณ€์ˆ˜, ๋ณธ๋ฌธ ์š”์ฒญ, ๋ณด์•ˆ ๊ทธ ์™ธ์˜ ์„ ์–ธ์„ ํฌํ•จํ•œ API ์ƒ์„ฑ์„ ์œ„ํ•œ <a href="https://github.com/OAI/OpenAPI-Specification" class="external-link" target="_blank"><strong>OpenAPI</strong></a>
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. internal/logger/target/http/http.go

    					if !ok {
    						break drain
    					}
    
    					currentGlobalBuffer <- v
    				default:
    					break drain
    				}
    			}
    		}
    	}()
    
    	lastBatchProcess := time.Now()
    
    	buf := bytebufferpool.Get()
    	enc := jsoniter.ConfigCompatibleWithStandardLibrary.NewEncoder(buf)
    	defer bytebufferpool.Put(buf)
    
    	isDirQueue := h.config.QueueDir != ""
    
    	// globalBuffer is always created or adjusted
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Sep 11 22:20:42 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top