Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 93 for hierarchyOf (0.32 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

        def 'setting the filteringCharset to null throws an exception'() {
            when:
            spec.filteringCharset = null
    
            then:
            thrown(NullPointerException)
        }
    
        def 'can add spec hierarchy as child'() {
            CopySpec otherSpec = new DefaultCopySpec(fileCollectionFactory, objectFactory, instantiator, TestFiles.patternSetFactory)
            otherSpec.addChild()
            def added = []
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K 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. 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)
  6. 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)
  7. maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java

            return projectBuilder.build(pom, allowStub, configuration).getProject();
        }
    
        /**
         * Check that we can build ok from the middle pom of a (parent,child,grandchild) hierarchy
         *
         * @throws Exception in case of issue
         */
        @Test
        void testBuildFromMiddlePom() throws Exception {
            File f1 = getTestFile("src/test/resources/projects/grandchild-check/child/pom.xml");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:04:04 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    If you run the command from the _services_ project directory, you will only execute the task in _services:shared_ and _services:webservice_.
    
    The basic rule behind Gradle's behavior is to *execute all tasks down the hierarchy with _this_ name*.
    And *complain if there is _no_ such task found* in any of the subprojects traversed.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                for (String moduleName : outputModules.getModuleNames().values()) {
                    Path subdir = test;
                    if (isModuleHierarchy) {
                        // If module hierarchy is used, the directory names shall be the module names.
                        Path path = test.resolve(moduleName);
                        if (!Files.isDirectory(path)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top