Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 142 for hierarchyOf (0.22 sec)

  1. 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)
  2. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/DefaultSerializerRegistry.java

        public DefaultSerializerRegistry() {
            this(true);
        }
    
        public DefaultSerializerRegistry(boolean supportClassHierarchy) {
            this.classMatcher = supportClassHierarchy ? SerializerClassMatcherStrategy.HIERARCHY : SerializerClassMatcherStrategy.STRICT;
        }
    
        @Override
        public <T> void register(Class<T> implementationType, final Serializer<T> serializer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolDeclarationOverridesProvider.kt

            withValidityAssertion { analysisSession.symbolDeclarationOverridesProvider.getDirectlyOverriddenSymbols(this) }
    
        /**
         * Checks if [this] class has [superClass] as its superclass somewhere in the inheritance hierarchy.
         *
         * N.B. The class is not considered to be a subclass of itself, so `myClass.isSubClassOf(myClass)` is always `false`.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. tests/integration/telemetry/tracing/zipkin/server_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.
    //
    // More information on distributed tracing can be found here: https://istio.io/docs/tasks/telemetry/distributed-tracing/zipkin/
    func TestServerTracing(t *testing.T) {
    	framework.NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleProjectBuilder.java

    import static org.gradle.plugins.ide.internal.tooling.ToolingModelBuilderSupport.buildFromTask;
    
    /**
     * Builds the {@link GradleProject} model that contains the project hierarchy and task information.
     */
    public class GradleProjectBuilder implements GradleProjectBuilderInternal {
    
        @Override
        public boolean canBuild(String modelName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/GroupingProgressLogEventGenerator.java

        private final OutputEventListener listener;
        private final LogHeaderFormatter headerFormatter;
        private final boolean verbose;
    
        // Maintain a hierarchy of all progress operations in progress — heads up: this is a *forest*, not just 1 tree
        private final Map<OperationIdentifier, OperationState> operationsInProgress = new LinkedHashMap<OperationIdentifier, OperationState>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

    import org.gradle.vcs.SourceControl;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.Arrays;
    
    /**
     * <p>Declares the configuration required to instantiate and configure the hierarchy of {@link
     * org.gradle.api.Project} instances which are to participate in a build.</p>
     *
     * <p>There is a one-to-one correspondence between a <code>Settings</code> instance and a <code>{@value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/FileTreeElement.java

         *
         * @return The name. Never returns null.
         */
        String getName();
    
        /**
         * Returns the path of this file, relative to the root of the containing file tree. Always uses '/' as the hierarchy
         * separator, regardless of platform file separator. Same as calling <code>getRelativePath().getPathString()</code>.
         *
         * @return The path. Never returns null.
         */
        String getPath();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:43:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/ExternalDependencyInstrumentingArtifactTransform.java

                case INSTRUMENTATION_MARKER:
                    // We don't need to do anything with the marker file
                    return;
                case TYPE_HIERARCHY_ANALYSIS_DATA:
                    // Type hierarchy analysis should never be an input to this transform
                default:
                    throw new IllegalStateException("Unexpected input type: " + inputType);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. maven-core/src/main/mdo/extension.mdo

        precisely control parts of the extension and dependencies to expose in the API class loader.
        Maven uses Plexus Classworlds to build the class loader hierarchy, therefore some concepts used in this extensions
        stem from Plexus Classworlds originally.
        <p><i>Notice:</i> this documentation is generated from a Modello model but the code executed is not generated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top