- Sort Score
- Result 10 results
- Languages All
Results 491 - 500 of 773 for 11 (0.07 sec)
-
internal/lsync/lrwmutex_test.go
<-cdone } } // Borrowed from rwmutex_test.go func TestRWMutex(t *testing.T) { defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(-1)) n := 1000 if testing.Short() { n = 5 } HammerRWMutex(1, 1, n) HammerRWMutex(1, 3, n) HammerRWMutex(1, 10, n) HammerRWMutex(4, 1, n) HammerRWMutex(4, 3, n) HammerRWMutex(4, 10, n) HammerRWMutex(10, 1, n) HammerRWMutex(10, 3, n) HammerRWMutex(10, 10, n)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Mar 05 04:57:35 UTC 2023 - 7.9K bytes - Viewed (0) -
internal/s3select/csv/testdata/testdata.zip
958007812,40.839885711669922,-73.85198974609375,40.864917755126953,1,2.85,11,0,0.5,0,0,,,11.5,2,1,182,3,green,0.00,5.1,0.0,40,32,3.80,1307,210.02,2,Bronx,021002,2021002,E,BX46,Parkchester,3709,493,318,2,Bronx,031800,2031800,I,BX31,Allerton-Pelham Gardens,3704^3389501,2,2014-03-07 10:01:17,2014-03-07 10:13:07,N,1,-73.859046936035156,40.837963104248047,-73.841796875,40.868251800537109,1,2.64,11,0,0.5,0,0,,,11.5,2,1,182,81,green,0.00,3.9,0.0,37,26,7.83,1307,210.02,2,Bronx,021002,2021002,E,BX46,Park...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 01 21:59:40 UTC 2021 - 111.6K bytes - Viewed (0) -
cmd/erasure-metadata.go
if reducedErr != nil { return -1, -1, reducedErr } // special case when parity is '0' if defaultParityCount == 0 { return len(partsMetaData), len(partsMetaData), nil } parities := listObjectParities(partsMetaData, errs) parityBlocks := commonParity(parities, defaultParityCount) if parityBlocks < 0 {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 21.3K bytes - Viewed (0) -
guava/src/com/google/common/math/PairedStatsAccumulator.java
* guaranteed to be exactly +/-1 even when the data are perfectly (anti-)correlated, due to * numerical errors. However, it is guaranteed to be in the inclusive range [-1, +1]. * * <h3>Non-finite values</h3> * * <p>If the dataset contains any non-finite values ({@link Double#POSITIVE_INFINITY}, {@link
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 17:02:53 UTC 2023 - 10.3K bytes - Viewed (0) -
cmd/mrf_gen.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 13 22:26:05 UTC 2024 - 6.8K bytes - Viewed (0) -
guava/src/com/google/common/net/MediaType.java
* ({@code application/soap+xml}) is used to identify SOAP 1.2 message envelopes that have been * serialized with XML 1.0. * * <p>For SOAP 1.1 messages, see {@code XML_UTF_8} per <a * href="http://www.w3.org/TR/2000/NOTE-SOAP-20000508/">W3C Note on Simple Object Access Protocol * (SOAP) 1.1</a> * * @since 20.0 */ public static final MediaType SOAP_XML_UTF_8 = createConstantUtf8(APPLICATION_TYPE, "soap+xml");
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Sep 26 19:15:09 UTC 2024 - 47.5K bytes - Viewed (0) -
LICENSE
3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Apr 23 18:58:53 UTC 2021 - 33.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/TreeRangeMapTest.java
TreeRangeMap<Integer, Integer> nonEmpty = TreeRangeMap.create(); nonEmpty.put(Range.all(), 1); TreeRangeMap<Integer, Integer> coalesced = TreeRangeMap.create(); coalesced.put(Range.atLeast(1), 1); coalesced.putCoalescing(Range.atMost(1), 1); TreeRangeMap<Integer, Integer> differentValues = TreeRangeMap.create(); differentValues.put(Range.closedOpen(1, 2), 2); differentValues.put(Range.closedOpen(3, 4), 2);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sun Oct 06 13:04:03 UTC 2024 - 29.9K bytes - Viewed (0) -
src/main/resources/fess_message_ru.properties
constraints.Mod10Check.message = The check digit for ${value} is invalid, Modulo 10 checksum failed. constraints.Mod11Check.message = The check digit for ${value} is invalid, Modulo 11 checksum failed. constraints.ModCheck.message = The check digit for ${value} is invalid, ${modType} checksum failed. constraints.NotBlank.message = {item} may not be empty.
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri May 20 12:12:28 UTC 2022 - 10.2K bytes - Viewed (0) -
fastapi/encoders.py
results in failed round-tripping between encode and parse. Our Id type is a prime example of this. >>> decimal_encoder(Decimal("1.0")) 1.0 >>> decimal_encoder(Decimal("1")) 1 """ if dec_value.as_tuple().exponent >= 0: # type: ignore[operator] return int(dec_value) else: return float(dec_value)
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 21:56:59 UTC 2024 - 10.8K bytes - Viewed (0)