- Sort Score
- Num 10 results
- Language All
Results 191 - 200 of 2,321 for buildid (0.05 seconds)
-
clause/from.go
return "FROM" } // Build build from clause func (from From) Build(builder Builder) { if len(from.Tables) > 0 { for idx, table := range from.Tables { if idx > 0 { builder.WriteByte(',') } builder.WriteQuoted(table) } } else { builder.WriteQuoted(currentTable) } for _, join := range from.Joins { builder.WriteByte(' ') join.Build(builder) } }
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Wed Jul 15 02:25:10 GMT 2020 - 630 bytes - Click Count (0) -
docs/recipes.md
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 15 09:01:42 GMT 2026 - 47.8K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableClassToInstanceMap.java
return new ImmutableClassToInstanceMap<>(ImmutableMap.of(type, value)); } /** * Returns a new builder. The generated builder is equivalent to the builder created by the {@link * Builder} constructor. */ public static <B> Builder<B> builder() { return new Builder<>(); } /** * A builder for creating immutable class-to-instance maps. Example: * * {@snippet :
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 21:07:18 GMT 2025 - 7K bytes - Click Count (0) -
build-logic/dependency-modules/build.gradle.kts
plugins { id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin") } description = "Provides a plugin to minify and correct metadata for dependencies used by Gradle" dependencies { implementation("gradlebuild:basics") implementation(buildLibs.gson)Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 09:06:26 GMT 2026 - 263 bytes - Click Count (0) -
build-logic-settings/build.gradle.kts
* See the License for the specific language governing permissions and * limitations under the License. */ description = "Provides settings plugins for configuring global build configuration" tasks.register("check") { dependsOn(subprojects.map { "${it.name}:check" })
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Dec 30 04:30:54 GMT 2025 - 785 bytes - Click Count (0) -
build.gradle.kts
Yuri Schimke <******@****.***> 1770157079 +0000
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 839 bytes - Click Count (1) -
container-tests/build.gradle.kts
Yuri Schimke <******@****.***> 1770283053 +0000
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Feb 05 09:17:33 GMT 2026 - 1.3K bytes - Click Count (1) -
okhttp-urlconnection/build.gradle.kts
Yuri Schimke <******@****.***> 1770157079 +0000
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 595 bytes - Click Count (0) -
okcurl/build.gradle.kts
attributes("Main-Class" to "okhttp3.curl.MainCommandLineKt") } } tasks.shadowJar { mergeServiceFiles() } tasks.withType<Test> { val javaVersion = project.testJavaVersion onlyIf("native build requires Java 17") { javaVersion > 17 } } apply(plugin = "org.graalvm.buildtools.native") configure<GraalVMExtension> { binaries { named("main") { imageName = "okcurl"
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Feb 05 09:17:33 GMT 2026 - 2.4K bytes - Click Count (0) -
okhttp-brotli/build.gradle.kts
Yuri Schimke <******@****.***> 1770157079 +0000
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 650 bytes - Click Count (0)