- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 96 for 180 (0.01 sec)
-
android/guava/src/com/google/common/collect/Multisets.java
* for (E e : occurrencesToRemove) { * multisetToModify.remove(e); * } * }</pre> * * @return {@code true} if {@code multisetToModify} was changed as a result of this operation * @since 18.0 (present in 10.0 with a requirement that the second parameter be a {@code * Multiset}) */ @CanIgnoreReturnValue public static boolean removeOccurrences(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 41.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/Multisets.java
* for (E e : occurrencesToRemove) { * multisetToModify.remove(e); * } * }</pre> * * @return {@code true} if {@code multisetToModify} was changed as a result of this operation * @since 18.0 (present in 10.0 with a requirement that the second parameter be a {@code * Multiset}) */ @CanIgnoreReturnValue public static boolean removeOccurrences(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 41.5K bytes - Viewed (0) -
go.mod
go.opentelemetry.io/otel/trace v1.29.0 // indirect go.uber.org/multierr v1.11.0 // indirect golang.org/x/mod v0.20.0 // indirect golang.org/x/net v0.29.0 // indirect golang.org/x/text v0.18.0 // indirect golang.org/x/tools v0.24.0 // indirect google.golang.org/genproto v0.0.0-20240823204242-4ba0660f739c // indirect google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 11.1K bytes - Viewed (0) -
src/archive/tar/strconv_test.go
// Test base-256 (binary) encoded values. {-1, "\xff", true}, {-1, "\xff\xff", true}, {-1, "\xff\xff\xff", true}, {(1 << 0), "0", false}, {(1 << 8) - 1, "\x80\xff", true}, {(1 << 8), "0\x00", false}, {(1 << 16) - 1, "\x80\xff\xff", true}, {(1 << 16), "00\x00", false}, {-1 * (1 << 0), "\xff", true}, {-1*(1<<0) - 1, "0", false}, {-1 * (1 << 8), "\xff\x00", true},
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Feb 09 05:28:50 UTC 2021 - 14K bytes - Viewed (0) -
go.mod
github.com/docker/cli v27.3.1+incompatible github.com/envoyproxy/go-control-plane v0.13.2-0.20241022220226-23b7e55d7f65 github.com/evanphx/json-patch/v5 v5.9.0 github.com/fatih/color v1.18.0 github.com/felixge/fgprof v0.9.5 github.com/florianl/go-nflog/v2 v2.1.0 github.com/fsnotify/fsnotify v1.7.0 github.com/go-jose/go-jose/v3 v3.0.3 github.com/go-logr/logr v1.4.2 github.com/gogo/protobuf v1.3.2
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Nov 06 06:23:25 UTC 2024 - 10.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/CIBuildModel.kt
} enum class TestType(val unitTests: Boolean = true, val functionalTests: Boolean = true, val crossVersionTests: Boolean = false, val timeout: Int = 180, val maxParallelForks: Int = 4) { // Include cross version tests, these take care of selecting a very small set of versions to cover when run as part of this stage, including the current version quick(true, true, true, 120, 4),
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 16 06:14:14 UTC 2024 - 22.9K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/MoreExecutors.java
* invokeAll/invokeAny} throwing RejectedExecutionException, although a subset of the tasks may * already have been executed. * * @since 18.0 (present as MoreExecutors.sameThreadExecutor() since 10.0) */ @GwtIncompatible // TODO public static ListeningExecutorService newDirectExecutorService() { return new DirectExecutorService(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:51:36 UTC 2024 - 44.1K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CacheTest.kt
.addHeader("Cache-Control: s-maxage=60") .addHeader("Cache-Control: max-age=180") .build(), ) } @Test fun maxAgePreferredOverHigherMaxAge() { assertNotCached( MockResponse.Builder() .addHeader("Date: " + formatDate(-2, TimeUnit.MINUTES)) .addHeader("Cache-Control: s-maxage=180") .addHeader("Cache-Control: max-age=60") .build(), ) }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 10 19:46:48 UTC 2024 - 108.6K bytes - Viewed (0) -
.github/actions/people/app/main.py
authors: Dict[str, Author] = {} now = datetime.now(tz=timezone.utc) one_month_ago = now - timedelta(days=30) three_months_ago = now - timedelta(days=90) six_months_ago = now - timedelta(days=180) one_year_ago = now - timedelta(days=365) for discussion in discussion_nodes: discussion_author_name = None if discussion.author:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 17 04:13:50 UTC 2024 - 19.2K bytes - Viewed (1) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/client/FesenClient.java
protected int sizeForDelete = 10; protected long retryInterval = 3 * 1000L; protected int maxRetryCount = 5; protected long connTimeout = 180 * 1000L; protected String searchPreference; protected String[] targetIndices; public FesenClient() { address = System.getProperty(HTTP_ADDRESS, "localhost:9200").trim();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 19.9K bytes - Viewed (0)