Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 385 for Child (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/internal/dwarf/dwarf.go

    	// Abstract origin for concrete / inlined case
    	if concrete {
    		// Here we are making a reference to a child DIE of an abstract
    		// function subprogram DIE. The child DIE has no LSym, so instead
    		// after the call to 'putattr' below we make a call to register
    		// the child DIE reference.
    		putattr(ctxt, s.Info, abbrev, DW_FORM_ref_addr, DW_CLS_REFERENCE, 0, absfn) // DW_AT_abstract_origin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelMap.java

                        Factories.constant(instance)
                    )
                    .descriptor(descriptor)
                    .build()
                );
            }
        }
    
        private <S extends T> void doCreate(String name, ModelType<S> type, final DeferredModelAction action) {
            ModelPath childPath = modelNode.getPath().child(name);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 23K bytes
    - Viewed (0)
  10. src/os/pipe_test.go

    	// between the call to os.Pipe and the call to r.Close, that child process can
    	// retain an open copy of r's file descriptor until it execs. If one of our
    	// Write calls occurs during that interval it can spuriously succeed,
    	// buffering the write to the child's copy of the pipe (even though the child
    	// will not actually read the buffered bytes).
    
    	r, w, err := os.Pipe()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top