Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 641 for Capget (0.33 sec)

  1. docs/tr/docs/advanced/index.md

    [Tutorial - User Guide](../tutorial/index.md){.internal-link target=_blank} sayfasındaki bilgilerle **FastAPI**'nın çoğu özelliğini kullanabilirsiniz.
    
    Sonraki bölümler bu sayfayı okuduğunuzu ve bu ana fikirleri bildiğinizi varsayarak hazırlanmıştır.
    
    ## Diğer Kurslar
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 05 00:05:51 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/tf_stablehlo_pass.cc

      ConversionTarget target(*context);
      target.addIllegalDialect<chlo::ChloDialect>();
      target.addLegalDialect<mhlo::MhloDialect>();
      target.addLegalDialect<arith::ArithDialect>();
      target.addLegalDialect<func::FuncDialect>();
      target.addLegalDialect<tensor::TensorDialect>();
      target.addLegalDialect<shape::ShapeDialect>();
      target.addLegalOp<func::CallOp>();
    
      if (skip_quantization_ops_) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java

              internalExecuteAndCompare(reference, target, NEXT_METHOD);
            }
          };
      Stimulus<E, Iterator<E>> remove =
          new Stimulus<E, Iterator<E>>("remove") {
            @Override
            void executeAndCompare(ListIterator<E> reference, Iterator<E> target) {
              internalExecuteAndCompare(reference, target, REMOVE_METHOD);
            }
          };
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/loader/CachingToolingImplementationLoaderTest.groovy

        def "delegates to target loader to create implementation"() {
            def distribution = Mock(Distribution)
            def connection = Mock(ConsumerConnection)
    
            when:
            def impl = loader.create(distribution, loggerFactory, progressListener, params, cancellationToken)
    
            then:
            impl == connection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 09:39:07 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. docs/pl/docs/fastapi-people.md

    * Oceniają Pull Requesty, [to szczególnie ważne dla tłumaczeń](contributing.md#translations){.internal-link target=_blank}.
    
    Proszę o brawa dla nich. 👏 🙇
    
    ## Najaktywniejsi użytkownicy w zeszłym miesiącu
    
    Oto niektórzy użytkownicy, którzy [pomagali innym w największej liczbie pytań na GitHubie](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank} podczas ostatniego miesiąca. ☕
    
    {% if people %}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:50:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. docs/zh-hant/docs/fastapi-people.md

    ...但在這裡,我想向你介紹這個社群。
    
    ---
    
    **FastAPI** 獲得了許多社群的大力支持。我想特別表揚他們的貢獻。
    
    這些人包括:
    
    * [在 GitHub 中幫助他人解答問題](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank}。
    * [建立 Pull Requests](help-fastapi.md#create-a-pull-request){.internal-link target=_blank}。
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 05 00:07:01 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            when:
            target.delete()
            target.createDir()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
        }
    
        @Issue("https://github.com/gradle/gradle/issues/1365")
        def "detect changes to broken symlink outputs in OutputFile"() {
            def root = file("root").createDir()
            def target = file("target")
            def link = root.file("link")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/nowb.go

    	enqueue := func(src, target *ir.Func, pos src.XPos) {
    		if target.Pragma&ir.Yeswritebarrierrec != 0 {
    			// Don't flow into this function.
    			return
    		}
    		if _, ok := funcs[target]; ok {
    			// Already found a path to target.
    			return
    		}
    
    		// Record the path.
    		funcs[target] = nowritebarrierrecCall{target: src, lineno: pos}
    		q.PushRight(target.Nname)
    	}
    	for !q.Empty() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. docs/tr/docs/how-to/general.md

    ## Dokümantasyon Etiketleri - OpenAPI
    
    *Yol operasyonlarınıza* etiketler ekleyerek dokümantasyon arayüzünde gruplar halinde görünmesini sağlamak için, [Tutorial - Path Operation Configurations - Tags](../tutorial/path-operation-configuration.md#tags){.internal-link target=_blank} sayfasını okuyun.
    
    ## Dokümantasyon Özeti ve Açıklaması - OpenAPI
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 27 16:20:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyDelegate.kt

    internal
    fun propertyDelegateFor(dynamicLookupRoutine: DynamicLookupRoutine, target: Any, property: KProperty<*>): PropertyDelegate =
        dynamicObjectFor(target).let { owner ->
            if (property.returnType.isMarkedNullable) NullableDynamicPropertyDelegate(dynamicLookupRoutine, owner, property.name)
            else NonNullDynamicPropertyDelegate(dynamicLookupRoutine, owner, property.name) { target.toString() }
        }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top