Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for hierarchyOf (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. .teamcity/README.md

    ## Project structure
    
    Mostly a standard Maven project structure. The entry point `settings.kts` defines the TeamCity project.
    
    There are 3 subprojects in the TeamCity project hierarchy: `Check` for Gradle builds, `Promotion` for releasing Gradle versions, `Util` for miscellaneous utilities.
    
    ## Develop and verify
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/StoreExecutionStateStep.java

                    .ifPresent(afterExecutionState -> history.store(
                        context.getIdentity().getUniqueId(),
                        // TODO: Encode the "no cache key available" case in the context type hierarchy
                        afterExecutionState)));
            return result;
        }
    
        private static <C extends PreviousExecutionContext> boolean shouldPreserveFailedState(C context, ExecutionOutputState afterExecutionOutputState) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. architecture/build-state-model.md

    # Build state model
    
    The Gradle daemon tracks state for various elements. These are arranged in a hierarchy:
    
    ```mermaid
      graph TD
    
      process["build process"]
      
      session["build session"]
      process --> session
      
      build_tree["build tree"]
      session --> build_tree
      
      build1["root build"]
      build_tree --> build1
      
      project1["root project"]
      build1 --> project1
      
      project2["project"]
      build1 --> project2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilderTest.groovy

                MutationValidator.MutationType.DEPENDENCY_CONSTRAINT_ATTRIBUTES,
                MutationValidator.MutationType.ARTIFACTS,
                MutationValidator.MutationType.USAGE,
                MutationValidator.MutationType.HIERARCHY
            ]
        }
    
        def "does not reevaluate component metadata when #mutationType change"() {
            componentIdentifierFactory.createComponentIdentifier(_) >> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top