add labels to content

This commit is contained in:
Yann Cébron 2024-06-13 12:15:44 +02:00
parent 932b3711a0
commit 778fadcb14
14 changed files with 24 additions and 3 deletions

View File

@ -1,5 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<labels xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <labels xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://resources.jetbrains.com/writerside/labels.xsd"> xsi:noNamespaceSchemaLocation="https://resources.jetbrains.com/writerside/1.0/labels.xsd">
<!-- empty labels created as a workaround for preview rendering performance issues -->
<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> </labels>

View File

@ -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. --> <!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
# Coroutine Dispatchers # Coroutine Dispatchers
<primary-label ref="2024.1"/>
<link-summary>Explanation of coroutine dispatcher in the IntelliJ Platform.</link-summary> <link-summary>Explanation of coroutine dispatcher in the IntelliJ Platform.</link-summary>

View File

@ -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. --> <!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
# Coroutine Dumps # Coroutine Dumps
<primary-label ref="2024.1"/>
<link-summary>Explanation of coroutine dumps format.</link-summary> <link-summary>Explanation of coroutine dumps format.</link-summary>

View File

@ -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. --> <!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
# Execution Contexts # Execution Contexts
<primary-label ref="2024.1"/>
<link-summary>Tracking execution progress, checking for cancellations, and switching between different execution contexts.</link-summary> <link-summary>Tracking execution progress, checking for cancellations, and switching between different execution contexts.</link-summary>

View File

@ -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. --> <!-- 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 # Coroutine Read Actions
<primary-label ref="2024.1"/>
<link-summary id="link-summary">Executing read actions in coroutines.</link-summary> <link-summary id="link-summary">Executing read actions in coroutines.</link-summary>

View File

@ -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. --> <!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
# Coroutine Scopes # Coroutine Scopes
<primary-label ref="2024.1"/>
<link-summary>Explanation of coroutine scopes in the IntelliJ Platform.</link-summary> <link-summary>Explanation of coroutine scopes in the IntelliJ Platform.</link-summary>

View File

@ -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. --> <!-- 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 # Coroutine Tips and Tricks
<primary-label ref="2024.1"/>
<link-summary id="link-summary">Tips and tricks to use coroutines efficiently.</link-summary> <link-summary id="link-summary">Tips and tricks to use coroutines efficiently.</link-summary>

View File

@ -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. --> <!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
# Kotlin Coroutines # Kotlin Coroutines
<primary-label ref="2024.1"/>
<link-summary>Introduction to Kotlin Coroutines in the IntelliJ Platform.</link-summary> <link-summary>Introduction to Kotlin Coroutines in the IntelliJ Platform.</link-summary>

View File

@ -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. --> <!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
# Launching Coroutines # Launching Coroutines
<primary-label ref="2024.1"/>
<link-summary>Techniques for launching coroutines from various contexts.</link-summary> <link-summary>Techniques for launching coroutines from various contexts.</link-summary>

View File

@ -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). Use [`WaitFor`](%gh-ic%/platform/util/src/com/intellij/util/WaitFor.java).
### How to test a JVM language? ### 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. 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). 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).

View File

@ -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. --> <!-- Copyright 2000-2024 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license. -->
# Spring API # Spring API
<primary-label ref="IntelliJIDEA_Ultimate"/>
<link-summary rel="excerpt"/> <link-summary rel="excerpt"/>
<p id="excerpt"> <p id="excerpt">

View File

@ -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 # Tomcat Integration
<primary-label ref="IntelliJIDEA_Ultimate"/>
<link-summary>Information about Tomcat plugin source code location.</link-summary> <link-summary>Information about Tomcat plugin source code location.</link-summary>

View File

@ -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. --> <!-- 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) # Language Server Protocol (LSP)
<primary-label ref="CommercialIDEs"/>
<link-summary>Language Server Protocol (LSP) support in IntelliJ-based IDEs</link-summary> <link-summary>Language Server Protocol (LSP) support in IntelliJ-based IDEs</link-summary>

View File

@ -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. --> <!-- 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 # External Builder API and Plugins
<primary-label ref="IntelliJIDEA"/>
<link-summary>Working with External Builder API.</link-summary> <link-summary>Working with External Builder API.</link-summary>