Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 404 for callback (0.04 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Callback.kt

        e: IOException,
      )
    
      /**
       * Called when the HTTP response was successfully returned by the remote server. The callback may
       * proceed to read the response body with [Response.body]. The response is still live until its
       * response body is [closed][ResponseBody]. The recipient of the callback may consume the response
       * body on another thread.
       *
    Registered: 2025-05-30 11:42
    - Last Modified: 2024-12-27 13:39
    - 1.6K bytes
    - Viewed (0)
  2. callbacks.go

    	var callbacks []*callback
    	removedMap := map[string]bool{}
    	for _, callback := range p.callbacks {
    		if callback.match == nil || callback.match(p.db) {
    			callbacks = append(callbacks, callback)
    		}
    		if callback.remove {
    			removedMap[callback.name] = true
    		}
    	}
    
    	if len(removedMap) > 0 {
    		callbacks = removeCallbacks(callbacks, removedMap)
    	}
    	p.callbacks = callbacks
    
    Registered: 2025-05-25 09:35
    - Last Modified: 2024-03-26 03:33
    - 8.6K bytes
    - Viewed (0)
  3. docs/es/docs/advanced/openapi-callbacks.md

    ///
    
    ### Crear un `APIRouter` de callback
    
    Primero crea un nuevo `APIRouter` que contendrá uno o más callbacks.
    
    {* ../../docs_src/openapi_callbacks/tutorial001.py hl[3,25] *}
    
    ### Crear la *path operation* del callback
    
    Para crear la *path operation* del callback utiliza el mismo `APIRouter` que creaste anteriormente.
    
    Debería verse como una *path operation* normal de FastAPI:
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-12-30 18:26
    - 8K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/openapi-callbacks.md

    ///
    
    ### Create a callback `APIRouter`
    
    First create a new `APIRouter` that will contain one or more callbacks.
    
    {* ../../docs_src/openapi_callbacks/tutorial001.py hl[3,25] *}
    
    ### Create the callback *path operation*
    
    To create the callback *path operation* use the same `APIRouter` you created above.
    
    It should look just like a normal FastAPI *path operation*:
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-09 11:23
    - 7.6K bytes
    - Viewed (0)
  5. docs/pt/docs/advanced/openapi-callbacks.md

    ///
    
    ### Criar um `APIRouter` para o callback
    
    Primeiramente crie um novo `APIRouter` que conterá um ou mais callbacks.
    
    {* ../../docs_src/openapi_callbacks/tutorial001.py hl[3,25] *}
    
    ### Crie a *operação de rota* do callback
    
    Para criar a *operação de rota* do callback, use o mesmo `APIRouter` que você criou acima.
    
    Ele deve parecer exatamente como uma *operação de rota* normal do FastAPI:
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 8.1K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/openapi-callbacks.md

    ///
    
    ### Einen Callback-`APIRouter` erstellen
    
    Erstellen Sie zunächst einen neuen `APIRouter`, der einen oder mehrere Callbacks enthält.
    
    {* ../../docs_src/openapi_callbacks/tutorial001.py hl[3,25] *}
    
    ### Die Callback-*Pfadoperation* erstellen
    
    Um die Callback-*Pfadoperation* zu erstellen, verwenden Sie denselben `APIRouter`, den Sie oben erstellt haben.
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-11-18 02:25
    - 8.7K bytes
    - Viewed (0)
  7. callbacks/callbacks.go

    	createCallback.Clauses = config.CreateClauses
    
    	queryCallback := db.Callback().Query()
    	queryCallback.Register("gorm:query", Query)
    	queryCallback.Register("gorm:preload", Preload)
    	queryCallback.Register("gorm:after_query", AfterQuery)
    	queryCallback.Clauses = config.QueryClauses
    
    	deleteCallback := db.Callback().Delete()
    	deleteCallback.Match(enableTransaction).Register("gorm:begin_transaction", BeginTransaction)
    Registered: 2025-05-25 09:35
    - Last Modified: 2021-10-27 23:56
    - 3.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/log/cbean/ca/bs/BsSearchLogCA.java

            if (queryLambda != null) {
                queryLambda.callback(cq);
            }
            FilterAggregationBuilder builder = regFilterA(name, cq.getQuery());
            if (opLambda != null) {
                opLambda.callback(builder);
            }
            if (aggsLambda != null) {
                SearchLogCA ca = new SearchLogCA();
                aggsLambda.callback(ca);
                ca.getAggregationBuilderList().forEach(builder::subAggregation);
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 115.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsKeyMatchCQ.java

            KeyMatchCQ cq = new KeyMatchCQ();
            queryLambda.callback(cq);
            final Collection<FilterFunctionBuilder> list = new ArrayList<>();
            if (functionsLambda != null) {
                functionsLambda.callback((cqLambda, scoreFunctionBuilder) -> {
                    KeyMatchCQ cf = new KeyMatchCQ();
                    cqLambda.callback(cf);
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 68.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsFailureUrlCA.java

            if (queryLambda != null) {
                queryLambda.callback(cq);
            }
            FilterAggregationBuilder builder = regFilterA(name, cq.getQuery());
            if (opLambda != null) {
                opLambda.callback(builder);
            }
            if (aggsLambda != null) {
                FailureUrlCA ca = new FailureUrlCA();
                aggsLambda.callback(ca);
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 46.5K bytes
    - Viewed (0)
Back to top