Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for declare (0.91 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/MavenScopeDependenciesValidator.java

                        PluginValidationManager.IssueLocality.EXTERNAL,
                        session,
                        pluginArtifact,
                        "Plugin should declare Maven artifacts in `provided` scope. If the plugin already declares them in `provided` scope, update the maven-plugin-plugin to latest version. Artifacts found with wrong scope: "
                                + mavenArtifacts);
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 09:51:56 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinForwardDeclarationProviderFactory.kt

    public abstract class KotlinForwardDeclarationProviderFactory : KotlinOptionalPlatformComponent {
        /**
         * Create a Kotlin/Native declaration provider for [ktModule].
         *
         * Generally, only Kotlin/Native KLIB libraries can declare forward declarations.
         * For other types of [KtModule]s the provider normally shouldn't be created.
         *
         * @return a declaration provider for [ktModule] or `null` if the module cannot contain forward declarations
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

     * @see org.apache.maven.api.model.Dependency#getScope()
     * @see org.apache.maven.api.services.DependencyResolver
     */
    @Experimental
    @Immutable
    public enum DependencyScope {
    
        /**
         * None. Allows you to declare dependencies (for example to alter reactor build order) but in reality dependencies
         * in this scope are not part of any path scope.
         */
        NONE("none", false),
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         * declared in the given [KaSymbolWithMembers].
         *
         * The declared member scope does not contain classifiers (including the companion object) except for inner classes. To retrieve the
         * classifiers declared in this [KaSymbolWithMembers], please use the *static* declared member scope provided by
         * [getStaticDeclaredMemberScope].
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISessionBuilder.kt

        unitTestMode: Boolean,
        classLoader: ClassLoader = MockProject::class.java.classLoader
    ) {
        init {
            // We depend on swing (indirectly through PSI or something), so we want to declare headless mode,
            // to avoid accidentally starting the UI thread. But, don't set it if it was set externally.
            if (System.getProperty("java.awt.headless") == null) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. maven-core/src/main/resources/META-INF/maven/extension.xml

          | provoke linkage errors for wagons contributed by build extensions. We also don't need to exclude the wagons
          | from plugins. Plugins that use wagons directly and declare the corresponding dependency will simply use a
          | wagon from their plugin realm.
         -->
      </exportedArtifacts>
    </extension>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. maven-core/src/site/apt/offline-mode.apt

      We'll examine the different parts of maven-core on a case-by-case
      basis, below:
    
    *** DefaultLifecycleExecutor
    
      When binding goals to the project's configured lifecycle, each mojo
      descriptor should declare whether it requires online/offline status.
      This value should be a java.lang.Boolean, so it can implement 3VL
      (three value logic: yes, no, don't-care). The requiresOnline
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. api/maven-api-plugin/src/main/mdo/plugin.mdo

              </association>
              <description>
                A set of dependencies which the plugin requires in order to function. This enables the plugin to function
                independently of its POM (or at least to declare the libraries it needs to run).
              </description>
            </field>
          </fields>
          <codeSegments>
            <codeSegment>
              <version>2.0.0+</version>
              <code><![CDATA[
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-61800`](https://youtrack.jetbrains.com/issue/KT-61800) Analysis API: Provide separate declared member scopes for non-static and static callables
    - [`KT-61255`](https://youtrack.jetbrains.com/issue/KT-61255) Analysis API: Get rid of `valueOf`, `values` and `entries` from a declared member scope
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaPartiallyAppliedSymbol.kt

        /**
         * The dispatch receiver for this symbol access. Dispatch receiver is available if the symbol is declared inside a class or object.
         */
        public val dispatchReceiver: KaReceiverValue? by validityAsserted(dispatchReceiver)
    
        /**
         * The extension receiver for this symbol access. Extension receiver is available if the symbol is declared with an extension receiver.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top