- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 912 for compile (0.04 sec)
-
buildscripts/cross-compile.sh
Daniel Jakots <******@****.***> 1702948102 -0500
Registered: 2025-05-25 19:28 - Last Modified: 2023-12-19 01:08 - 958 bytes - Viewed (0) -
build-logic/jvm/src/main/kotlin/gradlebuild.strict-compile.gradle.kts
tasks.withType<JavaCompile>().configureEach { // Generated classes may not adhere to the strict no-warning policy that we apply to handwritten code // For example, external JMH plugin generates code that produces compiler warnings if (!name.contains("CompileGeneratedClasses")) { options.compilerArgs.addAll(strictCompilerArgs) }
Registered: 2025-05-28 11:36 - Last Modified: 2023-12-15 20:21 - 1.2K bytes - Viewed (0) -
build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts
tasks.register("compileAll") { description = "Compile all source code, including main, test, integTest, crossVersionTest, testFixtures, etc." val compileTasks = project.tasks.matching { it is JavaCompile || it is GroovyCompile } dependsOn(compileTasks) } tasks.register("compileAllProduction") { description = "Compile all production source code, usually only main and testFixtures."
Registered: 2025-05-28 11:36 - Last Modified: 2025-05-19 18:16 - 22.9K bytes - Viewed (0) -
android/guava-testlib/pom.xml
<artifactId>maven-toolchains-plugin</artifactId> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <configuration> <compilerArgs combine.children="append" combine.self="append"> <arg>-XDignore.symbol.file</arg> </compilerArgs> </configuration>
Registered: 2025-05-30 12:43 - Last Modified: 2025-03-19 17:26 - 4.9K bytes - Viewed (0) -
android/guava/pom.xml
</instructions> </configuration> </plugin> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <configuration> <compilerArgs combine.children="append" combine.self="append"> <arg>-XDignore.symbol.file</arg> </compilerArgs> </configuration>
Registered: 2025-05-30 12:43 - Last Modified: 2025-05-20 15:34 - 9.6K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexer.java
private static final Pattern HTML_ENCODED_CHAR = Pattern.compile("&#\\d+;"); private static final Pattern HTML_ENTITY = Pattern.compile("&.+?;"); private static final Pattern TAG = Pattern.compile("(?s)\\{@.+?\\}"); private static final Pattern END_TAG_NAME = Pattern.compile("(?s)\\s|}"); private static final Pattern WHITESPACE_WITH_EOL = Pattern.compile("(?s)\\s+");
Registered: 2025-05-28 11:36 - Last Modified: 2024-08-19 15:07 - 7.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/RegexRuleTest.java
final RegexRule regexRule = new RegexRule(); regexRule.defaultRule = true; regexRule.allRequired = true; regexRule.addRule("url", Pattern.compile("http:.*")); regexRule.addRule("mimeType", Pattern.compile("text/html")); assertTrue(regexRule.match(getTestData1())); assertTrue(regexRule.match(getTestData2())); assertTrue(regexRule.match(getTestData3()));
Registered: 2025-05-25 03:50 - Last Modified: 2025-03-15 06:52 - 4.8K bytes - Viewed (0) -
futures/failureaccess/pom.xml
listenablefuture artifact). </description> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <executions> <execution> <id>default-compile</id> <goals> <goal>compile</goal> </goals> <configuration> <release>8</release> <excludes>
Registered: 2025-05-30 12:43 - Last Modified: 2025-02-12 18:13 - 5.4K bytes - Viewed (0) -
.bazelrc
build:rocm --config=no_tfrt
Registered: 2025-05-27 12:39 - Last Modified: 2025-05-21 21:12 - 53.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java
* will default to {@link #COMPILE}. */ UNDEFINED("", false), /** * Compile only. */ COMPILE_ONLY("compile-only", false), /** * Compile, runtime and test. */ COMPILE("compile", true), /** * Runtime and test. */ RUNTIME("runtime", true), /**
Registered: 2025-05-24 08:56 - Last Modified: 2025-03-19 14:33 - 4K bytes - Viewed (0)