Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 142 for hierarchyOf (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    link:{javadocPath}/org/gradle/api/file/ConfigurableFileTree.html[ConfigurableFileTree]:: Hierarchy of files
    Factories;;
    * link:{javadocPath}/org/gradle/api/model/ObjectFactory.html#fileTree--[ObjectFactory.fileTree()]
    
    link:{javadocPath}/org/gradle/api/file/SourceDirectorySet.html[SourceDirectorySet]:: Hierarchy of source directories
    Factories;;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

                    equalTo(42)
                )
                assertThat(it.someInt, equalTo(13))
            }
        }
    
        @Test
        fun `can handle multiple writeObject implementations in the hierarchy`() {
            verifyRoundtripOf({ MultiWriteObjectBean() }) { bean ->
                assertThat(
                    bean.stringValue,
                    equalTo("42")
                )
                assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

         */
        void initGitDir() {
            Git.init().setDirectory(testDirectory).call().withCloseable { Git git ->
                // Clear config hierarchy to avoid global configuration loaded from user home
                for (Config config = git.repository.config; config != null; config = config.getBaseConfig()) {
                    //noinspection GroovyAccessibility
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/scope.h

    ///     auto c1 = Const(root, { {1, 1} });
    ///     auto m = MatMul(root, c1, { {41}, {1} });
    ///     GraphDef gdef;
    ///     Status s = root.ToGraphDef(&gdef);
    ///     if (!s.ok()) { ... }
    ///
    /// Scope hierarchy:
    ///
    /// The Scope class provides various With<> functions that create a new scope.
    /// The new scope typically has one property changed while other properties are
    /// inherited from the parent scope.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    The Tooling API is Gradle wrapper aware and, by default, uses the same Gradle version as that used by the wrapper-powered build.
    
    Some features that the Tooling API provides:
    
    * Query the details of a build, including the project hierarchy and the project dependencies, external dependencies (including source and Javadoc jars), source directories and tasks of each project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. docs/en/docs/features.md

    * Even dependencies can have dependencies, creating a hierarchy or **"graph" of dependencies**.
    * All **automatically handled** by the framework.
    * All the dependencies can require data from requests and **augment the path operation** constraints and automatic documentation.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. cmd/format-erasure.go

    	} `json:"xl"`
    }
    
    // formatErasureV3 struct is same as formatErasureV2 struct except that formatErasureV3.Erasure.Version is "3" indicating
    // the simplified multipart backend which is a flat hierarchy now.
    // In .minio.sys/multipart we have:
    // sha256(bucket/object)/uploadID/[xl.meta, part.1, part.2 ....]
    type formatErasureV3 struct {
    	formatMetaV1
    	Erasure struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    |`ConfigurableFileCollection`
    |A mutable `FileCollection` which represents a collection of file system locations
    
    |`ConfigurableFileTree`
    |A mutable `FileTree` which represents a hierarchy of files
    |===
    
    [[read_only_managed_properties]]
    === Read-only Managed Properties (Providers)
    
    You can declare a read-only managed property, also known as a provider, using a getter method of type `Provider<T>`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-65576`](https://youtrack.jetbrains.com/issue/KT-65576) K2: Incorrect resolution of variable+invoke when the property type is not computed
    - [`KT-58575`](https://youtrack.jetbrains.com/issue/KT-58575) Private Kotlin property prevents use of Java get- and set-methods from Java-Kotlin-Java hierarchy
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

         *
         * We must rely on the dynamic cast and possible runtime failure here due to a Kotlin extension member limitation.
         * Kotlin currently can't disambiguate between invoke operators with more specific receivers in a type hierarchy.
         *
         * See https://youtrack.jetbrains.com/issue/KT-15711
         */
        private
        fun polymorphicDomainObjectContainer() =
            delegate as? PolymorphicDomainObjectContainer<T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top