- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 1,781 for buildup (0.12 sec)
-
clause/limit.go
return "LIMIT" } // Build build where clause func (limit Limit) Build(builder Builder) { if limit.Limit != nil && *limit.Limit >= 0 { builder.WriteString("LIMIT ") builder.AddVar(builder, *limit.Limit) } if limit.Offset > 0 { if limit.Limit != nil && *limit.Limit >= 0 { builder.WriteByte(' ') } builder.WriteString("OFFSET ") builder.AddVar(builder, limit.Offset) } }
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Tue Feb 06 02:54:40 UTC 2024 - 942 bytes - Viewed (0) -
ci/official/containers/ml_build/Dockerfile
COPY builder.devtoolset/build_devtoolset.sh /build_devtoolset.sh COPY builder.devtoolset/glibc2.17-inline.patch /glibc2.17-inline.patch RUN /build_devtoolset.sh devtoolset-9 /dt9 # Setup Python COPY setup.python.sh /setup.python.sh COPY builder.requirements.txt /builder.requirements.txt RUN /setup.python.sh python3.9 builder.requirements.txt RUN /setup.python.sh python3.10 builder.requirements.txt
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 30 00:07:17 UTC 2024 - 3.8K 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) -
android/guava-tests/test/com/google/common/collect/ImmutableMultimapTest.java
IllegalArgumentException.class, () -> ImmutableMultimap.builder().expectedValuesPerKey(-1)); } public void testBuilderWithExpectedValuesPerKeyZero() { ImmutableMultimap.Builder<String, String> builder = ImmutableMultimap.<String, String>builder().expectedValuesPerKey(0); builder.put("key", "value"); assertThat(builder.build().entries()).containsExactly(immutableEntry("key", "value")); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 6.8K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/ConfiguredGoalSupport.java
.writer() .println(messageBuilderFactory.builder().info(s).build()); if (entry.getKey() == SecDispatcher.ValidationResponse.Level.ERROR) { consumer = s -> context.terminal .writer() .println(messageBuilderFactory.builder().error(s).build()); } else if (entry.getKey() == SecDispatcher.ValidationResponse.Level.WARNING) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/CacheBuilderTest.java
} @GwtIncompatible // maximumWeight public void testMaximumWeight_setTwice() { CacheBuilder<Object, Object> builder = CacheBuilder.newBuilder().maximumWeight(16); assertThrows(IllegalStateException.class, () -> builder.maximumWeight(16)); assertThrows(IllegalStateException.class, () -> builder.maximumSize(16)); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 15:00:32 UTC 2024 - 24.9K bytes - Viewed (0) -
clause/update.go
func (update Update) Name() string { return "UPDATE" } // Build build update clause func (update Update) Build(builder Builder) { if update.Modifier != "" { builder.WriteString(update.Modifier) builder.WriteByte(' ') } if update.Table.Name == "" { builder.WriteQuoted(currentTable) } else { builder.WriteQuoted(update.Table) } } // MergeClause merge update clause
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Mar 09 09:07:00 UTC 2020 - 737 bytes - Viewed (0) -
okhttp-tls/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 - 1K bytes - Viewed (0) -
okhttp-bom/build.gradle.kts
Goooler <******@****.***> 1638016287 +0800
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Nov 27 12:31:27 UTC 2021 - 373 bytes - Viewed (0) -
okhttp-hpacktests/build.gradle.kts
Jesse Wilson <******@****.***> 1704346327 -0500
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Jan 04 05:32:07 UTC 2024 - 346 bytes - Viewed (0)