Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for kotlin2js (0.22 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)
Back to top