Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 154 for Hierarchy (0.57 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/annotations/AllFeaturesShouldBeAnnotated.groovy

        @Override
        void visitSpecAnnotation(AllFeaturesShouldBeAnnotated runFor, SpecInfo spec) {
            while (spec.subSpec != null) {
                // Find the bottom spec in the hierarchy
                spec = spec.subSpec
            }
    
            if (!spec.getReflection().isAnnotationPresent(RunFor) &&
                !spec.getReflection().isAnnotationPresent(Ignore) &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/api/internal/AbstractBuildableComponentSpec.java

                buildTask.dependsOn(buildTaskDependencies);
            }
        }
    
        @Override
        public TaskDependency getBuildDependencies() {
            // TODO maybe inject the task dependency factory into this type hierarchy, too
            final TaskDependencyFactory taskDependencyFactory = DefaultTaskDependencyFactory.withNoAssociatedProject();
            return taskDependencyFactory.visitingDependencies(context -> {
                if (buildTask == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ProjectDependency.java

    import org.gradle.internal.HasInternalProtocol;
    
    import java.io.File;
    import java.util.Set;
    
    /**
     * <p>A {@code ProjectDependency} is a {@link Dependency} on another project in the current project hierarchy.</p>
     */
    @HasInternalProtocol
    @SuppressWarnings("deprecation") // Because of SelfResolvingDependency
    public interface ProjectDependency extends ModuleDependency, SelfResolvingDependency {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. guava-testlib/test/com/google/common/testing/TestLogHandlerTest.java

      @Override
      protected void setUp() throws Exception {
        super.setUp();
    
        handler = new TestLogHandler();
    
        // You could also apply it higher up the Logger hierarchy than this
        ExampleClassUnderTest.logger.addHandler(handler);
    
        ExampleClassUnderTest.logger.setUseParentHandlers(false); // optional
    
        stack.addTearDown(
            new TearDown() {
              @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.8K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/file/FileTree.java

    import org.gradle.api.tasks.util.PatternFilterable;
    import org.gradle.internal.HasInternalProtocol;
    
    import java.io.File;
    import java.util.Set;
    
    /**
     * <p>A {@code FileTree} represents a hierarchy of files. It extends {@link FileCollection} to add hierarchy query and
     * manipulation methods. You typically use a {@code FileTree} to represent files to copy or the contents of an
     * archive.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/meta/interfaces.go

    const (
    	RESTScopeNameNamespace RESTScopeName = "namespace"
    	RESTScopeNameRoot      RESTScopeName = "root"
    )
    
    // RESTScope contains the information needed to deal with REST resources that are in a resource hierarchy
    type RESTScope interface {
    	// Name of the scope
    	Name() RESTScopeName
    }
    
    // RESTMapping contains the information needed to deal with objects of a specific
    // resource and kind in a RESTful manner.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  7. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/BuildLifecycleAwareVirtualFileSystem.java

         * started.
         */
        boolean afterBuildStarted(WatchMode watchingEnabled, VfsLogging vfsLogging, WatchLogging watchLogging, BuildOperationRunner buildOperationRunner);
    
        /**
         * Register a watchable hierarchy.
         *
         * Only locations within watchable hierarchies will be watched for changes.
         * This method is first called for the root directory of the root project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. tests/integration/telemetry/tracing/zipkin/client_tracing_test.go

    // The test verifies that all expected spans (a client span and a server span for each service call in the sample bookinfo app)
    // are generated and that they are all a part of the same distributed trace with correct hierarchy and name.
    func TestClientTracing(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    			appNsInst := tracing.GetAppNamespace()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/ComponentSpecIdentifier.java

        ComponentSpecIdentifier child(String name);
    
        /**
         * Returns a name that can be used to identify this component uniquely within its project. The name belongs to a flat namespace and does not include any
         * hierarchy delimiters. As such, it can be safely used for task or file names.
         *
         * Implementation should attempt to produce a somewhat human consumable name (eg not a uuid).
         */
        String getProjectScopedName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderCachingIntegrationTest.groovy

                buildscript { dependencies { classpath(files('${someLib.toURI()}')) } }
            """
    
            // Load the StaticData class in the different sub-sub-projects
            // for a more interesting ClassLoader hierarchy.
            for (projectDir in ['foo/foo', 'bar/bar']) {
                file("$projectDir/build.gradle") << """
                    buildscript { dependencies { classpath(files('${staticDataLib.toURI()}')) } }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top