Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 942 for idea (0.04 sec)

  1. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/idea/model/ProjectTest.groovy

     */
    package org.gradle.plugins.ide.idea.model
    import org.gradle.api.JavaVersion
    import org.gradle.internal.xml.XmlTransformer
    import spock.lang.Specification
    
    class ProjectTest extends Specification {
        final PathFactory pathFactory = new PathFactory().addPathVariable("PROJECT_DIR", new File("root"))
        final customModules = [path('file://$PROJECT_DIR$/gradle-idea-plugin.iml')]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/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.
     */
    
    /**
     * TODO: Document this package.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 694 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/isolated_projects.adoc

    When isolated projects is enabled, Gradle applies two levels of caching during IDE sync:
    
    Gradle starts by applying coarse-grained caching.
    To do this, Gradle caches the result of the entire sync operation and reuses it when nothing that affects the IDE model has changed.
    When the cache entry can be reused, Gradle short-circuits the entire sync operation and simply returns the cached result to the IDE.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:53:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/toolingApi/idea/readme.xml

    <sample>
        <para>An application that uses the tooling API to extract information needed by IntelliJ IDEA.</para>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 124 bytes
    - Viewed (0)
  5. .gitignore

    **/target/**
    .project
    .classpath
    .settings/
    .svn/
    # Intellij
    *.ipr
    *.iml
    .idea
    .DS_Store
    /bootstrap
    /dependencies.xml
    .java-version
    .checkstyle
    .factorypath
    .vscode/
    repo/
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 24 18:29:19 UTC 2024
    - 178 bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaSymbolBasedReference.kt

    import org.jetbrains.kotlin.analysis.api.KaAnalysisApiInternals
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.symbols.KaSymbol
    import org.jetbrains.kotlin.idea.references.KtReference
    
    @KaAnalysisApiInternals
    public interface KaSymbolBasedReference : KtReference {
        public fun KaSession.resolveToSymbols(): Collection<KaSymbol>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 642 bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * TODO: Document this package.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 700 bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/idea/DefaultIdeaDependency.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.plugins.ide.internal.tooling.idea;
    
    import java.io.Serializable;
    
    public class DefaultIdeaDependency implements Serializable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 765 bytes
    - Viewed (0)
  9. .github/ISSUE_TEMPLATE/feature_request.md

    ---
    name: Feature request
    about: Suggest an idea for this project
    title: ''
    labels: community, triage
    assignees: ''
    
    ---
    
    **Is your feature request related to a problem? Please describe.**
    A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
    
    **Describe the solution you'd like**
    A clear and concise description of what you want to happen.
    
    **Describe alternatives you've considered**
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 20:49:54 UTC 2019
    - 610 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/SamplesToolingApiIntegrationTest.groovy

            tweakProject()
    
            when:
            run()
    
            then:
            outputContains("Welcome to Gradle")
        }
    
        @UsesSample('toolingApi/idea/groovy')
        def "can use tooling API to build IDEA model"() {
            tweakProject()
    
            when:
            run()
    
            then:
            noExceptionThrown()
        }
    
        @UsesSample('toolingApi/model/groovy')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top