- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 1,879 for buildId (0.16 sec)
-
android/guava/src/com/google/common/collect/ImmutableTable.java
ImmutableTable.Builder<R, C, V> builder = ImmutableTable.builder(); for (Cell<? extends R, ? extends C, ? extends V> cell : cells) { builder.put(cell); } return builder.build(); } /** * Returns a new builder. The generated builder is equivalent to the builder created by the {@link * Builder#Builder() ImmutableTable.Builder()} constructor. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 17.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/xml/XmlFactory.java
return read(XmlReaderRequest.builder().reader(reader).strict(strict).build()); } @Nonnull T read(@Nonnull XmlReaderRequest request) throws XmlReaderException; default void write(@Nonnull T content, @Nonnull Path path) throws XmlWriterException { write(XmlWriterRequest.<T>builder().content(content).path(path).build()); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Nov 17 15:52:15 UTC 2023 - 3.9K bytes - Viewed (0) -
clause/group_by.go
return "GROUP BY" } // Build build group by clause func (groupBy GroupBy) Build(builder Builder) { for idx, column := range groupBy.Columns { if idx > 0 { builder.WriteByte(',') } builder.WriteQuoted(column) } if len(groupBy.Having) > 0 { builder.WriteString(" HAVING ") Where{Exprs: groupBy.Having}.Build(builder) } } // MergeClause merge group by clause
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Tue Mar 30 10:28:09 UTC 2021 - 1K bytes - Viewed (0) -
container-tests/build.gradle.kts
Yuri Schimke <******@****.***> 1710686794 +0000
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Mar 17 14:46:34 UTC 2024 - 1.1K bytes - Viewed (0) -
okhttp-urlconnection/build.gradle.kts
Jesse Wilson <******@****.***> 1700497229 -0800
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Nov 20 16:20:29 UTC 2023 - 764 bytes - Viewed (0) -
okcurl/build.gradle.kts
// see https://www.graalvm.org/docs/reference-manual/native-image/#prerequisites windowsVsVarsPath("C:\\Program Files (x86)\\Microsoft Visual Studio\\2019\\BuildTools\\VC\\Auxiliary\\Build\\vcvars64.bat") } } mavenPublishing { configure(KotlinJvm(javadocJar = JavadocJar.Empty()))
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 1.8K bytes - Viewed (0) -
okhttp-brotli/build.gradle.kts
Jesse Wilson <******@****.***> 1704519060 -0500
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 06 05:31:00 UTC 2024 - 819 bytes - Viewed (0) -
okhttp-dnsoverhttps/build.gradle.kts
Jesse Wilson <******@****.***> 1704519060 -0500
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 06 05:31:00 UTC 2024 - 932 bytes - Viewed (0) -
cmd/build-constants.go
package cmd import "runtime" // DO NOT EDIT THIS FILE DIRECTLY. These are build-time constants // set through ‘buildscripts/gen-ldflags.go’. var ( // GOPATH - GOPATH value at the time of build. GOPATH = "" // GOROOT - GOROOT value at the time of build. GOROOT = "" // Version - version time.RFC3339. Version = "DEVELOPMENT.GOGET"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 01 17:57:52 UTC 2024 - 2.2K 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)