- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for system (0.22 sec)
-
src/android/test/interop/app/build.gradle
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" externalNativeBuild { cmake { // The paths to the protoc and grpc_cpp_plugin binaries on the host system (codegen // is not cross-compiled to Android) def protoc = project.hasProperty('protoc') ? project.property('protoc') : '/usr/local/bin/protoc'
Plain Text - Registered: 2022-05-17 20:15 - Last Modified: 2021-11-06 02:04 - 2.1K bytes - Viewed (0) -
android/pytorch_android/build.gradle
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" ndk { abiFilters ABI_FILTERS.split(",") } externalNativeBuild { cmake { if(System.env.BUILD_LITE_INTERPRETER == '0') { arguments "-DANDROID_STL=c++_shared", "-DBUILD_LITE_INTERPRETER=OFF", "-DUSE_LITE_INTERPRETER_PROFILER=OFF" } else {
Plain Text - Registered: 2022-08-14 05:39 - Last Modified: 2021-08-14 04:40 - 4.4K bytes - Viewed (0) -
build.gradle
task.options.encoding = 'UTF-8' task.sourceCompatibility = JavaVersion.VERSION_1_8 task.targetCompatibility = JavaVersion.VERSION_1_8 } tasks.withType(Test).configureEach { testLogging { if (System.getenv("CI") == "true") { events = ["failed", "skipped", "passed"] } exceptionFormat "full" } } apply plugin: 'net.ltgt.errorprone' dependencies {
Plain Text - Registered: 2022-08-09 18:08 - Last Modified: 2021-12-22 17:55 - 3.9K bytes - Viewed (0) -
GPL/GnuDisassembler/build.gradle
} else { // Module is in an unknown location (likely outside of Ghidra). // Rely on the GHIDRA_INSTALL_DIR property being set. def ghidraInstallDir = null; if (System.env.GHIDRA_INSTALL_DIR) { ghidraInstallDir = System.env.GHIDRA_INSTALL_DIR } else if (project.hasProperty("GHIDRA_INSTALL_DIR")) { ghidraInstallDir = project.getProperty("GHIDRA_INSTALL_DIR") } else {
Plain Text - Registered: 2022-08-11 20:45 - Last Modified: 2021-08-17 17:41 - 3.4K bytes - Viewed (0) -
retrofit/android-test/build.gradle
// correctly. This works in Android Studio because it sets the minSdk automatically based on // your deployment target. This environment variable is set by the GitHub Action. def emulatorApiLevel = System.getenv("API_LEVEL") if (emulatorApiLevel != null) { try { minSdkVersion Integer.parseInt(emulatorApiLevel) } catch (NumberFormatException ignored) { } } targetSdkVersion 29
Plain Text - Registered: 2022-08-09 18:08 - Last Modified: 2022-02-10 20:30 - 1.3K bytes - Viewed (0) -
examples/android/helloworld/app/build.gradle
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" externalNativeBuild { cmake { // The paths to the protoc and grpc_cpp_plugin binaries on the host system (codegen // is not cross-compiled to Android) def protoc = project.hasProperty('protoc') ? project.property('protoc') : '/usr/local/bin/protoc'
Plain Text - Registered: 2022-08-09 20:15 - Last Modified: 2021-11-06 02:04 - 2.1K bytes - Viewed (0) -
annotation/compiler/build.gradle
for (jmod in [ "java.base", "java.logging", "java.compiler", "jdk.compiler", "jdk.unsupported"]) { libraryjars( "${System.getProperty('java.home')}/jmods/${jmod}.jmod", jarfilter: '!**.jar', filter: '!module-info.class') } }
Plain Text - Registered: 2022-08-10 02:28 - Last Modified: 2022-07-15 22:23 - 3.9K bytes - Viewed (0)