- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 265 for EXPECT (0.04 sec)
-
okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt
- * build a trusted path to a trusted root certificate.
- *
- * The chain should include all intermediate certificates but does not need the root certificate
- * that we expect to be known by the remote peer. The peer already has that certificate so
- * transmitting it is unnecessary.
- */
- fun heldCertificate(
- heldCertificate: HeldCertificate,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 8.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/ByteSourceTest.java
- * @param input the size of the input source
- * @param offset the first argument to {@link ByteSource#slice}
- * @param length the second argument to {@link ByteSource#slice}
- * @param expectRead the number of bytes we expect to read
- */
- private static void assertCorrectSlice(int input, int offset, long length, int expectRead)
- throws IOException {
- checkArgument(expectRead == (int) max(0, min(input, offset + length) - offset));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 15.4K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java
- /**
- * Call the {@code setCount()} method under test, but do not check its return value. Callers
- * should use this method over {@link #setCountCheckReturnValue(Object, int)} when they expect
- * {@code setCount()} to throw an exception, as checking the return value could produce an
- * incorrect error message like "setCount() should return the original count" instead of the
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 13K bytes - Viewed (0) -
gradlew
- # * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
- # and any embedded shellness will be escaped.
- # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
- # treated as '${Hostname}' itself on the command line.
- set -- \
- "-Dorg.gradle.appname=$APP_BASE_NAME" \
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Dec 24 09:00:26 UTC 2023 - 8.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactLinkedHashSet.java
- * <i>should</i> hold {@code expectedSize} elements without rebuilding internal data structures.
- *
- * @param expectedSize the number of elements you expect to add to the returned set
- * @return a new, empty {@code CompactLinkedHashSet} with enough capacity to hold {@code
- * expectedSize} elements without resizing
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 09 00:15:47 UTC 2024 - 9.7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ObjectCountHashMap.java
- /**
- * Creates a {@code ObjectCountHashMap} instance, with a high enough "initial capacity" that it
- * <i>should</i> hold {@code expectedSize} elements without growth.
- *
- * @param expectedSize the number of elements you expect to add to the returned set
- * @return a new, empty {@code ObjectCountHashMap} with enough capacity to hold {@code
- * expectedSize} elements without resizing
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 01 22:07:10 UTC 2021 - 15K bytes - Viewed (0) -
docs/en/docs/tutorial/security/simple-oauth2.md
- You can actually skip that extra header and it would still work.
- But it's provided here to be compliant with the specifications.
- Also, there might be tools that expect and use it (now or in the future) and that might be useful for you or your users, now or in the future.
- That's the benefit of standards...
- ///
- ## See it in action
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 12.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/SourceSinkFactories.java
- return new String(factory.getSinkContents(), UTF_8);
- }
- @Override
- public String getExpected(String data) {
- /*
- * Get what the byte sink factory would expect for no written bytes, then append expected
- * string to that.
- */
- byte[] factoryExpectedForNothing = factory.getExpected(new byte[0]);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 12.6K bytes - Viewed (0) -
istioctl/pkg/tag/generate_test.go
- if err != nil {
- t.Fatalf("could not parse webhook from generated YAML: %s", webhookYAML)
- }
- wh := whObject.(*admitv1.MutatingWebhookConfiguration)
- // expect both namespace.sidecar-injector.istio.io and object.sidecar-injector.istio.io webhooks
- if len(wh.Webhooks) != tc.numWebhooks {
- t.Errorf("expected %d webhook(s) in MutatingWebhookConfiguration, found %d",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 16:05:45 UTC 2024 - 12.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/math/LongMathTest.java
- }
- }
- }
- /* Relies on the correctness of isPowerOfTwo(long). */
- public void testLog2Exact() {
- for (long x : POSITIVE_LONG_CANDIDATES) {
- // We only expect an exception if x was not a power of 2.
- boolean isPowerOf2 = LongMath.isPowerOfTwo(x);
- try {
- assertEquals(x, 1L << LongMath.log2(x, UNNECESSARY));
- assertTrue(isPowerOf2);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 15:00:32 UTC 2024 - 30.6K bytes - Viewed (0)