Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 519 for idea (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/IdeaLanguageLevel.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.plugins.ide.idea.model;
    
    import com.google.common.base.Objects;
    import org.gradle.api.JavaVersion;
    
    /**
     * Java language level used by IDEA projects.
     */
    public class IdeaLanguageLevel {
    
        private String level;
    
        public IdeaLanguageLevel(Object version) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaCompilerOutput.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.model.idea;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    /**
     * IDEA compiler output settings.
     */
    public interface IdeaCompilerOutput {
    
        /**
         * whether current module should inherit project's output directory.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaPluginGoodBehaviourTest.groovy

     * limitations under the License.
     */
    package org.gradle.plugins.ide.idea
    
    import org.gradle.integtests.fixtures.WellBehavedPluginTest
    
    class IdeaPluginGoodBehaviourTest extends WellBehavedPluginTest {
        @Override
        String getMainTask() {
            return "idea"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 851 bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaDependency.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.model.idea;
    
    import org.gradle.tooling.model.Dependency;
    
    /**
     * IDEA dependency.
     *
     * @since 1.0-milestone-5
     */
    public interface IdeaDependency extends Dependency {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceResolveProvider.kt

    import org.jetbrains.kotlin.analysis.low.level.api.fir.api.getOrBuildFirSafe
    import org.jetbrains.kotlin.fir.expressions.FirResolvedQualifier
    import org.jetbrains.kotlin.idea.references.KtReference
    import org.jetbrains.kotlin.idea.references.KtSimpleNameReference
    
    internal class KaFirReferenceResolveProvider(
        override val analysisSession: KaFirSession,
    ) : KaReferenceResolveProvider(), KaFirSessionComponent {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 08:30:49 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/IdeaExtSmokeTest.groovy

     */
    
    package org.gradle.smoketests
    
    class IdeaExtSmokeTest extends AbstractSmokeTest {
        def "can use org.jetbrains.gradle.plugin.idea-ext"() {
            buildFile << """
                plugins {
                    id "org.jetbrains.gradle.plugin.idea-ext" version "${TestedVersions.ideaExt}"
                    id "java"
                }
            """
            expect:
            runner("help").build()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1006 bytes
    - Viewed (0)
Back to top