Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 191 for tienes (0.13 sec)

  1. platforms/core-execution/workers/src/main/java/org/gradle/workers/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Workers allow running pieces of work in the background, either
     * in-process in isolated classloaders or out-of-process in reusable
     * daemons.
     *
     * @since 3.5
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 817 bytes
    - Viewed (0)
  2. docs/de/docs/benchmarks.md

    * **FastAPI**:
        * So wie Starlette Uvicorn verwendet und nicht schneller als dieses sein kann, verwendet **FastAPI** Starlette, sodass es nicht schneller als dieses sein kann.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 16:04:13 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/readme-templates/common-summary.adoc.template

    == Publish a Build Scan
    
    The best way to learn more about what your build is doing behind the scenes, is to publish a link:https://scans.gradle.com[build scan].
    To do so, just run Gradle with the `--scan` flag.
    
    [listing.terminal.sample-command]
    ----
    \$ ./gradlew build --scan
    
    BUILD SUCCESSFUL in 0s
    ${tasksExecuted.raw} actionable tasks: ${tasksExecuted.raw} executed
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 997 bytes
    - Viewed (0)
  4. pkg/proxy/config/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package config provides decoupling between various configuration sources (etcd, files,...) and
    // the pieces that actually care about them (loadbalancer, proxy). Config takes 1 or more
    // configuration sources and allows for incremental (add/remove) and full replace (set)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/asmb.go

    	"fmt"
    	"runtime"
    	"sync"
    )
    
    // Assembling the binary is broken into two steps:
    //   - writing out the code/data/dwarf Segments, applying relocations on the fly
    //   - writing out the architecture specific pieces.
    //
    // This function handles the first part.
    func asmb(ctxt *Link) {
    	// TODO(jfaller): delete me.
    	if thearch.Asmb != nil {
    		thearch.Asmb(ctxt, ctxt.loader)
    		return
    	}
    
    	if ctxt.IsELF {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 09:22:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/security/get-current-user.md

        Sie erinnern sich vielleicht, dass Requestbodys ebenfalls mit Pydantic-Modellen deklariert werden.
    
        Weil Sie `Depends` verwenden, wird **FastAPI** hier aber nicht verwirrt.
    
    !!! check
        Die Art und Weise, wie dieses System von Abhängigkeiten konzipiert ist, ermöglicht es uns, verschiedene Abhängigkeiten (verschiedene „Dependables“) zu haben, die alle ein `User`-Modell zurückgeben.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:05 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/css/dark_syntax-1.14.0.css

    /* // See the License for the specific language governing permissions and */
    /* // limitations under the License. */
    
    /* PrismJS 1.14.0
    http://prismjs.com/download.html#themes=prism-tomorrow&languages=clike+javascript+bash+docker+go+java+protobuf+python+yaml */
    /**
     * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML
     * Based on https://github.com/chriskempson/tomorrow-theme
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/encoder.md

        ```Python hl_lines="5  22"
        {!> ../../../docs_src/encoder/tutorial001.py!}
        ```
    
    In diesem Beispiel wird das Pydantic-Modell in ein `dict`, und das `datetime`-Objekt in ein `str` konvertiert.
    
    Das Resultat dieses Aufrufs ist etwas, das mit Pythons Standard-<a href="https://docs.python.org/3/library/json.html#json.dumps" class="external-link" target="_blank">`json.dumps()`</a> kodiert werden kann.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:07:21 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/flow/FlowScope.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Augments the cached work graph with {@link FlowAction dataflow actions}, anonymous, parameterized and
     * isolated pieces of work that are triggered solely based on the availability of their input parameters.
     *
     * @since 8.1
     */
    @Incubating
    @ServiceScope(Scope.Build.class)
    public interface FlowScope {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. docs/de/docs/python-types.md

        ```
    
    Das bedeutet:
    
    * Die Variable `prices` ist ein `dict`:
        * Die Schlüssel dieses `dict` sind vom Typ `str` (z. B. die Namen der einzelnen Artikel).
        * Die Werte dieses `dict` sind vom Typ `float` (z. B. der Preis jedes Artikels).
    
    #### <abbr title="Union – Verbund, Einheit‚ Vereinigung: Eines von Mehreren">Union</abbr>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:29:25 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top