Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,042 for child7 (0.12 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

                children.forEach { child ->
                    collectPrefixes(child.name, child, 0, prefixes)
                }
            } else if (unpackedNode instanceof AbstractIncompleteFileSystemNode) {
                def children = unpackedNode.children
                children.stream()
                    .forEach(child -> collectPrefixes(child.path, child.value, 0, prefixes))
            }
            return prefixes
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ProjectLoadingIntegrationTest.java

            createDirs("child1", "child2");
            testFile("settings.gradle").writelns(
                "include 'child1', 'child2'",
                "project(':child1').buildFileName = '../child.gradle'",
                "project(':child2').buildFileName = '../child.gradle'"
            );
            testFile("child.gradle").write("task('do-stuff')");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r72/CompositeBuildCrossVersionSpec.groovy

            model.projectDirectory == file("buildSrc")
        }
    
        def buildsWithBuildSrc() {
            buildSrc(projectDir)
            def child = "child"
            settingsFile << """
                includeBuild("$child")
            """
    
    
            def childBuild = file(child)
            buildSrc(childBuild)
            def nested = "nested"
            childBuild.file("settings.gradle") << """
                includeBuild("$nested")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            def child1 = consumable("child1", [conf1, conf2])
            consumable("child2", [conf1])
    
            addArtifact(conf1, artifact1, file1)
            addArtifact(conf2, artifact2, file2)
            addArtifact(child1, artifact3, file3)
    
            when:
            def conf1State = state.candidatesForGraphVariantSelection.getVariantByConfigurationName("child1", Stub(ResolutionFailureHandler))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r34/ToolingApiIdeaModelCrossVersionSpec.groovy

            given:
            settingsFile << "\ninclude 'root', 'child1', 'child2', 'child3'"
            buildFile << """
                allprojects {
                    apply plugin: 'idea'
                    apply plugin: 'java'
                }
    
                idea {
                    module {
                        jdkName = 'MyJDK1'
                    }
                }
    
                project(':child1') {
                    idea {
                        module {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-profile/src/test/groovy/org/gradle/profile/CompositeOperationTest.groovy

    class CompositeOperationTest extends Specification {
    
        def "execution time is sum of execution time of child operations"() {
            given:
            Operation child1 = operation(12)
            Operation child2 = operation(10)
            def operation = new CompositeOperation<Operation>([child1, child2])
    
            expect:
            operation.elapsedTime == 22
        }
    
        def operation(long elapsedTime) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. src/net/http/cgi/child.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements CGI from the perspective of a child
    // process.
    
    package cgi
    
    import (
    	"bufio"
    	"crypto/tls"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"net/http"
    	"net/url"
    	"os"
    	"strconv"
    	"strings"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerPluginClasspathInjectionIntegrationTest.groovy

            when:
            file("settings.gradle") << "include 'child1', 'child2'"
            file("child1/build.gradle") << plugin.build().useDeclaration
            file("child2/build.gradle") << plugin.useDeclaration
            buildFile << """
                task compare {
                    doLast {
                        project("child1").tasks.helloWorld1.getClass() == project("child2").tasks.helloWorld1.getClass()
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 03:45:31 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractIncompleteFileSystemNodeTest.groovy

        }
    
        static ChildMap<FileSystemNode> sortedChildren(String path1, FileSystemNode child1, String path2, FileSystemNode child2) {
            def compared = PathUtil.getPathComparator(CASE_SENSITIVE).compare(path1, path2)
            def entry1 = new ChildMap.Entry<FileSystemNode>(path1, child1)
            def entry2 = new ChildMap.Entry<FileSystemNode>(path2, child2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

            when:
            registry.realize("thing")
    
            then:
            ModelRuleExecutionException e = thrown()
            e.cause instanceof IllegalStateException
            e.cause.message == "Cannot create 'thing.child' using creation rule 'create thing.child as String' as model element 'thing' is no longer mutable."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
Back to top