- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 1,698 for Build (0.05 sec)
-
docs/debugging/build.sh
#!/bin/bash export CGO_ENABLED=0 for dir in docs/debugging/*/; do bin=$(basename ${dir}) go build -C ${dir} -o ${PWD}/${bin}
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 133 bytes - Viewed (0) -
test-site/project/build.properties
yfujita <******@****.***> 1429519297 +0900
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Mon Apr 20 08:41:37 UTC 2015 - 132 bytes - Viewed (0) -
build-logic/cleanup/build.gradle.kts
plugins { id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin") id("gradlebuild.build-logic.groovy-dsl-gradle-plugin") } description = "Provides a plugin that cleans up after executing tests" errorprone { disabledChecks.addAll( "CatchAndPrintStackTrace", // 1 occurrences "DefaultCharset", // 3 occurrences "JavaTimeDefaultTimeZone", // 1 occurrences ) } dependencies {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 507 bytes - Viewed (0) -
build-logic/buildquality/build.gradle.kts
plugins { id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin") } description = "Provides plugins to configure quality checks (incubating report, CodeNarc, et al)" dependencies { implementation("gradlebuild:basics") implementation(projects.cleanup) implementation(projects.documentation) implementation(projects.integrationTesting) implementation(projects.performanceTesting) implementation(projects.profiling)
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Sep 11 14:21:47 UTC 2024 - 1.1K bytes - Viewed (0) -
build-logic/documentation/build.gradle.kts
plugins { id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin") id("gradlebuild.build-logic.groovy-dsl-gradle-plugin") } description = "Provides a plugin to generate Gradle's DSL reference, User Manual and Javadocs" dependencies { implementation("gradlebuild:basics") implementation("gradlebuild:module-identity") implementation(projects.buildUpdateUtils) implementation("com.github.javaparser:javaparser-core")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 21 13:38:04 UTC 2024 - 1.2K bytes - Viewed (0) -
okhttp/build.gradle.kts
id("binary-compatibility-validator") } // Build & use okhttp3/internal/-InternalVersion.kt val copyKotlinTemplates = tasks.register<Copy>("copyKotlinTemplates") { from("src/main/kotlinTemplates") into("$buildDir/generated/sources/kotlinTemplates") expand("projectVersion" to project.version) filteringCharset = Charsets.UTF_8.toString() } // Build & use okhttp3/internal/idn/IdnaMappingTableInstance.kt
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Jan 04 05:32:07 UTC 2024 - 5.6K bytes - Viewed (0) -
dbflute_fess/build.properties
Shinsuke Sugaya <******@****.***> 1436049991 +0900
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jul 04 22:46:31 UTC 2015 - 180 bytes - Viewed (0) -
test-site/build.sbt
yfujita <******@****.***> 1459489258 +0900
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Fri Apr 01 05:40:58 UTC 2016 - 968 bytes - Viewed (0) -
build-logic-commons/code-quality-rules/build.gradle.kts
* See the License for the specific language governing permissions and * limitations under the License. */ plugins { id("java-library") } description = "Provides a custom CodeNarc rule used by the Gradle build" group = "gradlebuild" dependencies { api(platform(projects.buildPlatform)) compileOnly(localGroovy()) compileOnly("org.codenarc:CodeNarc") { exclude(group = "org.apache.groovy")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 17 10:11:26 UTC 2024 - 980 bytes - Viewed (0) -
.github/workflows/build-docs.yml
- uses: actions/cache@v4 with: key: mkdocs-cards-${{ matrix.lang }}-${{ github.ref }} path: docs/${{ matrix.lang }}/.cache - name: Build Docs run: python ./scripts/docs.py build-lang ${{ matrix.lang }} - uses: actions/upload-artifact@v4 with: name: docs-site-${{ matrix.lang }} path: ./site/** include-hidden-files: true
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 12:27:19 UTC 2024 - 4.1K bytes - Viewed (0)