Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 399 for Child (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top