Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 177 for module_ (0.11 sec)

  1. api/pom.xml

      <modules>
        <module>maven-api-meta</module>
        <module>maven-api-di</module>
        <module>maven-api-xml</module>
        <module>maven-api-model</module>
        <module>maven-api-plugin</module>
        <module>maven-api-settings</module>
        <module>maven-api-toolchain</module>
        <module>maven-api-metadata</module>
        <module>maven-api-core</module>
        <module>maven-api-spi</module>
      </modules>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/AdHocCompositeDependencySubstitutionCrossVersionSpec.groovy

                model(IdeaProject).withArguments('--include-build', 'buildB').get()
            }.modules[0]
    
            then:
            ideaModule.dependencies.size() == 1
            with(ideaModule.dependencies.first()) {
                it instanceof IdeaModuleDependency
                targetModuleName == "b1"
            }
        }
    
        def "Idea model honours custom module name"() {
            when:
            buildB.buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

        /**
         * Artifact type name for a JAR file that can be placed either on the annotation processor class-path
         * or module-path. The path (classes or modules) is chosen by the plugin, possibly using heuristic rules.
         */
        String PROCESSOR = "processor";
    
        /**
         * Artifact type name for a JAR file to unconditionally place on the annotation processor class-path.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalModuleStateModificationListener.kt

         *
         * The module structure, source code, and binary content of all [KtModule]s in the project should be considered modified when this event
         * is received. This includes source files being moved or removed, binary content being added, removed, or changed, and modules possibly
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1010 bytes
    - Viewed (0)
  5. src/runtime/type.go

    }
    
    // typelinksinit scans the types from extra modules and builds the
    // moduledata typemap used to de-duplicate type pointers.
    func typelinksinit() {
    	if firstmoduledata.next == nil {
    		return
    	}
    	typehash := make(map[uint32][]*_type, len(firstmoduledata.typelinks))
    
    	modules := activeModules()
    	prev := modules[0]
    	for _, md := range modules[1:] {
    		// Collect types from the previous module into typehash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSingleSymbolByPsiTest.kt

            val declaration = testServices.expressionMarkerProvider.getSelectedElementOrElementAtCaretOfTypeByDirective(
                ktFile, testServices.moduleStructure.modules.first(),
                KtDeclaration::class
            ) as KtDeclaration
            val symbol = declaration.getSymbol()
            return SymbolsData(listOf(symbol))
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            '''
            file("src/main/moreJava/another/module-info.java") << 'module another { exports io.another; }'
            file("src/main/moreJava/another/io/another/BaseExample.java") << '''
                package io.another;
    
                public class BaseExample {}
            '''
            file("src/main/ignoredJava/ignored/module-info.java") << 'module ignored { exports io.ignored; }'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

            val untouchedSessions = sessionsBeforeModification.intersect(sessionsAfterModification)
            checkUntouchedSessionValidity(untouchedSessions, testServices)
        }
    
        private fun getSessions(modules: List<KtModule>): List<SESSION> = modules.map(::getSession)
    
        private fun checkInvalidatedModules(
            invalidatedSessions: Set<SESSION>,
            testServices: TestServices,
        ) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ResolveState.java

     */
    public class ResolveState implements ComponentStateFactory<ComponentState> {
        private final Spec<? super DependencyMetadata> edgeFilter;
        private final Map<ModuleIdentifier, ModuleResolveState> modules;
        private final Map<NodeIdentifier, NodeState> nodes;
        private final Map<SelectorCacheKey, SelectorState> selectors;
        private final RootNode root;
        private final ComponentIdGenerator idGenerator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModuleStateModificationListener.kt

         *
         *  - The name of the module is being changed.
         *  - The module's content roots are being changed, such as adding another source folder to a source module.
         *  - If module A depends on module B and module B is being removed, in addition to the removal event for module B, module A also
         *    receives an update event.
         */
        UPDATE,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top