- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 614 for sata (0.02 sec)
-
GsaConfigParserTest.java
ComponentUtil.register(new SystemHelper(), "systemHelper"); L37: } L38: L39: public void test_parse() throws IOException { L40: GsaConfigParser parser = new GsaConfigParser(); L41: try (InputStream is = ResourceUtil.getResourceAsStream("data/gsaconfig.xml")) { L42: parser.parse(new InputSource(is)); L43: } L44: parser.getWebConfig().ifPresent(c -> { L45: logger.debug(c.toString()); L46: }).orElse(() -> fail()); L47: parser.getFileConfig().ifPresent(c...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:53:18 UTC 2024 3.2K bytes -
EventSourceListener.kt
onOpen( L26: eventSource: EventSource, L27: response: Response, L28: ) { L29: } L30: L31: /** L32: * TODO description. L33: */ L34: open fun onEvent( L35: eventSource: EventSource, L36: id: String?, L37: type: String?, L38: data: String, L39: ) { L40: } L41: L42: /** L43: * TODO description. L44: * L45: * No further calls to this listener will be made. L46: */ L47: open fun onClosed(eventSource: EventSource) { L48: } L49: L50: /** L51: * Invoked when an event...github.com/square/okhttp/okhttp-sse/src/main/ko...Mon Jan 08 01:13:22 UTC 2024 1.5K bytes -
lastafluteMap.dfprop
; label ; message } L46: } L47: } L48: L49: ; isUseDefaultConfigAtGeneration = true L50: # you can override (several) default settings like this: L51: #; overrideMap = map:{ L52: # ; fess.freeGen.mail.targetDir = ./playsql/data/mail L53: #} L54: L55: # you can adjust LastaDoc contents L56: ; lastaDocContentsMap = map:{ L57: ; headerMap = map:{ L58: #; isSuppressSchemaHtmlLink = true L59: } L60: ; actionMap = map:{ L61: ;...github.com/codelibs/fess/dbflute_fess/dfprop/la...Sun May 20 08:20:11 UTC 2018 2.2K bytes -
ShadowDnsResolver.kt
org.robolectric.annotation.Implements L25:import org.robolectric.shadow.api.Shadow L26: L27:@Implements(DnsResolver::class) L28:class ShadowDnsResolver { L29: var responder: (Request) -> Unit = { L30: it.callback.onAnswer(listOf(), 0) L31: } L32: L33: data class Request( L34: val network: Network?, L35: val domain: String, L36: val nsType: Int, L37: val flags: Int, L38: val callback: DnsResolver.Callback<List<InetAddress>>, L39: ) L40: L41: @Implementation L42: fun query( L43: network:...github.com/square/okhttp/okhttp-android/src/tes...Mon Jan 22 20:07:09 UTC 2024 1.7K bytes -
FessConfig.java
configuration. e.g. 10000 */ L518: String INDEXER_DATA_MAX_DOCUMENT_CACHE_SIZE = "indexer.data.max.document.cache.size"; L519: L520: /** The key of the configuration. e.g. 1048576 */ L521: String INDEXER_DATA_MAX_DOCUMENT_REQUEST_SIZE = "indexer.data.max.document.request.size"; L522: L523: /** The key of the configuration. e.g. 100 */ L524: String INDEXER_DATA_MAX_DELETE_CACHE_SIZE = "indexer.data.max.delete.cache.size"; L525: L526: /** The key of the configuration. e.g. 10 */ L527:...github.com/codelibs/fess/src/main/java/org/code...Fri Oct 11 21:11:58 UTC 2024 468.5K bytes -
Files.java
L205: L206: /** L207: * Returns a new {@link CharSource} for reading character data from the given file using the given L208: * character set. L209: * L210: * @since 14.0 L211: */ L212: public static CharSource asCharSource(File file, Charset charset) { L213: return asByteSource(file).asCharSource(charset); L214: } L215: L216: /** L217: * Returns a new {@link CharSink} for writing character data to the given file using the given L218: * character set. The given {@code modes}...github.com/google/guava/guava/src/com/google/co...Mon Jul 22 19:03:12 UTC 2024 33.1K bytes -
LICENSE
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE L18:FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL L19:DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR L20:SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER L21:CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, L22:OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE L23:OF THIS SOFTWARE, EVEN IF ADVISED...github.com/kubernetes/kubernetes/LICENSES/third...Thu Jul 08 11:48:19 UTC 2021 1.5K bytes -
ReaderInputStream.java
InputStream} that converts characters from a {@link Reader} into bytes using an L39: * arbitrary Charset. L40: * L41: * <p>This is an alternative to copying the data to an {@code OutputStream} via a {@code Writer}, L42: * which is necessarily blocking. By implementing an {@code InputStream} it allows consumers to L43: * "pull" as much data as they can handle, which is more convenient when dealing with flow L44: * controlled, async APIs. L45: * L46: * @author Chris Nokleberg L47: */ L48:@J2ktIncompatible...github.com/google/guava/android/guava/src/com/g...Sat Oct 19 00:26:48 UTC 2024 9.3K bytes -
ReaderInputStream.java
InputStream} that converts characters from a {@link Reader} into bytes using an L39: * arbitrary Charset. L40: * L41: * <p>This is an alternative to copying the data to an {@code OutputStream} via a {@code Writer}, L42: * which is necessarily blocking. By implementing an {@code InputStream} it allows consumers to L43: * "pull" as much data as they can handle, which is more convenient when dealing with flow L44: * controlled, async APIs. L45: * L46: * @author Chris Nokleberg L47: */ L48:@J2ktIncompatible...github.com/google/guava/guava/src/com/google/co...Sat Oct 19 00:26:48 UTC 2024 9.3K bytes -
AdminBackupAction.java
map; L611: }).collect(Collectors.toList())); L612: } L613: L614: private HtmlResponse asListHtml() { L615: return asHtml(path_AdminBackup_AdminBackupJsp).useForm(UploadForm.class) L616: .renderWith(data -> RenderDataUtil.register(data, "backupItems", getBackupItems())); L617: } L618: L619: private void deleteTempFile(final File tempFile) { L620: if (tempFile != null && !tempFile.delete()) { L621: logger.warn("Failed to delete {}", tempFil...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:46 UTC 2024 28.5K bytes