Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 292 for hierarchyOf (0.19 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputs.java

         */
        TaskInputFilePropertyBuilder file(Object path);
    
        /**
         * Registers an input directory hierarchy. All files found under the given directory are treated as input files for
         * this task.
         *
         * <p>An input directory hierarchy ignores empty directories by default. See {@link TaskInputFilePropertyBuilder#ignoreEmptyDirectories()}.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 26 16:09:35 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/FileCopyDetails.java

         */
        @Override
        String getName();
    
        /**
         * Returns the path of this file, relative to the root of the copy destination.
         * <p>
         * Always uses '/' as the hierarchy separator, regardless of platform file separator.
         * Same as calling <code>getRelativePath().getPathString()</code>.
         *
         * @return The path, relative to the root of the copy destination. Never returns null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelElement.java

     * limitations under the License.
     */
    
    package org.gradle.model;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.Named;
    
    /**
     * Represents an element in a model. Elements are arranged in a hierarchy.
     */
    @Incubating
    public interface ModelElement extends Named {
        /**
         * Returns the name of this element. Each element has a name associated with it, that uniquely identifies the element amongst its siblings.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/BasicIdeaModelBuilder.java

    import org.gradle.tooling.provider.model.ToolingModelBuilder;
    
    /**
     * Builds the {@link org.gradle.tooling.model.idea.BasicIdeaProject} model
     * that contains the Idea module hierarchy without resolving dependencies.
     */
    public class BasicIdeaModelBuilder implements ToolingModelBuilder {
        private final IdeaModelBuilderInternal ideaModelBuilder;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 12:13:36 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/BuildEnvironmentBuilder.java

    import org.gradle.tooling.provider.model.ToolingModelBuilder;
    
    import java.io.File;
    import java.util.List;
    
    /**
     * Builds the GradleProject that contains the project hierarchy and task information
     */
    public class BuildEnvironmentBuilder implements ToolingModelBuilder {
        private final FileCollectionFactory fileCollectionFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/format/format.go

    	Allocated uint64
    	NextGC    uint64
    }
    
    const (
    	ProcsSection = 0 // where Goroutines or per-P timelines are presented.
    	StatsSection = 1 // where counters are presented.
    	TasksSection = 2 // where Task hierarchy & timeline is presented.
    )
    
    type GoroutineCountersArg struct {
    	Running   uint64
    	Runnable  uint64
    	GCWaiting uint64
    }
    
    type ThreadCountersArg struct {
    	Running   int64
    	InSyscall int64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-provider-plugins/src/test/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultProjectSchemaProviderTest.kt

    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.MatcherAssert.assertThat
    import org.junit.Test
    
    
    class DefaultProjectSchemaProviderTest {
    
        @Test
        fun `chooses first public interface in type hierarchy`() {
    
            val androidExtensionsSchema = DefaultExtensionsSchema.create(
                listOf(
                    extensionSchema(
                        "kotlinOptions",
                        typeOf<KotlinJvmOptionsImpl>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/initialization/ProjectsIdentifiedProgressDetails.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.initialization;
    
    import java.util.Set;
    
    /**
     * Fired once the hierarchy of projects is finalized for a build in the tree, and before any build operations
     * that reference those projects are executed.
     *
     * @since 8.0
     */
    public interface ProjectsIdentifiedProgressDetails {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemGroup.java

    import org.gradle.api.Incubating;
    
    import javax.annotation.Nullable;
    import javax.annotation.concurrent.Immutable;
    
    /**
     * Represents a group of problems.
     * <p>
     * Groups are organized in hierarchy where the parent group should represent the more broad problem group.
     * <p>
     * Two problem groups  are considered equal if their {@link #getName()} and their parents' are equal.
     *
     * @since 8.8
     * @see ProblemId
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinBuildScriptModelBuilder.kt

        }
    }
    
    
    internal
    val Project.scriptImplicitImports
        get() = serviceOf<ImplicitImports>().list
    
    
    private
    val Project.hierarchy: Sequence<Project>
        get() = sequence {
            var project = this@hierarchy
            yield(project)
            while (project != project.rootProject) {
                project = project.parent!!
                yield(project)
            }
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top