Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 399 for Child (0.11 sec)

  1. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildTaskGraphParallelTest.groovy

            def services = new TreeServices(workers)
            def childBuild = build(services, new DefaultBuildIdentifier(Path.path(":child")))
            def build = build(services, DefaultBuildIdentifier.ROOT)
            def childNode = new TestNode("child build node")
            def node = new TestNode("main build node")
    
            when:
            def result = scheduleAndRun(services) { builder ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. src/slices/zsortordered.go

    	root := lo
    	for {
    		child := 2*root + 1
    		if child >= hi {
    			break
    		}
    		if child+1 < hi && cmp.Less(data[first+child], data[first+child+1]) {
    			child++
    		}
    		if !cmp.Less(data[first+root], data[first+child]) {
    			return
    		}
    		data[first+root], data[first+child] = data[first+child], data[first+root]
    		root = child
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/sort/zsortfunc.go

    func siftDown_func(data lessSwap, lo, hi, first int) {
    	root := lo
    	for {
    		child := 2*root + 1
    		if child >= hi {
    			break
    		}
    		if child+1 < hi && data.Less(first+child, first+child+1) {
    			child++
    		}
    		if !data.Less(first+root, first+child) {
    			return
    		}
    		data.Swap(first+root, first+child)
    		root = child
    	}
    }
    
    func heapSort_func(data lessSwap, a, b int) {
    	first := a
    	lo := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 13 20:16:24 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/base.css

    .appendix h1 {
        margin-bottom: 1.0em;
    }
    
    .footnote sup {
        vertical-align: baseline;
        font-size: 100%;
    }
    
    .note p:first-child, .tip p:first-child {
        margin-top: 0;
    }
    
    .note > :last-child, .tip > :last-child, .examplelocation > :last-child {
        margin-bottom: 0;
    }
    
    .note, .tip, .exampleLocation {
        border-left: 1px solid #ddddd8;
        color: rgba(0,0,0,0.6);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. maven-model-builder/src/site/apt/index.apt

      property is not inherited from a POM to its child: child's POM will use child artifact id if property is not
      set.
    
      ** since Maven 3.6.1, inheritance can avoid appending any path to parent value by setting model attribute value to
      <<<false>>> for each url:
      <<<project/@child.project.url.inherit.append.path>>>,
      <<<project/distributionManagement/site/@child.site.url.inherit.append.path>>>,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporterSpec.groovy

            }
    
            void hasChild(String name, Closure<?> spec) {
                def child = actual.children.find { it.name == name }
                assert child != null: "Unable to find child named $name. Known children to ${actual.name} = ${actual.children.name}"
                checkedChildren << child
                verify(child, spec)
            }
    
            void noMoreChildren() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    		TotalCost:                 c.TotalCost,
    		MaxCardinality:            unbounded,
    		converter:                 c.converter,
    	}
    	if child != nil {
    		result.jsonSchema = child
    		if len(child.XValidations) > 0 {
    			result.withinValidationRuleScope = true
    		}
    	}
    	if c.jsonSchema == nil {
    		// nil schemas can be passed since we call ChildSchemaContext
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
Back to top