Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 385 for Child (0.04 sec)

  1. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/AbstractArchiveTask.java

         * @param configureClosure The closure to use to configure the child {@code CopySpec}.
         * @return this
         */
        @Override
        public AbstractArchiveTask into(Object destPath, Closure configureClosure) {
            super.into(destPath, configureClosure);
            return this;
        }
    
    
        /**
         * Creates and configures a child {@code CopySpec} with a destination directory *inside* the archive for the files.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 17 20:38:33 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultWorkerProcessBuilder.java

    import org.gradle.process.internal.health.memory.MemoryManager;
    import org.gradle.process.internal.worker.child.ApplicationClassesInSystemClassLoaderWorkerImplementationFactory;
    import org.gradle.process.internal.worker.child.WorkerJvmMemoryInfoProtocol;
    import org.gradle.process.internal.worker.child.WorkerLoggingProtocol;
    import org.gradle.util.internal.GUtil;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. pkg/util/async/bounded_frequency_runner_test.go

    	timer.advance(999 * time.Millisecond) // rel=1000ms
    	waitForRun("fifth run", t, timer, obj)
    
    	// Clean up.
    	stop <- struct{}{}
    	// a message is sent to time.updated in func Stop() at the end of the child goroutine
    	// to terminate the child, a receive on time.updated is needed here
    	<-timer.updated
    }
    
    func Test_BoundedFrequencyRunnerBurst(t *testing.T) {
    	obj := &receiver{}
    	timer := newFakeTimer()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

            then:
            def ex = thrown IOException
            ex.message == "Unable to delete file '$target'"
            ex.suppressed.collect { it.message } == ["ROOT CAUSE"]
        }
    
        def "reports failed to delete child files and reports a reasonable number of retries after failure to delete directory"() {
    
            given:
            def targetDir = tmpDir.createDir("target")
            def deletable = targetDir.createFile("delete.yes")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForBuildOperationsTest.groovy

            _ * childBuildDescriptor.getId() >> 2
            _ * childBuildDescriptor.getName() >> 'some child'
            _ * childBuildDescriptor.getParentId() >> 1
    
            def childEvent = Mock(InternalOperationStartedProgressEvent)
            _ * childEvent.getDisplayName() >> 'child event'
            _ * childEvent.getEventTime() >> 999
            _ * childEvent.getDescriptor() >> childBuildDescriptor
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            for (BuildOperationRecord child : op.children) {
                assert !allOps.contains(child): "Task operation $origin has child $child which is also a task operation"
                assertChildrenNotIn(origin, child, allOps)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. src/net/http/cgi/host.go

    	Logger     *log.Logger // optional log for errors or nil to use log.Print
    	Args       []string    // optional arguments to pass to child process
    	Stderr     io.Writer   // optional stderr for the child process; nil means os.Stderr
    
    	// PathLocationHandler specifies the root http Handler that
    	// should handle internal redirects when the CGI process
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. src/net/http/fcgi/fcgi_test.go

    },
    	nil)
    
    var cleanUpTests = []struct {
    	input []byte
    	err   error
    }{
    	// confirm that child.handleRecord closes req.pw after aborting req
    	{
    		bytes.Join([][]byte{
    			streamBeginTypeStdin,
    			makeRecord(typeAbortRequest, 1, nil),
    		},
    			nil),
    		ErrRequestAborted,
    	},
    	// confirm that child.serve closes all pipes after error reading record
    	{
    		bytes.Join([][]byte{
    			streamBeginTypeStdin,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 18:51:39 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/ProjectReportTask.java

                renderProjectDescription(model, textOutput);
            }, lastChild);
            renderer.startChildren();
            for (ProjectReportModel child : model.children) {
                renderProject(child, renderer, child == model.children.get(model.children.size() - 1), textOutput);
            }
            renderer.completeChildren();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/DisambiguateArtifactTransformIntegrationTest.groovy

            given:
            createDirs("child")
            settingsFile << """
    include('child')
    """
            buildFile << """
    def artifactType = Attribute.of('artifactType', String)
    
    apply plugin: 'java-library'
    
    allprojects {
        repositories {
            maven { url "${mavenRepo.uri}" }
        }
    }
    
    project(':child') {
        configurations {
            runtimeOnly {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 16.4K bytes
    - Viewed (0)
Back to top