Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 442 for idea (0.04 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/converters/BackwardsCompatibleIdeaModuleDependency.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.consumer.converters;
    
    import org.gradle.tooling.model.idea.IdeaModule;
    import org.gradle.tooling.model.idea.IdeaModuleDependency;
    
    /**
     * This is used for compatibility with clients <2.14
     */
    public interface BackwardsCompatibleIdeaModuleDependency extends IdeaModuleDependency {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 976 bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/11-language-change.yml

          placeholder: "Go, Python, JS, Rust"
        validations:
          required: false
    
      - type: checkboxes
        id: related-idea
        attributes:
          label: "Related Idea"
          options:
            - label: "Has this idea, or one like it, been proposed before?"
            - label: "Does this affect error handling?"
            - label: "Is this about generics?"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 20:49:24 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/ide/ideaAdditionalTestSources/groovy/build.gradle

    plugins {
        id 'idea'
        id 'java-library'
    }
    
    // tag::mark-additional-sourcesets-as-test[]
    sourceSets {
        intTest {
            java {
                srcDirs = ['src/integration']
            }
        }
    }
    
    idea {
        module {
            testSources.from(sourceSets.intTest.java.srcDirs)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 328 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r22/Idea13ModelCrossVersionSpec.groovy

                apply plugin: 'java'
                apply plugin: 'idea'
    
                idea {
                  module {
                    sourceDirs += file('foo')
                    generatedSourceDirs += file('foo')
                    generatedSourceDirs += file('foo2')
                  }
                }
            """
    
            when:
            IdeaProject project = withConnection { connection -> connection.getModel(IdeaProject.class) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IdeaModelBuilderInternal.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.internal.tooling;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.api.Project;
    import org.gradle.plugins.ide.internal.tooling.idea.DefaultIdeaProject;
    import org.gradle.tooling.provider.model.ToolingModelBuilder;
    
    @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 12:13:36 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/references/HLApiReferenceProviderService.kt

    import com.intellij.util.containers.ConcurrentFactoryMap
    import com.intellij.util.containers.MultiMap
    import org.jetbrains.kotlin.idea.references.KotlinPsiReferenceProvider
    import org.jetbrains.kotlin.idea.references.KotlinPsiReferenceRegistrar
    import org.jetbrains.kotlin.idea.references.KotlinReferenceProviderContributor
    import org.jetbrains.kotlin.psi.KotlinReferenceProvidersService
    import org.jetbrains.kotlin.utils.SmartList
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Apr 10 16:23:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Dependency.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.plugins.ide.idea.model;
    
    import groovy.util.Node;
    
    /**
     * Represents a dependency of an IDEA module.
     */
    public interface Dependency {
    
        /**
         * The scope of this library. If <code>null</code>, the scope attribute is not added.
         * @since 4.5
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/internal/IdeaProjectInternal.java

     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.idea.internal;
    
    import org.gradle.api.JavaVersion;
    import org.gradle.api.NonNullApi;
    import org.gradle.api.Project;
    import org.gradle.plugins.ide.api.XmlFileContentMerger;
    import org.gradle.plugins.ide.idea.model.IdeaLanguageLevel;
    import org.gradle.plugins.ide.idea.model.IdeaProject;
    
    import javax.annotation.Nullable;
    import javax.inject.Inject;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 13:32:59 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * A {@link org.gradle.api.Plugin} for generating IDEA files.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 724 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaDependencyScope.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.model.idea;
    
    /**
     * The scope of the IDEA dependency.
     */
    public interface IdeaDependencyScope {
    
        String getScope();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 767 bytes
    - Viewed (0)
Back to top