Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 292 for hierarchyOf (0.15 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ConfigurationDeprecatedExtensions.kt

    
    /**
     * See [Configuration.getHierarchy].
     */
    @Deprecated(deprecationMessage, replaceWith = ReplaceWith("get().hierarchy"), level = DeprecationLevel.HIDDEN)
    val <T : Configuration> NamedDomainObjectProvider<T>.hierarchy: Set<Configuration>
        get() = get().hierarchy
    
    
    /**
     * See [Configuration.resolve].
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. android/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)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/model/IsolatedGradleProjectInternal.java

    import javax.annotation.Nullable;
    import java.io.File;
    import java.io.Serializable;
    import java.util.Collection;
    import java.util.List;
    
    /**
     * Represents a Gradle project, isolated from the project hierarchy.
     * <p>
     * <b>This model is internal, and is NOT part of the public Tooling API.</b>
     */
    @NonNullApi
    public class IsolatedGradleProjectInternal implements Serializable {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/VirtualFileSystem.java

        /**
         * Returns the metadata stored at the absolute path if it exists.
         */
        Optional<MetadataSnapshot> findMetadata(String absolutePath);
    
        /**
         * Returns all root snapshots in the hierarchy below {@code absolutePath}.
         */
        Stream<FileSystemLocationSnapshot> findRootSnapshotsUnder(String absolutePath);
    
        /**
         * Snapshots and stores the result in the VFS.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/initialization/AbstractClassLoaderScope.java

            this.id = id;
            this.origin = origin;
            this.classLoaderCache = classLoaderCache;
            this.listener = listener;
        }
    
        /**
         * Unique identifier of this scope in the hierarchy.
         */
        @Override
        public ClassLoaderScopeId getId() {
            return id;
        }
    
        @Nullable
        @Override
        public ClassLoaderScopeOrigin getOrigin() {
            return origin;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/tasks/PathSensitivity.java

         *
         * <p><b>This will prevent the task's outputs from being shared across different workspaces via the build cache.</b></p>
         */
        ABSOLUTE,
    
        /**
         * Use the location of the file related to a hierarchy.
         *
         * <p>
         *     For files in the root of the file collection, the file name is used as the normalized path.
         *     For directories in the root of the file collection, an empty string is used as normalized path.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 26 09:19:43 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top