Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for technique (0.25 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/dependency_management_basics.adoc

    [[dependency_management_basics]]
    = Dependency Management Basics
    
    Gradle has built-in support for *dependency management*.
    
    image::gradle-basic-7.png[]
    
    Dependency management is an automated technique for declaring and resolving external resources required by a project.
    
    Gradle build scripts define the process to build projects that may require external dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:47:52 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_basics.adoc

    === Build Scripts
    
    *Build scripts* detail to Gradle what steps to take to build the project.
    
    Each project can include one or more build scripts.
    
    === Dependency Management
    
    *Dependency management* is an automated technique for declaring and resolving external resources required by a project.
    
    Each project typically includes a number of external dependencies that Gradle will resolve during the build.
    
    === Tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 19:34:59 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/sort/example_multi_test.go

    	{"glenda", "Go", 200},
    	{"rsc", "Go", 200},
    	{"r", "Go", 100},
    	{"ken", "Go", 200},
    	{"dmr", "C", 100},
    	{"r", "C", 150},
    	{"gri", "Smalltalk", 80},
    }
    
    // ExampleMultiKeys demonstrates a technique for sorting a struct type using different
    // sets of multiple fields in the comparison. We chain together "Less" functions, each of
    // which compares a single field.
    func Example_sortMultiKeys() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/core_dependency_management.adoc

    Software projects rarely work in isolation.
    Projects often rely on reusable functionality from libraries.
    Some projects organize unrelated functionality into separate parts of a modular system.
    
    Dependency management is an automated technique for declaring, resolving, and using functionality required by a project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/body-updates.md

        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="30-37"
        {!> ../../../docs_src/body_updates/tutorial002.py!}
        ```
    
    !!! tip
        You can actually use this same technique with an HTTP `PUT` operation.
    
        But the example here uses `PATCH` because it was created for these use cases.
    
    !!! note
        Notice that the input model is still validated.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/base/public/tensor.h

                                     size_t len, DeleterCallback deleter,
                                     Status* status) {
      // Credit to apassos@ for this technique:
      // Despite the fact that our API takes a std::function deleter, we are able
      // to maintain ABI stability because:
      // 1. Only a function pointer is sent across the C API (&DeleterFunction)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 28 20:10:33 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  7. src/hash/adler32/adler32_test.go

    	{0x2e5d1316, "How can you write a big system without C++?  -Paul Glick", "adl\x01\x8fU\n\x0f"},
    	{0xd0201df6, "'Invariant assertions' is the most elegant programming technique!  -Tom Szymanski", "adl\x01/\x98\x0e\xc4"},
    	{0x211297c8, strings.Repeat("\xff", 5548) + "8", "adl\x01\x9a\xa6\xcb\xc1"},
    	{0xbaa198c8, strings.Repeat("\xff", 5549) + "9", "adl\x01gu\xcc\xc0"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 21:04:12 UTC 2017
    - 5.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/g3doc/space_to_depth.md

    SpaceToDepth not only helps with 2D image models but also 3D image models such
    as I3D. The plan is to apply automatic space to depth for Conv2D as the first
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Oct 24 02:51:43 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  9. src/compress/lzw/reader.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package lzw implements the Lempel-Ziv-Welch compressed data format,
    // described in T. A. Welch, “A Technique for High-Performance Data
    // Compression”, Computer, 17(6) (June 1984), pp 8-19.
    //
    // In particular, it implements LZW as used by the GIF and PDF file
    // formats, which means variable-width codes up to 12 bits and the first
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:39 UTC 2023
    - 8K bytes
    - Viewed (0)
  10. docs/fr/docs/deployment/index.md

    d'une application **FastAPI** (bien que la plupart de ces concepts s'appliquent à tout autre type d'application web).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 24 14:47:15 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top