Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 255 for iniz (0.02 seconds)

  1. docs/tr/docs/advanced/additional-status-codes.md

    Örneğin, item'ları güncellemeye izin veren bir *path operation*'ınız olduğunu düşünelim; başarılı olduğunda 200 "OK" HTTP status code'unu döndürüyor olsun.
    
    Ancak yeni item'ları da kabul etmesini istiyorsunuz. Ve item daha önce yoksa, onu oluşturup 201 "Created" HTTP status code'unu döndürsün.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 2.1K bytes
    - Click Count (0)
  2. docs/tr/docs/tutorial/path-params.md

    {* ../../docs_src/path_params/tutorial003b_py310.py hl[6,11] *}
    
    Path önce eşleştiği için her zaman ilk olan kullanılır.
    
    ## Ön Tanımlı Değerler { #predefined-values }
    
    Bir *path operation*'ınız *path parameter* alıyorsa ama olası geçerli *path parameter* değerlerinin önceden tanımlı olmasını istiyorsanız, standart bir Python <abbr title="Enumeration - Numaralandırma">`Enum`</abbr> kullanabilirsiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  3. docs/tr/docs/advanced/openapi-callbacks.md

    Önce bir veya daha fazla callback içerecek yeni bir `APIRouter` oluşturun.
    
    {* ../../docs_src/openapi_callbacks/tutorial001_py310.py hl[1,23] *}
    
    ### Callback *path operation*'ını oluşturun { #create-the-callback-path-operation }
    
    Callback *path operation*'ını oluşturmak için, yukarıda oluşturduğunuz aynı `APIRouter`'ı kullanın.
    
    Normal bir FastAPI *path operation*'ı gibi görünmelidir:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  4. docs/tr/docs/tutorial/security/first-steps.md

    # Güvenlik - İlk Adımlar { #security-first-steps }
    
    **backend** API’nizin bir domain’de olduğunu düşünelim.
    
    Ve başka bir domain’de ya da aynı domain’in farklı bir path’inde (veya bir mobil uygulamada) bir **frontend**’iniz var.
    
    Ve frontend’in, **username** ve **password** kullanarak backend ile kimlik doğrulaması yapabilmesini istiyorsunuz.
    
    Bunu **FastAPI** ile **OAuth2** kullanarak oluşturabiliriz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  5. internal/once/init.go

    // initialized when the provided function returns nil.
    
    // Init represents the structure.
    type Init struct {
    	done uint32
    	m    sync.Mutex
    }
    
    // Do is similar to sync.Once.Do - makes one successful
    // call to the function. ie, it invokes the function
    // if it is not successful yet.
    func (l *Init) Do(f func() error) error {
    	if atomic.LoadUint32(&l.done) == 0 {
    		return l.do(f)
    	}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue May 09 04:20:31 GMT 2023
    - 2.1K bytes
    - Click Count (0)
  6. internal/init/init.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package init
    
    import "os"
    
    func init() {
    	// All MinIO operations must be under UTC.
    	os.Setenv("TZ", "UTC")
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Nov 04 23:44:38 GMT 2022
    - 874 bytes
    - Click Count (0)
  7. .ci/init.gradle

    }
    
    if (System.getenv('VAULT_ROLE_ID') == null && System.getenv('VAULT_SECRET_ID') == null && System.getenv('VAULT_TOKEN') == null) {
      throw new GradleException("You must set either the VAULT_ROLE_ID and VAULT_SECRET_ID environment variables, " +
        "or the VAULT_TOKEN environment variable to use this init script.")
    }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Nov 13 10:14:04 GMT 2019
    - 3K bytes
    - Click Count (0)
  8. build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-init-template-versions.gradle.kts

    import gradlebuild.buildutils.tasks.UpdateInitPluginTemplateVersionFile
    
    tasks {
        register<UpdateInitPluginTemplateVersionFile>("updateInitPluginTemplateVersionFile") {
            group = "Build init"
            libraryVersionFile = layout.projectDirectory.file(
                "src/main/resources/org/gradle/buildinit/tasks/templates/library-versions.properties"
            )
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 20 15:24:40 GMT 2023
    - 378 bytes
    - Click Count (0)
  9. .github/workflows/codeql-analysis.init.gradle

    Sterling Greene <******@****.***> 1602308214 -0400
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Sat Oct 10 05:36:54 GMT 2020
    - 745 bytes
    - Click Count (0)
  10. docs/tr/docs/tutorial/body.md

    ```JSON
    {
        "name": "Foo",
        "price": 45.2
    }
    ```
    
    ## Parametre olarak tanımlayın { #declare-it-as-a-parameter }
    
    Bunu *path operation*'ınıza eklemek için, path ve query parametrelerini tanımladığınız şekilde tanımlayın:
    
    {* ../../docs_src/body/tutorial001_py310.py hl[16] *}
    
    ...ve type'ını, oluşturduğunuz model olan `Item` olarak belirtin.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 6.9K bytes
    - Click Count (0)
Back to Top