Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 204 for Child (0.24 sec)

  1. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

      }
    
      public void testLocationEquals() {
        ClassLoader child = getClass().getClassLoader();
        ClassLoader parent = child.getParent();
        new EqualsTester()
            .addEqualityGroup(
                new ClassPath.LocationInfo(new File("foo.jar"), child),
                new ClassPath.LocationInfo(new File("foo.jar"), child))
            .addEqualityGroup(new ClassPath.LocationInfo(new File("foo.jar"), parent))
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolver.java

                    }
                }
    
                // Then visit all child components' variants
                if (component instanceof ComponentWithVariants) {
                    ComponentWithVariants parent = (ComponentWithVariants) component;
                    for (SoftwareComponent child : parent.getVariants()) {
                        walkComponent(child, componentCoordinates, componentsSeen, coordinatesSeen, visitor);
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeImpl.java

         *   <li> Iterate through the recessive children, and:
         *     <ol type="i">
         *     <li> if mergeChildren == true and there is a corresponding dominant child (matched by element name),
         *          merge the two.</li>
         *     <li> otherwise, add the recessive child as a new child on the dominant root node.</li>
         *     </ol></li>
         *   </ol></li>
         * </ol>
         */
        @SuppressWarnings("checkstyle:MethodLength")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "extra properties defined in parent project are accessible to child"() {
            createDirs("a", "a/child")
            settingsFile << "include 'a', 'a:child'"
            file('a/build.gradle') << """
    ext.foo = "Moo!!!"
    """
            file('a/child/build.gradle') << """
    task printExt {
        doLast {
            println "The Foo says " + foo
        }
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. src/internal/trace/summary_test.go

    		for _, child := range summary.Children {
    			gotChildren[child.ID] = struct{}{}
    		}
    		for _, wantChild := range want.children {
    			if _, ok := gotChildren[wantChild]; ok {
    				delete(gotChildren, wantChild)
    			} else {
    				t.Errorf("expected child task %d for task %d not found", wantChild, id)
    			}
    		}
    		if len(gotChildren) != 0 {
    			for child := range gotChildren {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

                    dir = "main"
                    tasks = ['log']
                }
            """
            file('main/settings.gradle') << """
                ${barrier.callFromBuild("child-build-started")}
                ${barrier.callFromBuild("child-build-finished")}
            """
            file('main/build.gradle') << """
                assert gradle.parent.rootProject.name == 'root'
                task log { }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            org.apache.maven.project.ProjectBuilder projectBuilder =
                    getContainer().lookup(org.apache.maven.project.ProjectBuilder.class);
            File child = new File(tempDir.toFile(), "child/pom.xml");
            // build project once
            projectBuilder.build(child, configuration);
            // modify parent
            File parent = new File(tempDir.toFile(), "pom.xml");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_resourceclaimparameters_test.go

    					badName: "hello world",
    				}
    				return parameters
    			}(),
    		},
    
    		"empty-model": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("driverRequests").Index(0).Child("requests").Index(0), "exactly one structured model field must be set")},
    			parameters: func() *resource.ResourceClaimParameters {
    				parameters := testResourceClaimParameters(goodName, goodName, goodRequests)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. src/syscall/exec_plan9.go

    		}
    	}
    
    	// Allocate child status pipe close on exec.
    	e := cexecPipe(p[:])
    
    	if e != nil {
    		return 0, e
    	}
    
    	// Kick off child.
    	pid, err = forkAndExecInChild(argv0p, argvp, envvParsed, dir, attr, p[1], sys.Rfork)
    
    	if err != nil {
    		if p[0] >= 0 {
    			Close(p[0])
    			Close(p[1])
    		}
    		return 0, err
    	}
    
    	// Read child error status from pipe.
    	Close(p[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            given:
            def conf = dependencyScope("conf")
            def child = resolvable("child", [conf])
    
            conf.exclude([group: "group1", module: "module1"])
            child.exclude([group: "group2", module: "module2"])
    
            expect:
            def config = state.getConfiguration("child").metadata
            def excludes = config.excludes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top