Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 115 for gint (0.12 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    //
    // If the first token of the hint matches the first token of the
    // line, the new line is added at the end of the block containing hint,
    // extracting hint into a new block if it is not yet in one.
    //
    // If the hint is non-nil buts its first token does not match,
    // the new line is added after the block containing hint
    // (or hint itself, if not in a block).
    //
    // If no hint is provided, addLine appends the line to the end of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. docs/de/docs/async.md

    * **Deep Learning**: Dies ist ein Teilgebiet des maschinellen Lernens, daher gilt das Gleiche. Es ist nur so, dass es nicht eine einzige Tabelle mit Zahlen zum Multiplizieren gibt, sondern eine riesige Menge davon, und in vielen Fällen verwendet man einen speziellen Prozessor, um diese Modelle zu erstellen und / oder zu verwenden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:06:16 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  3. docs/de/docs/deployment/docker.md

    Und es gibt einen öffentlichen <a href="https://hub.docker.com/" class="external-link" target="_blank">Docker <abbr title="Umschlagsplatz">Hub</abbr></a> mit vorgefertigten **offiziellen Containerimages** für viele Tools, Umgebungen, Datenbanken und Anwendungen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:19:17 UTC 2024
    - 38.9K bytes
    - Viewed (0)
  4. docs/de/docs/help-fastapi.md

    Gefällt Ihnen **FastAPI**?
    
    Möchten Sie FastAPI, anderen Benutzern und dem Autor helfen?
    
    Oder möchten Sie Hilfe zu **FastAPI** erhalten?
    
    Es gibt sehr einfache Möglichkeiten zu helfen (manche erfordern nur ein oder zwei Klicks).
    
    Und es gibt auch viele Möglichkeiten, Hilfe zu bekommen.
    
    ## Newsletter abonnieren
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:57 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/dependencies/index.md

    In diesem Fall erwartet diese Abhängigkeit:
    
    * Einen optionalen Query-Parameter `q`, der ein `str` ist.
    * Einen optionalen Query-Parameter `skip`, der ein `int` ist und standardmäßig `0` ist.
    * Einen optionalen Query-Parameter `limit`, der ein `int` ist und standardmäßig `100` ist.
    
    Und dann wird einfach ein `dict` zurückgegeben, welches diese Werte enthält.
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:01:10 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/builtin.go

    		}
    	}
    
    	if ir.IsConst(hint, constant.Int) && constant.Compare(hint.Val(), token.LEQ, constant.MakeInt64(abi.MapBucketCount)) {
    		// Handling make(map[any]any) and
    		// make(map[any]any, hint) where hint <= BUCKETSIZE
    		// special allows for faster map initialization and
    		// improves binary size by using calls with fewer arguments.
    		// For hint <= BUCKETSIZE overLoadFactor(hint, 0) is false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. cmd/storage-rest-server.go

    	case errors.Is(err, errDiskNotDir):
    		var hint string
    		if endpoint.URL != nil {
    			hint = fmt.Sprintf("Drive '%s' is not a directory, MinIO erasure coding needs a directory", endpoint.Path)
    		} else {
    			hint = "Drives are not directories, MinIO erasure coding needs directories"
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/path-params.md

    Der Pfad-Parameter `item_id` hatte den Wert `"foo"`, was kein `int` ist.
    
    Die gleiche Fehlermeldung würde angezeigt werden, wenn Sie ein `float` (also eine Kommazahl) statt eines `int`s übergeben würden, wie etwa in: <a href="http://127.0.0.1:8000/items/4.2" class="external-link" target="_blank">http://127.0.0.1:8000/items/4.2</a>
    
    !!! check
        Sprich, mit der gleichen Python-Typdeklaration gibt Ihnen **FastAPI** Datenvalidierung.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:28:59 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema.fbs

    }
    
    table SplitVOptions {
      num_splits: int;
    }
    
    table StridedSliceOptions {
      begin_mask: int;
      end_mask: int;
      ellipsis_mask: int;
      new_axis_mask: int;
      shrink_axis_mask: int;
      // If true, then the end tensor is an offset of the begin tensor.
      offset: bool;
    }
    
    table LogSoftmaxOptions {
    }
    
    table CastOptions {
      in_data_type: TensorType;
      out_data_type: TensorType;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  10. src/net/dial.go

    	)
    	switch hint := hint.(type) {
    	case *TCPAddr:
    		tcp = hint
    		wildcard = tcp.isWildcard()
    	case *UDPAddr:
    		udp = hint
    		wildcard = udp.isWildcard()
    	case *IPAddr:
    		ip = hint
    		wildcard = ip.isWildcard()
    	}
    	naddrs := addrs[:0]
    	for _, addr := range addrs {
    		if addr.Network() != hint.Network() {
    			return nil, &AddrError{Err: "mismatched local address type", Addr: hint.String()}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top