- Sort Score
- Result 10 results
- Languages All
Results 651 - 660 of 699 for ptwo (0.03 sec)
-
guava/src/com/google/common/io/MoreFiles.java
if (exceptions == null) { exceptions = new ArrayList<>(); // don't need Set semantics } exceptions.add(e); return exceptions; } /** * Concatenates the contents of the two given collections of exceptions. If either collection is * null, the other collection is returned. Otherwise, the elements of {@code other} are added to * {@code exceptions} and {@code exceptions} is returned. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 16:07:00 UTC 2024 - 34.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/Streams.java
* (arg1, arg2) -> arg1 + ":" + arg2) * }</pre> * * <p>will return {@code Stream.of("foo1:bar1", "foo2:bar2")}. * * <p>The resulting stream will only be as long as the shorter of the two input streams; if one * stream is longer, its extra elements will be ignored. * * <p>Note that if you are calling {@link Stream#forEach} on the resulting stream, you might want
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 14:20:11 UTC 2024 - 36.8K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java
"must be one of " + validVersions + " but is '" + string + "'.", tracker); } return false; } /** * Compares two model versions. * * @param first the first version. * @param second the second version. * @return negative if the first version is newer than the second version, zero if they are the same or positive if
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 77.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.12.md
- We released autoscaling/v2beta2, which cleans up and unifies the API - We improved readiness detection and smoothing to work well in a larger variety or use cases ### SIG-Azure Sig Azure was focused on two primary new alpha features: - Adding Azure Availability Zones support to cloud provider. - Supporting Cross RG resources (disks, Azure File and node [Experimental]
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Feb 06 06:04:15 UTC 2020 - 293.8K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/URLConnectionTest.kt
transferKind.setBody(responseOne, gzip("one (gzipped)"), 5) server.enqueue(responseOne.build()) val responseTwo = MockResponse.Builder() transferKind.setBody(responseTwo, "two (identity)", 5) server.enqueue(responseTwo.build()) val response1 = getResponse( Request.Builder() .header("Accept-Encoding", "gzip") .url(server.url("/"))
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 131.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.8.md
- `kubectl run --env` no longer supports CSV parsing. To provide multiple environment variables, use the `--env` flag multiple times instead. Example: `--env ONE=1 --env TWO=2` instead of `--env ONE=1,TWO=2`. - Removed deprecated command `kubectl stop`. - Kubectl can now use http caching for the OpenAPI schema. The cache
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Tue Feb 20 15:45:02 UTC 2024 - 312.2K bytes - Viewed (0) -
src/cmd/cgo/gcc.go
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:07:34 UTC 2024 - 97.1K bytes - Viewed (0) -
cmd/notification.go
} // ServiceFreeze freezes all S3 API calls when 'freeze' is true, // 'freeze' is 'false' would resume all S3 API calls again. // NOTE: once a tenant is frozen either two things needs to // happen before resuming normal operations. // - Server needs to be restarted 'mc admin service restart' // - 'freeze' should be set to 'false' for this call // to resume normal operations.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 09 16:58:30 UTC 2024 - 46.2K bytes - Viewed (0) -
cmd/encryption-v1.go
parts: oi.Parts, partIndex: partStart, } // In case of SSE-C, we have to decrypt the OEK using the client-provided key. // In case of a SSE-C server-side copy, the client might provide two keys, // one for the source and one for the target. This reader is the source. var ssecClientKey []byte if crypto.SSEC.IsEncrypted(oi.UserDefined) { if copySource && crypto.SSECopy.IsRequested(h) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Oct 13 13:06:08 UTC 2024 - 37.2K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt
peer.acceptFrame() // DATA peer.play() // Play it back. val connection = connect(peer) val stream = connection.newStream(headerEntries("b", "banana"), true) // two outgoing writes val sink = stream.getSink() sink.write(Buffer().writeUtf8("abcde"), 5) sink.write(Buffer().writeUtf8("fghij"), 5) sink.close() // verify the peer received one incoming frame
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 75.4K bytes - Viewed (0)