Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for graal (0.01 sec)

  1. native-image-tests/build.gradle.kts

    plugins {
      id("org.graalvm.buildtools.native")
      kotlin("jvm")
    }
    
    animalsniffer {
      isIgnoreFailures = true
    }
    
    val graal by sourceSets.creating
    
    sourceSets {
      named("graal") {}
      test {
        java.srcDirs(
          "../okhttp-brotli/src/test/java",
          "../okhttp-dnsoverhttps/src/test/java",
          "../okhttp-logging-interceptor/src/test/java",
          "../okhttp-sse/src/test/java",
        )
      }
    }
    
    dependencies {
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-27 21:44
    - 1.8K bytes
    - Viewed (0)
  2. okcurl/okcurl

    #!/bin/sh -e
    
    ../gradlew -q --console plain nativeImage
    
    Registered: 2025-05-30 11:42
    - Last Modified: 2022-03-30 05:41
    - 83 bytes
    - Viewed (0)
  3. okhttp/src/jvmMain/kotlin/okhttp3/internal/graal/GraalSvm.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 okhttp3.internal.graal
    
    import com.oracle.svm.core.annotate.Delete
    import com.oracle.svm.core.annotate.Substitute
    import com.oracle.svm.core.annotate.TargetClass
    import okhttp3.internal.platform.BouncyCastlePlatform
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 1.5K bytes
    - Viewed (0)
  4. okhttp/src/main/resources/META-INF/native-image/okhttp/okhttp/native-image.properties

    Args = -H:+AddAllCharsets --enable-http --enable-https --features=okhttp3.internal.graal.OkHttpFeature --report-unsupported-elements-at-runtime...
    Registered: 2025-05-30 11:42
    - Last Modified: 2024-12-21 08:56
    - 144 bytes
    - Viewed (0)
  5. okhttp/src/jvmMain/kotlin/okhttp3/internal/graal/OkHttpFeature.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 okhttp3.internal.graal
    
    import org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
    import org.graalvm.nativeimage.hosted.Feature
    
    /**
     * Automatic configuration of OkHttp for native images.
     *
    Registered: 2025-05-30 11:42
    - Last Modified: 2024-12-27 13:39
    - 991 bytes
    - Viewed (0)
  6. okhttp/src/jvmMain/resources/META-INF/native-image/okhttp/okhttp/native-image.properties

    Args = -H:+AddAllCharsets --enable-http --enable-https --features=okhttp3.internal.graal.OkHttpFeature --report-unsupported-elements-at-runtime...
    Registered: 2025-05-30 11:42
    - Last Modified: 2024-12-27 13:39
    - 144 bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/TaskQueue.kt

            taskRunner.kickCoordinator(this)
          }
        }
      }
    
      /**
       * Overload of [schedule] that uses a lambda for a repeating task.
       *
       * TODO: make this inline once this is fixed: https://github.com/oracle/graal/issues/3466
       */
      fun schedule(
        name: String,
        delayNanos: Long = 0L,
        block: () -> Long,
      ) {
        schedule(
          object : Task(name) {
            override fun runOnce(): Long = block()
          },
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-28 23:28
    - 7.3K bytes
    - Viewed (0)
  8. README.md

    --------------------
    
    Building your native images with Graal https://www.graalvm.org/ should work automatically.
    This is not currently in a final released version, so `5.0.0-alpha.2` should be used.
    Please report any bugs or workarounds you find.
    
    See the okcurl module for an example build.
    
    ```shell
    $ ./gradlew okcurl:nativeImage
    $ ./okcurl/build/graal/okcurl https://httpbin.org/get
    ```
    
    License
    -------
    
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-29 12:27
    - 7.7K bytes
    - Viewed (0)
  9. okhttp-testing-support/src/main/kotlin/okhttp3/TestUtilJvm.kt

      /**
       * Make assertions about the suppressed exceptions on this. Prefer this over making direct calls
       * so tests pass on GraalVM, where suppressed exceptions are silently discarded.
       *
       * https://github.com/oracle/graal/issues/3008
       */
      @JvmStatic
      fun Throwable.assertSuppressed(block: (List<@JvmSuppressWildcards Throwable>) -> Unit) {
        if (isGraalVmImage) return
        block(suppressed.toList())
      }
    
      @JvmStatic
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-03-19 19:25
    - 4.3K bytes
    - Viewed (0)
  10. okhttp/build.gradle.kts

            compileOnly(libs.conscrypt.openjdk)
            compileOnly(libs.bouncycastle.bcprov)
            compileOnly(libs.bouncycastle.bctls)
    
            // graal build support
            compileOnly(libs.nativeImageSvm)
            compileOnly(libs.openjsse)
          }
        }
    
        val jvmTest by getting {
          dependencies {
    Registered: 2025-05-30 11:42
    - Last Modified: 2025-05-27 18:34
    - 8.8K bytes
    - Viewed (0)
Back to top