mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
add labels to content
This commit is contained in:
parent
932b3711a0
commit
778fadcb14
12
labels.list
12
labels.list
@ -1,5 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<labels xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="https://resources.jetbrains.com/writerside/labels.xsd">
|
||||
<!-- empty labels created as a workaround for preview rendering performance issues -->
|
||||
xsi:noNamespaceSchemaLocation="https://resources.jetbrains.com/writerside/1.0/labels.xsd">
|
||||
|
||||
<primary-label id="CommercialIDEs" short-name="Commercial IDEs" name="Commercial IDEs"/>
|
||||
|
||||
<primary-label id="IntelliJIDEA" short-name="IntelliJ IDEA" name="IntelliJ IDEA"
|
||||
href="https://plugins.jetbrains.com/docs/intellij/idea.html"/>
|
||||
<primary-label id="IntelliJIDEA_Ultimate" short-name="IntelliJ IDEA Ultimate" name="IntelliJ IDEA Ultimate"
|
||||
href="https://plugins.jetbrains.com/docs/intellij/idea-ultimate.html"/>
|
||||
|
||||
<primary-label id="2024.1" short-name="2024.1+" name="2024.1+"/>
|
||||
</labels>
|
||||
|
@ -1,6 +1,7 @@
|
||||
<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||
|
||||
# Coroutine Dispatchers
|
||||
<primary-label ref="2024.1"/>
|
||||
|
||||
<link-summary>Explanation of coroutine dispatcher in the IntelliJ Platform.</link-summary>
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||
|
||||
# Coroutine Dumps
|
||||
<primary-label ref="2024.1"/>
|
||||
|
||||
<link-summary>Explanation of coroutine dumps format.</link-summary>
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||
|
||||
# Execution Contexts
|
||||
<primary-label ref="2024.1"/>
|
||||
|
||||
<link-summary>Tracking execution progress, checking for cancellations, and switching between different execution contexts.</link-summary>
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||
|
||||
# Coroutine Read Actions
|
||||
<primary-label ref="2024.1"/>
|
||||
|
||||
<link-summary id="link-summary">Executing read actions in coroutines.</link-summary>
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||
|
||||
# Coroutine Scopes
|
||||
<primary-label ref="2024.1"/>
|
||||
|
||||
<link-summary>Explanation of coroutine scopes in the IntelliJ Platform.</link-summary>
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||
|
||||
# Coroutine Tips and Tricks
|
||||
<primary-label ref="2024.1"/>
|
||||
|
||||
<link-summary id="link-summary">Tips and tricks to use coroutines efficiently.</link-summary>
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||
|
||||
# Kotlin Coroutines
|
||||
<primary-label ref="2024.1"/>
|
||||
|
||||
<link-summary>Introduction to Kotlin Coroutines in the IntelliJ Platform.</link-summary>
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||
|
||||
# Launching Coroutines
|
||||
<primary-label ref="2024.1"/>
|
||||
|
||||
<link-summary>Techniques for launching coroutines from various contexts.</link-summary>
|
||||
|
||||
|
@ -168,6 +168,7 @@ If possible, use [](#how-to-wait-for-condition-with-timeout) approach. Otherwise
|
||||
Use [`WaitFor`](%gh-ic%/platform/util/src/com/intellij/util/WaitFor.java).
|
||||
|
||||
### How to test a JVM language?
|
||||
<primary-label ref="IntelliJIDEA"/>
|
||||
|
||||
Plugins supporting a JVM language may require JDK and language standard library to be set up in a test project, so that classes like `java.lang.String` can be correctly resolved during tests.
|
||||
Tests extending [`LightJavaCodeInsightFixtureTestCase`](%gh-ic%/java/testFramework/src/com/intellij/testFramework/fixtures/LightJavaCodeInsightFixtureTestCase.java) use one of the mock JDKs distributed with the [IntelliJ Community project](https://github.com/JetBrains/intellij-community) sources (notice <path>java/mockJDK-\$JAVA_VERSION\$</path> directories).
|
||||
|
@ -1,6 +1,7 @@
|
||||
<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||
|
||||
# Spring API
|
||||
<primary-label ref="IntelliJIDEA_Ultimate"/>
|
||||
|
||||
<link-summary rel="excerpt"/>
|
||||
<p id="excerpt">
|
||||
|
@ -1,6 +1,7 @@
|
||||
<!-- Copyright 2000-2023 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||
<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||
|
||||
# Tomcat Integration
|
||||
<primary-label ref="IntelliJIDEA_Ultimate"/>
|
||||
|
||||
<link-summary>Information about Tomcat plugin source code location.</link-summary>
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||
|
||||
# Language Server Protocol (LSP)
|
||||
<primary-label ref="CommercialIDEs"/>
|
||||
|
||||
<link-summary>Language Server Protocol (LSP) support in IntelliJ-based IDEs</link-summary>
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
<!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
|
||||
|
||||
# External Builder API and Plugins
|
||||
<primary-label ref="IntelliJIDEA"/>
|
||||
|
||||
<link-summary>Working with External Builder API.</link-summary>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user