- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 432 for spare (0.03 sec)
-
android/guava-tests/test/com/google/common/collect/RegularImmutableTableTest.java
private static final ImmutableSet<Integer> COLUMN_SPACE = ImmutableSet.of(1, 2); private static final SparseImmutableTable<Character, Integer, String> SPARSE = new SparseImmutableTable<>(CELLS.asList(), ROW_SPACE, COLUMN_SPACE); private static final DenseImmutableTable<Character, Integer, String> DENSE =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 6.3K bytes - Viewed (0) -
okhttp-logging-interceptor/src/test/java/okhttp3/logging/IsProbablyUtf8Test.kt
assertThat(Buffer().writeUtf8("abc").isProbablyUtf8()).isTrue() assertThat(Buffer().writeUtf8("new\r\nlines").isProbablyUtf8()).isTrue() assertThat(Buffer().writeUtf8("white\t space").isProbablyUtf8()).isTrue() assertThat(Buffer().writeByte(0x80).isProbablyUtf8()).isTrue() assertThat(Buffer().writeByte(0x00).isProbablyUtf8()).isFalse() assertThat(Buffer().writeByte(0xc0).isProbablyUtf8()).isFalse()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/TreeConnectResponse.java
/** * @return tree id */ int getTid (); /** * @return service */ String getService (); /** * @return whether the share is in DFS */ boolean isShareDfs (); /** * @return whether the tree id is a valid one */ boolean isValidTid ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
return this.sessionKey; } @Override public SmbTreeImpl getSmbTree ( String share, String service ) { if ( share == null ) { share = "IPC$"; } synchronized ( this.trees ) { for ( SmbTreeImpl t : this.trees ) { if ( t.matches(share, service) ) { return t.acquire(); } }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/HttpUrlTest.kt
// six-per-em space assertThat(parse("http://h/\u2006").encodedPath).isEqualTo("/%E2%80%86") // figure space assertThat(parse("http://h/\u2007").encodedPath).isEqualTo("/%E2%80%87") // punctuation space assertThat(parse("http://h/\u2008").encodedPath).isEqualTo("/%E2%80%88") // thin space assertThat(parse("http://h/\u2009").encodedPath).isEqualTo("/%E2%80%89") // hair space
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 67.9K bytes - Viewed (0) -
src/main/java/jcifs/DfsReferralData.java
*/ String getServer (); /** * * @return the domain this referral is for */ String getDomain (); /** * @return the share this referral points to */ String getShare (); /** * @return the number of characters from the unc path that were consumed by this referral */ int getPathConsumed ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.9K bytes - Viewed (0) -
src/packaging/deb/copyright
See the License for the specific language governing permissions and limitations under the License. . On Debian systems, the complete text of the Apache version 2.0 license
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jan 07 06:27:26 UTC 2016 - 749 bytes - Viewed (0) -
internal/disk/stat_linux.go
// Check for overflows. // https://github.com/minio/minio/issues/8035 // XFS can show wrong values at times error out // in such scenarios. if info.Free > info.Total { return info, fmt.Errorf("detected free space (%d) > total drive space (%d), fs corruption at (%s). please run 'fsck'", info.Free, info.Total, path) } info.Used = info.Total - info.Free if firstTime { bfs, err := blockdevice.NewDefaultFS() if err == nil {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Feb 26 19:34:50 UTC 2024 - 4.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionAddAllTester.java
* tests can suppress it with {@code FeatureSpecificTestSuiteBuilder.suppressing()} while we * figure out what to do with <a * href="https://github.com/openjdk/jdk/blob/c25c4896ad9ef031e3cddec493aef66ff87c48a7/src/java.base/share/classes/java/util/concurrent/ConcurrentHashMap.java#L4830">{@code * ConcurrentHashMap} support for {@code entrySet().add()}</a>. */ @J2ktIncompatible @GwtIncompatible // reflection
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 7.8K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/tflite-op-request.md
``` # Copy and paste here ``` **Standalone code to reproduce the issue** Provide a reproducible test case that is the bare minimum necessary to generate the problem. If possible, please share a link to Colab/Jupyter/any notebook. Also, please include a link to a GraphDef or the model if possible. **Any other info / logs** Include any logs or source code that would be helpful to diagnose the problem.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Jun 15 03:35:58 UTC 2022 - 879 bytes - Viewed (0)