Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 399 for Child (0.17 sec)

  1. src/sort/gen_sort_variants.go

    	root := lo
    	for {
    		child := 2*root + 1
    		if child >= hi {
    			break
    		}
    		if child+1 < hi && {{Less "data" "first+child" "first+child+1"}} {
    			child++
    		}
    		if !{{Less "data" "first+root" "first+child"}} {
    			return
    		}
    		{{Swap "data" "first+root" "first+child"}}
    		root = child
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

                    }
                } else {
                    for (ModelNodeInternal child : node.getLinks()) {
                        if (!child.isAtLeast(targetState)) {
                            dependencies.add(graph.nodeAtState(new NodeAtState(child.getPath(), targetState)));
                        }
                    }
                }
                return true;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  4. platforms/jvm/testing-junit-platform/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestClassProcessor.java

            } else {
                listener.executionStarted(testIdentifier);
    
                for (TestIdentifier child : testPlan.getChildren(testIdentifier)) {
                    dryRun(child, testPlan, listener);
                }
                listener.executionFinished(testIdentifier, TestExecutionResult.successful());
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/dwarf.go

    // however, the subprogram DIE has to refer to a child
    // parameter/variable DIE of the abstract subprogram. This child DIE
    // doesn't have an LSym, and also of interest is the fact that when
    // DWARF generation is happening for inlined function F within caller
    // G, it's possible that DWARF generation hasn't happened yet for F,
    // so there is no way to know the offset of a child DIE within F's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

                .publish()
    
            ivyRepo.module('ivy.configuration', 'projectB', '1.5')
                .configuration('child')
                .configuration('private', visibility: 'private')
                .artifact()
                .artifact([name: 'projectB', conf: 'runtime'])
                .artifact([name: 'projectB-child', conf: 'child'])
                .artifact([name: 'projectB-private', conf: 'private'])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultResolvedDependencySpec.groovy

            DefaultResolvedDependency child = new DefaultResolvedDependency("someChildConfiguration", newId("someGroup", "someChild", "someVersion"), buildOperationProcessor)
            resolvedDependency.addChild(child)
    
            Set<ResolvedArtifact> childParent1SpecificArtifacts = newHashSet(createArtifact("childParent1Specific"))
            createAndAddParent("childParent1", child, childParent1SpecificArtifacts)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_resourceclassparameters_test.go

    				return parameters
    			}(),
    		},
    
    		"filters-invalid-driver": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

        class ExternalizableBeanContainingSerializable(value: Int = 0, var child: Pair<Int, String>? = null) : ExternalizableBean(value) {
            override fun writeExternal(out: ObjectOutput) {
                super.writeExternal(out)
                out.writeObject(child)
            }
    
            override fun readExternal(`in`: ObjectInput) {
                value = `in`.readInt()
                child = `in`.readObject().uncheckedCast()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyPermissionsIntegrationTest.groovy

        def "directory permissions are preserved in copy action"() {
            given:
            TestFile parent = getTestDirectory().createDir("testparent")
            TestFile child = parent.createDir("testchild")
            child.file("reference.txt") << "test file"
    
            child.mode = mode
            and:
            buildFile << """
                task copy(type: Copy) {
                    from "testparent"
                    into ("build/tmp")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top