Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 155 for hierarchyOf (0.23 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/project/IsolatedProject.java

     *
     * @since 8.8
     */
    @Incubating
    public interface IsolatedProject {
    
        /**
         * <p>Returns the name of this project. The project's name is not necessarily unique within a project hierarchy. You
         * should use the {@link #getPath()} method for a unique identifier for the project.
         * If the root project is unnamed and is located on a file system root it will have a randomly-generated name
         * </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 18:34:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemLocationSnapshot.java

         * hierarchy containing a symlink, as we can't be sure if the snapshot would still be valid of
         * the relocated link.
         *
         * If performance around symlinks becomes more important, we can improve this in multiple ways:
         * - keep symlinks that don't point outside the relocated snapshot hierarchy,
         * - re-snapshot relocated locations pointed to by snapshots,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:09:45 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/IsolatedClassloaderWorker.java

            if (classLoaderStructure.getParent() == null) {
                // This is the highest parent in the hierarchy
                return createClassLoaderFromSpec(workerInfrastructureClassloader, classLoaderStructure.getSpec(), legacyTypesSupport);
            } else {
                // Climb up the hierarchy looking for the highest parent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. test/fixedbugs/bug085.go

    package P
    
    var x int
    
    func foo() {
    	print(P.x);  // ERROR "undefined"
    }
    
    /*
    uetli:~/Source/go1/test/bugs gri$ 6g bug085.go
    bug085.go:6: P: undefined
    Bus error
    */
    
    /* expected scope hierarchy (outermost to innermost)
    
    universe scope (contains predeclared identifiers int, float32, int32, len, etc.)
    "solar" scope (just holds the package name P so it can be found but doesn't conflict)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 13 23:11:31 UTC 2012
    - 633 bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/transformation/OriginReplacement.kt

    import org.gradle.internal.declarativedsl.analysis.ParameterValueBinding
    
    
    /**
     * Utilities for replacing receivers in an ObjectOrigin hierarchy.
     */
    object OriginReplacement {
        /**
         * Replaces receivers matching a predicate with a replacement receiver.  The replacement returns a deep copy of the receiver hierarchy of the
         * supplied {@link ObjectOrigin} with the given replacement applied.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. pkg/util/procfs/procfs_fake.go

    // E.g. if the devices cgroup for the container is stored in /sys/fs/cgroup/devices/docker/nginx,
    // return docker/nginx. Assumes that the process is part of exactly one cgroup hierarchy.
    func (fakePfs *FakeProcFS) GetFullContainerName(pid int) (string, error) {
    	return "", nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 09:22:35 UTC 2023
    - 986 bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterStatisticsTest.groovy

            then:
            1 * statisticsCollector.recordVisitHierarchy()
    
            then:
            1 * statisticsCollector.recordVisitDirectory()
            0 * _
        }
    
        def "can visit directory hierarchy"() {
            given:
            def root = tmpDir.createDir("root")
            def subDir1 = root.createDir("sub-dir-1")
            subDir1.createFile("file.txt")
            def subDir2 = root.createDir("sub-dir-2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestExceptionFormat.java

    /**
     * Determines how exceptions are formatted in test logging.
     */
    public enum TestExceptionFormat {
        /**
         * Short display of exceptions.  Shows the exception types and locations as well as the hierarchy of causes, but not exception messages or full stack traces.
         */
        SHORT,
        /**
         * Full display of exceptions.
         */
        FULL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1017 bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemSnapshotHierarchyVisitor.java

        default void enterDirectory(DirectorySnapshot directorySnapshot) {}
    
        /**
         * Called for each regular file/directory/missing/unavailable file.
         *
         * @return how to continue visiting the rest of the snapshot hierarchy.
         */
        SnapshotVisitResult visitEntry(FileSystemLocationSnapshot snapshot);
    
        /**
         * Called after all entries in the directory has been visited.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskFactoryIntegrationTest.groovy

    import spock.lang.Issue
    
    class TaskFactoryIntegrationTest extends AbstractIntegrationSpec {
        @Issue("GRADLE-3317")
        def "can generate a task when the inject annotation is not present on all of the methods in the hierarchy"() {
            given:
            buildFile """
                //getInputs() and getOutputs() exists on both org.gradle.api.Task and org.gradle.api.internal.AbstractTask
                //Only AbstractTask has the @Inject annotation
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 26 07:44:53 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top