- Sort Score
- Result 10 results
- Languages All
Results 901 - 910 of 1,339 for support (0.07 sec)
-
src/main/resources/fess_label.properties
labels.facet_is_not_found=No match labels.doc_score=Score: labels.development_mode_warning=Running as Development mode. For production use, please install a standalone OpenSearch server. labels.eol_error=Your system is out of support. See EOL page. labels.tooltip_search_view=Search View labels.tooltip_run_crawler=Run Crawler labels.tooltip_forum=Forum labels.tooltip_onlinehelp=Help labels.tooltip_logout=Logout labels.advance=Advance
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/Streams.java
@SafeVarargs public static <T extends @Nullable Object> Stream<T> concat(Stream<? extends T>... streams) { // TODO(lowasser): consider an implementation that can support SUBSIZED boolean isParallel = false; int characteristics = Spliterator.ORDERED | Spliterator.SIZED | Spliterator.NONNULL; long estimatedSize = 0L;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 14:20:11 UTC 2024 - 36.8K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/EventListenerTest.kt
Request.Builder() .url(server.url("/")) .build(), ) val response = call.execute() if (expectedProtocol == Protocol.HTTP_2) { // soft failure since client may not support depending on Platform Assume.assumeThat(response, matchesProtocol(Protocol.HTTP_2)) } assertThat(response.protocol).isEqualTo(expectedProtocol) assertFailsWith<IOException> {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 10:30:28 UTC 2024 - 56.9K bytes - Viewed (2) -
guava-tests/test/com/google/common/collect/IteratorsTest.java
super(5, MODIFIABLE, newArrayList(1, 2), IteratorTester.KnownOrder.KNOWN_ORDER); } } private static Iterator<Integer> iterateOver(int... values) { // Note: Ints.asList's iterator does not support remove which we need for testing. return new ArrayList<>(Ints.asList(values)).iterator(); } public void testElementsEqual() { Iterable<?> a; Iterable<?> b; // Base case.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 54.1K bytes - Viewed (0) -
docs/debugging/xl-meta/main.go
fmt.Printf("Attempting to combine version %q.\n", out) m, err := readAndMap(files, 1, 0) if err != nil { return err } if m.blocks > 0 { // TODO: Support multiple blocks. For now use -xver. return fmt.Errorf("multiple blocks found, only one block supported. Try with -xver") } lastValid := 0 missing := 0 for i := range m.filled { if m.filled[i] == 1 { lastValid = i } else { missing++
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 05 11:57:44 UTC 2024 - 40.3K bytes - Viewed (0) -
guava/src/com/google/common/base/CharMatcher.java
* two separate characters. {@link #countIn} counts each supplementary character as 2 {@code char}s. * * <p>For up-to-date Unicode character properties (digit, letter, etc.) and support for * supplementary code points, use ICU4J UCharacter and UnicodeSet (freeze() after building). For * basic text processing based on UnicodeSet use the ICU4J UnicodeSetSpanner. * * <p>Example usages: * * <pre>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 53.9K bytes - Viewed (0) -
src/cmd/cgo/gcc.go
} } // for the last entry, we cannot use 0, otherwise // in case all __cgodebug_data is zero initialized, // LLVM-based gcc will place the it in the __DATA.__common // zero-filled section (our debug/macho doesn't support // this) fmt.Fprintf(&b, "\t1\n") fmt.Fprintf(&b, "};\n") // do the same work for floats. fmt.Fprintf(&b, "double __cgodebug_floats[] = {\n") for _, n := range names { if n.Kind == "fconst" {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Sep 18 15:07:34 UTC 2024 - 97.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
* URLs that represent workgroups, servers, shares, or directories require a trailing slash '/'. * </td></tr> * * <tr><td width="20%"> * <code>smb1://MYGROUP/?SERVER=192.168.10.15</code></td><td> * SMB URLs support some query string parameters. In this example * the <code>SERVER</code> parameter is used to override the * server name service lookup to contact the server 192.168.10.15 * (presumably known to be a master
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0) -
guava/src/com/google/common/cache/CacheBuilder.java
* @since 12.0 */ @GwtIncompatible // To be supported public static CacheBuilder<Object, Object> from(String spec) { return from(CacheBuilderSpec.parse(spec)); } /** * Enables lenient parsing. Useful for tests and spec parsing. * * @return this {@code CacheBuilder} instance (for chaining) */ @GwtIncompatible // To be supported @CanIgnoreReturnValue
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 51.6K bytes - Viewed (0) -
cmd/object-api-utils.go
// significant special handling for consistency across all // applications. // // Rejects strings with following characters. // // - Backslash ("\") // // additionally minio does not support object names with trailing SlashSeparator. func IsValidObjectName(object string) bool { if len(object) == 0 { return false } if HasSuffix(object, SlashSeparator) { return false }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 08 15:29:58 UTC 2024 - 37.1K bytes - Viewed (0)