- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 196 for daehal (0.1 sec)
-
guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
feet, they seemed to be almost out of sight, they were getting so far off). `Oh, my poor little feet, I wonder who will put on your shoes and stockings for you now, dears? I'm sure _I_ shan't be able! I shall be a great deal too far off to trouble myself about you: you must manage the best way you can; --but I must be kind to them,' thought Alice, `or perhaps they won't walk the way I want to go! Let me see: I'll give them a new pair of
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 29 21:35:03 UTC 2012 - 145.2K bytes - Viewed (0) -
guava/src/com/google/common/reflect/Invokable.java
import org.checkerframework.checker.nullness.qual.Nullable; /** * Wrapper around either a {@link Method} or a {@link Constructor}. Convenience API is provided to * make common reflective operation easier to deal with, such as {@link #isPublic}, {@link * #getParameters} etc. * * <p>In addition to convenience methods, {@link TypeToken#method} and {@link TypeToken#constructor}
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Dec 14 20:35:03 UTC 2023 - 19.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/LinkedHashMultimap.java
* lying about the fields below on the grounds that we always initialize them just after the * constructor -- an example of the kind of lying that our hypothetical bytecode rewriter would * already have to deal with, thanks to DI frameworks that perform field and method injection, * frameworks like Android that define post-construct hooks like Activity.onCreate, etc. */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 21:19:52 UTC 2024 - 24.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableList.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 21:21:17 UTC 2024 - 27.7K bytes - Viewed (0) -
guava/src/com/google/common/math/LongMath.java
* We wish to test whether or not x <= (sqrtFloor + 0.5)^2 = halfSquare + 0.25. Since both x * and halfSquare are integers, this is equivalent to testing whether or not x <= * halfSquare. (We have to deal with overflow, though.) * * If we treat halfSquare as an unsigned long, we know that * sqrtFloor^2 <= x < (sqrtFloor + 1)^2
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 09 16:39:37 UTC 2024 - 45.2K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/InterceptorTest.kt
fun networkInterceptorThrowsRuntimeExceptionSynchronous() { interceptorThrowsRuntimeExceptionSynchronous(true) } /** * When an interceptor throws an unexpected exception, synchronous callers can catch it and deal * with it. */ private fun interceptorThrowsRuntimeExceptionSynchronous(network: Boolean) { addInterceptor(network) { chain: Interceptor.Chain? -> throw RuntimeException("boom!") } val request =
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Jan 14 10:20:09 UTC 2024 - 27.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java
String remotePath = repository.pathOfRemoteRepositoryMetadata(metadata); getRemoteFile(repository, destination, remotePath, null, checksumPolicy, true); } /** * Deal with connecting to a wagon repository taking into account authentication and proxies. * * @param wagon * @param repository * * @throws ConnectionException
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 29.9K bytes - Viewed (0) -
cmd/testdata/xl-meta-merge.zip
qV†|¯DOM^uNA†ûèâÙ*' ÈËë qeRÜ: sR 5ˆÜà õüñÌ{ .% )Ò FjDyjØlÖ}yˆyvMVEôPªQSp_YeU\c² +»oe\ûwÀmapgy _sT^w\†1n{DãÌ|f~ÄÌž®’9 ‚¬ l co߀NrG|ûU]IzY¼uòYx}nôÝÌ ×ûZeñ ÿ÷Ûî½t`fVIItiR}^gl~†÷á0û#<À6 ïè€ût¦[Õ:ÌgEoS_ïÀÌÏÌ îØÁü Ñeßâ )1 =ˆE~PŒe}xûc€BTuoªF÷_x]Y³qt·ftoe£ýôû j†Yê0iy)=ôæHsL{¦S`yNGQ¸fXXæà _^öæ|IK¼Qò!`I =ô2¾k]lc{ ² }Eò%ò3VGX~„÷}la{—ÕrqNdï³kûxauÔhhjÖ^ rk yT rkD~wc÷kVBŽsVGÊÜ5¾MISò[¾FKêMUpܤro_zªAÖGrïÊLSKTá>þÕßÜçÑÿÌëÙÆ<×ÛÒÇñKr÷qnF˜„!ñm¾OGò†VKyV„Ühm†ìIxvUc}gòzŠYSqTO¬v`w’‹¯¦§‘ü[ 8áñ.}¨ò=ò„Ek@ïjrsJ¾Aeæ©zãqmp¨o|þO{xˆæRCÙ]eZ¢LGSìܲwònoŠ—U`=...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Mar 08 17:50:48 UTC 2024 - 30.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactHashSet.java
* than {@code size()}. Furthermore, this structure only depends on a fixed number of arrays; {@code * add(x)} operations <i>do not</i> create objects for the garbage collector to deal with, and for * every element added, the garbage collector will have to traverse {@code 1.5} references on * average, in the marking phase, not {@code 5.0} as in {@code java.util.HashSet}. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 24.9K bytes - Viewed (0) -
android/guava/src/com/google/common/math/LongMath.java
* We wish to test whether or not x <= (sqrtFloor + 0.5)^2 = halfSquare + 0.25. Since both x * and halfSquare are integers, this is equivalent to testing whether or not x <= * halfSquare. (We have to deal with overflow, though.) * * If we treat halfSquare as an unsigned long, we know that * sqrtFloor^2 <= x < (sqrtFloor + 1)^2
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 09 16:39:37 UTC 2024 - 45.2K bytes - Viewed (0)