Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for browser (0.1 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheReportIntegrationTest.groovy

            try (Playwright playwright = Playwright.create()) {
                try (Browser browser = playwright.webkit().launch()) {
                    try (BrowserContext context = browser.newContext()) {
                        try (Page page = context.newPage()) {
                            page.onPageError(onPageError)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/test/IntegrationSpec.scala

    @RunWith(classOf[JUnitRunner])
    class IntegrationSpec extends PlaySpec
      with OneBrowserPerTest
      with GuiceOneServerPerTest
      with HtmlUnitFactory
      with ServerProvider {
    
      "Application" should {
    
        "work from within a browser" in {
    
          go to ("http://localhost:" + port)
    
          pageSource must include ("Your new application is ready.")
        }
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 518 bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractKotlinPluginSmokeTest.groovy

                    buildFile << """
                        kotlin { js(IR) { browser() } }
                    """
                }
                if (testedPluginId == 'org.jetbrains.kotlin.multiplatform') {
                    buildFile << """
                        kotlin {
                            jvm()
                            js(IR) { browser() }
                        }
                    """
                }
    
                /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-multiplatform-js-jvm-example/src/jsMain/kotlin/samples/Base64.kt

     * 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 samples
    
    import kotlinx.browser.window
    
    actual object Base64Factory {
        actual fun createEncoder(): Base64Encoder = JsBase64Encoder
    }
    
    object JsBase64Encoder : Base64Encoder {
        override fun encode(src: ByteArray): ByteArray {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 1003 bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-multiplatform-js-jvm-example/build.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        kotlin("multiplatform") version "$kotlinVersion"
    }
    
    repositories {
        mavenCentral()
    }
    
    kotlin {
        js(IR) {
            browser {
                testTask {
                    useKarma {
                        useChromeHeadless()
                        $enableCssSupportOld
                    }
                }
    
                $enableCssSupportNew
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/jenkins.adoc

    // TODO: this block will start a background process not handled by the content testing
    [listing.terminal]
    ----
    $ wget https://mirrors.jenkins.io/war-stable/latest/jenkins.war
    $ java -jar jenkins.war
    ----
    
    In the browser, navigate to `localhost` with port `8080` to render the Jenkins dashboard.
    You will be asked to set up an new administration user and which plugins to install.
    
    === Installation of plugins
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/OutputDirSelectorUtil.java

     * limitations under the License.
     */
    
    package org.gradle.performance.results;
    
    /**
     * Moved here from OutputDirSelector to work around
     * <a href="https://issues.apache.org/jira/browse/GROOVY-10591">GROOVY-10591</a>
     */
    public class OutputDirSelectorUtil {
    
        public static String fileSafeNameFor(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/DurationCodec.kt

    internal
    object DurationCodec : Codec<Duration> {
    
        override suspend fun WriteContext.encode(value: Duration) {
            // Do not use the ISO-8601 format for serialization
            // to work around https://bugs.openjdk.java.net/browse/JDK-8054978
            // on Java 8
            writeLong(value.seconds)
            writeSmallInt(value.nano)
        }
    
        override suspend fun ReadContext.decode(): Duration =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperConcurrentDownloadTest.groovy

            server.expect(server.head("/gradle-bin.zip"))
            server.expect(server.get("/gradle-bin.zip").sendFile(distribution.binDistribution))
            server.start()
        }
    
        @Issue("https://issues.gradle.org/browse/GRADLE-2699")
        def "concurrent downloads do not stomp over each other"() {
            given:
            prepareWrapper(server.uri("gradle-bin.zip"))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitDetector.java

        /**
         * groovy.util.GroovyTestCase was renamed to groovy.test.GroovyTestCase in the groovy-test
         * subproject to prevent split packages in Groovy 4.  See <a href="https://issues.apache.org/jira/browse/GROOVY-8647">GROOVY-8647</a>
         */
        private static final String GROOVY_TEST_CASE = "groovy/test/GroovyTestCase";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top