Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 93 for technique (0.17 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. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    
    This technique is not that different from what Android Studio produces when creating a new build.
    The main difference is that the subprojects' build scripts in the above sample declare their plugins using the `plugins {}` block. This means that you can use type-safe accessors for the model elements that they contribute.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/test_schema.fbs

    //   1. DENSE: each coordinate in this dimension is stored implicitly.
    //   2. SPARSE_CSR: only the coordinates with non-zero elements are stored. The
    //      compression technique is the same what CSR uses.
    // More types like a sparse dimension with a different compression technique
    // could be added to the list in the future.
    enum DimensionType : byte {
      DENSE = 0,
      SPARSE_CSR = 1,
    }
    
    table Int32Vector {
      values:[int];
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:46:06 UTC 2021
    - 26.1K bytes
    - Viewed (0)
Back to top