- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 99 for 140 (0.02 sec)
-
CHANGELOG/CHANGELOG-1.14.md
- [v1.14.0-rc.1](#v1140-rc1) - [v1.14.0-beta.2](#v1140-beta2) - [v1.14.0-beta.1](#v1140-beta1) - [v1.14.0-alpha.3](#v1140-alpha3) - [v1.14.0-alpha.2](#v1140-alpha2) - [v1.14.0-alpha.1](#v1140-alpha1) # v1.14.0-rc.1 [Documentation](https://docs.k8s.io) ## Downloads for v1.14.0-rc.1 filename | sha512 hash
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Mon Jun 14 22:06:39 UTC 2021 - 271.5K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/form-validator/theme-default.min.css
{color:#b94a48;background:0 0;-webkit-box-shadow:none;box-shadow:none}input[type=file].valid{color:#468847;background:0 0;-webkit-box-shadow:none;box-shadow:none}.form-error{display:block;color:#b94a48;margin-top:5px;margin-bottom:10px;line-height:140%}span.help{color:#999;font-size:90%}input.async-validation,input.validating-server-side,select.async-validation,select.validating-server-side{opacity:.5;background-image:url(data:image/gif;base64,R0lGODlhEAAQAPQAAP///wAAAPDw8IqKiuDg4EZGRnp6egAAAFhY...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 33.3K bytes - Viewed (0) -
guava/src/com/google/common/primitives/UnsignedLong.java
* returns the low 64 bits of the result. * * @since 14.0 */ public UnsignedLong plus(UnsignedLong val) { return fromLongBits(this.value + checkNotNull(val).value); } /** * Returns the result of subtracting this and {@code val}. If the result would have more than 64 * bits, returns the low 64 bits of the result. * * @since 14.0 */ public UnsignedLong minus(UnsignedLong val) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jun 04 13:03:16 UTC 2025 - 8.8K bytes - Viewed (0) -
okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt
A7D6 ; mapped ; A7D7 # 14.0 LATIN CAPITAL LETTER MIDDLE SCOTS S A7D7 ; valid # 14.0 LATIN SMALL LETTER MIDDLE SCOTS S A7D8 ; mapped ; A7D9 # 14.0 LATIN CAPITAL LETTER SIGMOID S A7D9 ; valid # 14.0 LATIN SMALL LETTER SIGMOID S
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Feb 10 11:25:47 UTC 2024 - 854.1K bytes - Viewed (0) -
guava/src/com/google/common/primitives/UnsignedInteger.java
* returns the low 32 bits of the result. * * @since 14.0 */ public UnsignedInteger plus(UnsignedInteger val) { return fromIntBits(this.value + checkNotNull(val).value); } /** * Returns the result of subtracting this and {@code val}. If the result would be negative, * returns the low 32 bits of the result. * * @since 14.0 */ public UnsignedInteger minus(UnsignedInteger val) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.3K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractListeningExecutorService.java
* * @author Chris Povirk * @since 14.0 */ @CheckReturnValue @GwtIncompatible public abstract class AbstractListeningExecutorService extends AbstractExecutorService implements ListeningExecutorService { /** Constructor for use by subclasses. */ public AbstractListeningExecutorService() {} /** * @since 19.0 (present with return type {@code ListenableFutureTask} since 14.0) */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 17:47:46 UTC 2025 - 3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/FluentIterable.java
* * <p><b>{@code Stream} equivalent:</b> {@link Stream#flatMap} (using a function that produces * streams, not iterables). * * @since 13.0 (required {@code Function<E, Iterable<T>>} until 14.0) */ public <T extends @Nullable Object> FluentIterable<T> transformAndConcat( Function<? super E, ? extends Iterable<? extends T>> function) { return FluentIterable.concat(transform(function)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/FluentIterable.java
* * <p><b>{@code Stream} equivalent:</b> {@link Stream#flatMap} (using a function that produces * streams, not iterables). * * @since 13.0 (required {@code Function<E, Iterable<T>>} until 14.0) */ public <T extends @Nullable Object> FluentIterable<T> transformAndConcat( Function<? super E, ? extends Iterable<? extends T>> function) { return FluentIterable.concat(transform(function)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0) -
src/test/resources/plugin/repo3/fess-crawler-webdriver/maven-metadata.xml
<version>1.1.1</version> <version>1.2.0</version> <version>1.2.1</version> <version>1.3.0</version> <version>1.3.1</version> <version>1.3.2</version> <version>1.4.0</version> <version>1.4.1</version> <version>1.4.2</version> <version>1.4.3</version> <version>1.5.0</version> <version>1.5.1</version> <version>1.5.2</version>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jun 17 13:30:41 UTC 2024 - 3.6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java
} /** * @since 13.0 */ @Override public final void addListener(Listener listener, Executor executor) { delegate.addListener(listener, executor); } /** * @since 14.0 */ @Override public final Throwable failureCause() { return delegate.failureCause(); } /** * @since 15.0 */ @CanIgnoreReturnValue @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 7.2K bytes - Viewed (0)