Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 274 for child6 (0.14 sec)

  1. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/DefaultWorkerDirectoryProvider.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker.child;
    
    import org.gradle.initialization.GradleUserHomeDirProvider;
    import org.gradle.util.internal.GFileUtils;
    
    import java.io.File;
    
    public class DefaultWorkerDirectoryProvider implements WorkerDirectoryProvider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

        }
    
        /*
         * We isolate services in child registries, so we don't leak memory. This test makes
         * sure that we don't overdo the isolation and still track dependencies between services
         * inside a single registry, even when a child requested that service.
         */
    
        def "closes services in dependency order even when child requested them first"() {
            def service1 = Mock(TestCloseService)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  3. src/runtime/tracestack.go

    		w.varint(frame.funcID)
    		w.varint(frame.fileID)
    		w.varint(frame.line)
    	}
    
    	// Recursively walk all child nodes.
    	for i := range node.children {
    		child := node.children[i].Load()
    		if child == nil {
    			continue
    		}
    		w = dumpStacksRec((*traceMapNode)(child), w, stackBuf)
    	}
    	return w
    }
    
    // makeTraceFrames returns the frames corresponding to pcs. It may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/scope.go

    		i++
    	}
    	sort.Strings(names)
    	return names
    }
    
    // NumChildren returns the number of scopes nested in s.
    func (s *Scope) NumChildren() int { return len(s.children) }
    
    // Child returns the i'th child scope for 0 <= i < NumChildren().
    func (s *Scope) Child(i int) *Scope { return s.children[i] }
    
    // Lookup returns the object in scope s with the given name if such an
    // object exists; otherwise the result is nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/go/types/scope.go

    		i++
    	}
    	sort.Strings(names)
    	return names
    }
    
    // NumChildren returns the number of scopes nested in s.
    func (s *Scope) NumChildren() int { return len(s.children) }
    
    // Child returns the i'th child scope for 0 <= i < NumChildren().
    func (s *Scope) Child(i int) *Scope { return s.children[i] }
    
    // Lookup returns the object in scope s with the given name if such an
    // object exists; otherwise the result is nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/WorkerLogEventListener.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.process.internal.worker.child;
    
    import org.gradle.internal.logging.events.LogEvent;
    import org.gradle.internal.logging.events.OutputEvent;
    import org.gradle.internal.logging.events.OutputEventListener;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

                buildDirs[project.projectPath]?.let {
                    project.layout.buildDirectory.set(it)
                }
                for (child in descriptor.children()) {
                    createProject(child)
                }
                return project
            }
    
            override fun getProject(path: String): ProjectInternal =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/UndefinedBuildExecutionIntegrationTest.groovy

        }
    
        def "does not treat build as undefined when root build file is not present but #fileName is"() {
            when:
            settingsFile << """
                include("child")
            """
            file("child/build.gradle") << """
                task build
            """
            succeeds("tasks")
    
            then:
            noExceptionThrown()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. src/os/exec/exec.go

    	// of unexpected delay in Wait: a child process that fails to exit after the
    	// associated Context is canceled, and a child process that exits but leaves
    	// its I/O pipes unclosed.
    	//
    	// The WaitDelay timer starts when either the associated Context is done or a
    	// call to Wait observes that the child process has exited, whichever occurs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

        }
    
        /**
         * Makes the parent directory of the file, and any non existent parents.
         *
         * @param child The file to create the parent dir for
         * @return The parent dir file
         * @see #mkdirs(java.io.File)
         */
        public static File parentMkdirs(File child) {
            File parent = child.getParentFile();
            mkdirs(parent);
            return parent;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top