Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Sharma (0.17 sec)

  1. docs/en/data/external_links.yml

        author_link: https://dev.to/cuongld2
        link: https://dev.to/cuongld2/build-simple-api-service-with-python-fastapi-part-1-581o
        title: Build simple API service with Python FastAPI — Part 1
      - author: Paurakh Sharma Humagain
        author_link: https://twitter.com/PaurakhSharma
        link: https://dev.to/paurakhsharma/microservice-in-python-using-fastapi-24cc
        title: Microservice in Python using FastAPI
      - author: Guillermo Cruz
    Others
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Thu Mar 21 20:57:27 GMT 2024
    - 21.3K bytes
    - Viewed (2)
  2. docs/pt/docs/async.md

    ### Outras funções de utilidade
    
    Qualquer outra função de utilidade que você chame diretamente pode ser criada com `def` normal ou `async def` e o FastAPI não irá afetar o modo como você a chama.
    
    Isso está em contraste às funções que o FastAPI chama para você: *funções de operação de rota* e dependências.
    
    Plain Text
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Sun Mar 31 23:52:53 GMT 2024
    - 22.2K bytes
    - Viewed (0)
  3. docs/es/docs/tutorial/first-steps.md

    #### "Schema" de datos
    
    El concepto "schema" también se puede referir a la forma de algunos datos, como un contenido en formato JSON.
    
    En ese caso haría referencia a los atributos del JSON, los tipos de datos que tiene, etc.
    
    #### OpenAPI y JSON Schema
    
    Plain Text
    - Registered: Sun Apr 14 07:19:09 GMT 2024
    - Last Modified: Sat Jan 13 11:57:27 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  4. internal/dsync/dsync_test.go

    func BenchmarkMutexNoSpin(b *testing.B) {
    	b.ResetTimer()
    	b.ReportAllocs()
    
    	// This benchmark models a situation where spinning in the mutex should be
    	// non-profitable and allows to confirm that spinning does not do harm.
    	// To achieve this we create excess of goroutines most of which do local work.
    	// These goroutines yield during local work, so that switching from
    	// a blocked goroutine to other goroutines is profitable.
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Sat Dec 24 03:49:07 GMT 2022
    - 11K bytes
    - Viewed (0)
  5. cni/pkg/install/install.go

    	}
    }
    
    func (in *Installer) installAll(ctx context.Context) (sets.String, error) {
    	// Install binaries
    	// Currently we _always_ do this, since the binaries do not live in a shared location
    	// and we harm no one by doing so.
    	copiedFiles, err := copyBinaries(in.cfg.CNIBinSourceDir, in.cfg.CNIBinTargetDirs)
    	if err != nil {
    		cniInstalls.With(resultLabel.Value(resultCopyBinariesFailure)).Increment()
    Go
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Thu Feb 08 18:52:24 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  6. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    hammerfest.no hamura.tokyo.jp hanamaki.iwate.jp hanamigawa.chiba.jp hanawa.fukushima.jp handa.aichi.jp handcrafted.jp handson.museum hanggliding.aero hangout hannan.osaka.jp hanno.saitama.jp hanyu.saitama.jp hapmir.no happou.akita.jp hara.nagano.jp haram.no hareid.no harima.hyogo.jp harstad.no harvestcelebration.museum hasama.oita.jp hasami.nagasaki.jp hashbang.sh hashikami.aomori.jp hashima.gifu.jp hashimoto.wakayama.jp hasuda.saitama.jp hasura-app.io hasura.app hasvik.no hatogaya.saitama.jp hatoyama.saitama.jp...
    Others
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 40.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/CipherSuite.kt

              a: String,
              b: String,
            ): Int {
              var i = 4
              val limit = minOf(a.length, b.length)
              while (i < limit) {
                val charA = a[i]
                val charB = b[i]
                if (charA != charB) return if (charA < charB) -1 else 1
                i++
              }
              val lengthA = a.length
              val lengthB = b.length
    Plain Text
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 39.9K bytes
    - Viewed (1)
  8. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

          // stream is closed (we won't use any further bytes) and the output stream is either finished
          // or closed (so RSTing both streams doesn't cause harm).
          ******@****.***(ErrorCode.CANCEL, null)
        } else if (!open) {
          connection.removeStream(id)
        }
      }
    
    Plain Text
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 23.2K bytes
    - Viewed (1)
  9. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *       Given all these possibilities, it is frequently possible for listeners to execute in UI
       *       threads, RPC network threads, or other latency-sensitive threads. In those cases, slow
       *       listeners can harm responsiveness, slow the system as a whole, or worse. (See also the
       *       note about locking below.)
       *   <li>If many tasks will be triggered by the same event, one heavyweight task may delay other
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 42.3K bytes
    - Viewed (0)
Back to top