Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 133 for Child (0.04 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/IvyDependencyDescriptorTest.groovy

        }
    
        def "applies rules when traversing a child of specified configuration"() {
            def exclude = new DefaultExclude(DefaultModuleIdentifier.newId("group", "*"), ["from"] as String[], PatternMatchers.EXACT)
            def dep = createWithExcludes(requested, [exclude])
            def configuration = configuration("child", "from")
            def moduleExclusions = new ModuleExclusions()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/EclipseModelBuilder.java

            }
        }
    
        private DefaultEclipseProject buildHierarchy(Project project) {
            List<DefaultEclipseProject> children = new ArrayList<>();
            for (Project child : getChildProjectsForInternalUse(project)) {
                children.add(buildHierarchy(child));
            }
    
            EclipseModel eclipseModel = project.getExtensions().getByType(EclipseModel.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/helpers_test.go

    	// if the current field path is in the list of paths we should not recurse into,
    	// return here rather than descending and accumulating child field paths
    	if pathStr := path.String(); len(pathStr) > 0 && skipRecurseList.Has(pathStr) {
    		return sets.New[string](pathStr)
    	}
    
    	paths := sets.New[string]()
    	switch tp.Kind() {
    	case reflect.Pointer:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/syscall/exec_linux_test.go

    	childTimeNS := string(out)
    	if childTimeNS == parentTimeNS {
    		t.Fatalf("expected child time namespace to be different from parent time namespace: %s", parentTimeNS)
    	}
    }
    
    func testPidFD(t *testing.T, userns bool) error {
    	testenv.MustHaveExec(t)
    
    	if os.Getenv("GO_WANT_HELPER_PROCESS") == "1" {
    		// Child: wait for a signal.
    		time.Sleep(time.Hour)
    	}
    
    	exe, err := os.Executable()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

            def container = Mock(ProjectState)
            _ * container.projectPath >> (parent == null ? Path.ROOT : parent.projectPath.child(name))
            _ * container.identityPath >> (parent == null ? build.identityPath : build.identityPath.append(parent.projectPath).child(name))
    
            def descriptor = Mock(ProjectDescriptor) {
                getName() >> name
                getProjectDir() >> new File("project")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/DefaultFileCollectionFactory.java

                    ((FileCollectionInternal) item).describeContents(formatter);
                } else if (item instanceof ArrayList) {
                    for (Object child : (List) item) {
                        appendItem(formatter, child);
                    }
                } else {
                    formatter.node(item + " (class: " + item.getClass().getName() + ")");
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 18:57:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. src/os/exec/exec.go

    	// of unexpected delay in Wait: a child process that fails to exit after the
    	// associated Context is canceled, and a child process that exits but leaves
    	// its I/O pipes unclosed.
    	//
    	// The WaitDelay timer starts when either the associated Context is done or a
    	// call to Wait observes that the child process has exited, whichever occurs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCoupledProjectsIntegrationTest.groovy

    package org.gradle.internal.cc.impl.isolated
    
    class IsolatedProjectsToolingApiCoupledProjectsIntegrationTest extends AbstractIsolatedProjectsToolingApiIntegrationTest {
    
        def "projects are treated as coupled when parent mutates child project"() {
            given:
            withSomeToolingModelBuilderPluginInBuildSrc()
            settingsFile << """
                include("a")
                include("b")
                include("c")
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/text/TreeFormatter.java

        }
    
        /**
         * Starts a new node with the given text.
         */
        @Override
        public TreeFormatter node(String text) {
            if (current.state == State.TraverseChildren) {
                // First child node
                current = new Node(current, text);
            } else {
                // A sibling node
                current.state = State.Done;
                current = new Node(current.parent, text);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyDescriptor.java

                if (configuration.getMetadata().getHierarchy().contains(toAdd.getName())) {
                    // this configuration is a child of toAdd, so no need to add it
                    return;
                }
                if (toAdd.getMetadata().getHierarchy().contains(configuration.getName())) {
                    // toAdd is a child, so implies this configuration
                    iter.remove();
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top