Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for kotlin2js (0.17 sec)

  1. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-js-sample/settings.gradle.kts

     * limitations under the License.
     */
    
    rootProject.name = "kotlin-js-sample"
    
    pluginManagement {
        resolutionStrategy {
            eachPlugin {
                if (requested.id.id == "kotlin2js") {
                    useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 894 bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-js-sample/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import org.jetbrains.kotlin.gradle.tasks.Kotlin2JsCompile
    
    plugins {
        id("kotlin2js") version "$kotlinVersion"
    }
    
    dependencies {
        implementation(kotlin("stdlib-js"))
    }
    
    repositories {
        mavenCentral()
    }
    
    tasks {
        compileKotlin2Js {
            kotlinOptions {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. okhttp-coroutines/README.md

      withContext(Dispatchers.IO) {
        println(response.body?.string())
      }
    }
    ```
    
    This is implemented using `suspendCancellableCoroutine`
    but uses the standard Dispatcher in OkHttp. This means
    that by default Kotlin's Dispatchers are not used.
    
    Cancellation if implemented sensibly in both directions.
    Cancelling a coroutine scope, will cancel the call.
    Cancelling a call, will throw a CancellationException
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Nov 09 15:47:27 UTC 2023
    - 609 bytes
    - Viewed (0)
  4. ReadMe.md

     * [TeamCity CI build](https://teamcity.jetbrains.com/project.html?tab=projectOverview&projectId=Kotlin)
    
    ## Kotlin Multiplatform capabilities
    
    Support for multiplatform programming is one of Kotlin’s key benefits. It reduces time spent writing and maintaining the same code for [different platforms](https://kotlinlang.org/docs/reference/mpp-supported-platforms.html) while retaining the flexibility and benefits of native programming.
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinPluginSmokeTest.groovy

            version << TestedVersions.kotlin.versions
        }
    
        def 'kotlin javascript (kotlin=#version, workers=#parallelTasksInProject)'() {
    
            setupForKotlinVersion(version)
    
            // kotlinjs has been removed in Kotlin 1.7 in favor of kotlin-mpp
            assumeTrue(kotlinPluginVersion.baseVersion < VersionNumber.version(1, 7))
    
            given:
            useSample("kotlin-js-sample")
            withKotlinBuildFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. docs/changelogs/upgrading_to_okhttp_4.md

    OkHttp 3.x. You can use an OkHttp 4.x .jar file with applications or libraries built for OkHttp 3.x.
    
    OkHttp is **not** source-compatible for Kotlin callers, but upgrading should be automatic thanks to
    Kotlin’s powerful deprecation features. Most developers should be able to use IntelliJ’s _Code
    Cleanup_ for a safe and fast upgrade.
    
    
    Backwards-Incompatible Changes
    ------------------------------
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         *   superclasses (excluding static callables from super-interfaces), and classes declared directly in the [KaSymbolWithMembers]. This
         *   follows Kotlin's rules about static inheritance in Java classes, where static callables are propagated from superclasses, but
         *   nested classes are not.
         *
         * #### Kotlin Example
         *
         * ```kotlin
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

    ====
    
    [[sec:idea_modify_xml]]
    ==== Modifying the XML representation
    
    The `withXml` hook allows you to manipulate the in-memory XML representation just before the file gets written to disk. Although Groovy's XML support and Kotlin's extension functions make up for a lot, this approach is less convenient than manipulating the domain objects. In return, you get total control over the generated file, including sections not modeled by the domain objects.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    ====
    
    [[sec:eclipse_modify_xml]]
    ==== Modifying the XML representation
    
    The `withXml` hook allows to manipulate the in-memory XML representation just before the file gets written to disk. Although Groovy's XML support and Kotlin's extension functions make up for a lot, this approach is less convenient than manipulating the domain objects. In return, you get total control over the generated file, including sections not modeled by the domain objects.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    There is one last syntax for extra properties that we should cover, one that treats `extra` as a map.
    We recommend against using this in general as you lose the benefits of Kotlin's type checking and it prevents IDEs from providing as much support as they could.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top