Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for asmand (0.1 sec)

  1. pkg/workloadapi/workload.proto

    // These resources cannot be looked up on-demand.
    //
    // In some cases, we do not know the IP address of a Service. These services cannot be used for matching
    // outbound traffic, as we only have L4 attributes to route based on. However,
    // they can be used for Gateways.
    // In this case, the key format will be "network/hostname".
    // These resources cannot be looked up on-demand.
    message Address {
      oneof type {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. association.go

    			if association.Unscope && oldBelongsToExpr != nil {
    				association.Error = association.DB.Model(nil).Where(oldBelongsToExpr).Delete(reflect.New(rel.FieldSchema.ModelType).Interface()).Error
    			}
    		case schema.HasOne, schema.HasMany:
    			var (
    				primaryFields []*schema.Field
    				foreignKeys   []string
    				updateMap     = map[string]interface{}{}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/generate-clients.md

        ```
    
    ### Einen TypeScript-Client mit Tags generieren
    
    Wenn Sie unter Verwendung von Tags einen Client für eine FastAPI-Anwendung generieren, wird normalerweise auch der Client-Code anhand der Tags getrennt.
    
    Auf diese Weise können Sie die Dinge für den Client-Code richtig ordnen und gruppieren:
    
    <img src="/img/tutorial/generate-clients/image06.png">
    
    In diesem Fall haben Sie:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 03:42:11 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

     *
     * <p>This type is intended to contain values that are calculated as nodes in the work graph, but which may also be calculated
     * on demand. An instance of this type can be used as a node in the work graph.
     * </p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/handling-errors.md

    # Fehlerbehandlung
    
    Es gibt viele Situationen, in denen Sie einem Client, der Ihre API benutzt, einen Fehler zurückgeben müssen.
    
    Dieser Client könnte ein Browser mit einem Frontend, Code von jemand anderem, ein <abbr title="Internet of Things – Internet der Dinge: Geräte, die über das Internet Informationen austauschen">IoT</abbr>-Gerät, usw., sein.
    
    Sie müssten beispielsweise einem Client sagen:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:28:29 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/response-model.md

    So können Sie korrekte Typannotationen zu ihrer Funktion hinzufügen, die von ihrem Editor und Tools wie mypy verwendet werden. Und dennoch übernimmt FastAPI die Validierung und Dokumentation, usw., der Daten anhand von `response_model`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    Registering the service does not create the service instance.
    This happens on demand when a task first uses the service.
    The service instance will not be created if no task uses the service during a build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultFileLockManager.java

             * since multiple processes can acquire shared lock (due to that we currently also don't support on demand shared locks).<br>
             * 2.c If we fail, we throw a timeout exception.
             * <br><br>
             *
             * On close, we remove our details from info region and release the exclusive lock on the state region.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:32 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. src/runtime/extern.go

    import (
    	"internal/goarch"
    	"internal/goos"
    )
    
    // Caller reports file and line number information about function invocations on
    // the calling goroutine's stack. The argument skip is the number of stack frames
    // to ascend, with 0 identifying the caller of Caller.  (For historical reasons the
    // meaning of skip differs between Caller and [Callers].) The return values report the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/mvs/mvs.go

    // gives access to the comparison operation.
    //
    // It must be safe to call methods on a Reqs from multiple goroutines simultaneously.
    // Because a Reqs may read the underlying graph from the network on demand,
    // the MVS algorithms parallelize the traversal to overlap network delays.
    type Reqs interface {
    	// Required returns the module versions explicitly required by m itself.
    	// The caller must not modify the returned list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top