- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 614 for sata (0.01 sec)
-
.gitignore
L1:/target/ L2:/work/ L3:/bin/ L4:/mydbflute/ L5:/solr/data/ L6:/src/main/webapp/WEB-INF/classes/ L7:/src/main/webapp/WEB-INF/lib/ L8:/src/main/webapp/WEB-INF/site/ L9:/src/main/webapp/WEB-INF/plugin/* L10:!/src/main/webapp/WEB-INF/plugin/.keep L11:/src/main/webapp/WEB-INF/env/crawler/lib/ L12:/src/main/webapp/WEB-INF/env/suggest/lib/ L13:/src/main/webapp/WEB-INF/env/thumbnail/lib/ L14:/src/main/webapp/WEB-INF/thumbnails/ L15:/src/main/webapp/jar/ L16:/dbflute_fess/extlib/* L17:/dbflute_fess/log/*.log...github.com/codelibs/fess/.gitignoreThu Oct 24 01:47:10 UTC 2024 1023 bytes -
Hpack.kt
value = value ushr 7 L596: } L597: out.writeByte(value) L598: } L599: L600: @Throws(IOException::class) L601: fun writeByteString(data: ByteString) { L602: if (useCompression && Huffman.encodedLength(data) < data.size) { L603: val huffmanBuffer = Buffer() L604: Huffman.encode(data, huffmanBuffer) L605: val huffmanBytes = huffmanBuffer.readByteString() L606: writeInt(huffmanBytes.size, PREFIX_7_BITS, 0x80) L607: o...github.com/square/okhttp/okhttp/src/main/kotlin...Mon Jan 08 01:13:22 UTC 2024 22.5K bytes -
openapi-user.yaml
L236: example: ["aaa"] L237: related_contents: L238: type: array L239: items: L240: type: string L241: example: [] L242: data: L243: type: array L244: items: L245: type: object L246: properties: L247: filetype: L248: type: string L249: ...github.com/codelibs/fess/src/main/config/openap...Thu May 09 06:31:27 UTC 2024 21.6K bytes -
FileBackedOutputStreamAndroidIncompatibleTest.java
happen fast enough? L30:public class FileBackedOutputStreamAndroidIncompatibleTest extends IoTestCase { L31: L32: public void testFinalizeDeletesFile() throws Exception { L33: byte[] data = newPreFilledByteArray(100); L34: FileBackedOutputStream out = new FileBackedOutputStream(0, true); L35: L36: write(out, data, 0, 100, true); L37: final File file = out.getFile(); L38: assertEquals(100, file.length()); L39: assertTrue(file.exists()); L40: out.close(); L41: L42: // Make sure that...github.com/google/guava/guava-tests/test/com/go...Thu Jun 08 21:20:23 UTC 2023 1.7K bytes -
Case.kt
.Header L19:import okio.ByteString L20: L21:/** L22: * Representation of an individual case (set of headers and wire format). There are many cases for a L23: * single story. This class is used reflectively with Moshi to parse stories. L24: */ L25:data class Case( L26: val seqno: Int = 0, L27: val wire: ByteString? = null, L28: val headers: List<Map<String, String>>, L29:) : Cloneable { L30: val headersList: List<Header> L31: get() { L32: val result = mutableListOf<Header>() L33: ...github.com/square/okhttp/okhttp-hpacktests/src/...Sat Dec 23 10:26:25 UTC 2023 1.3K bytes -
FileBackedOutputStreamAndroidIncompatibleTest.java
happen fast enough? L30:public class FileBackedOutputStreamAndroidIncompatibleTest extends IoTestCase { L31: L32: public void testFinalizeDeletesFile() throws Exception { L33: byte[] data = newPreFilledByteArray(100); L34: FileBackedOutputStream out = new FileBackedOutputStream(0, true); L35: L36: write(out, data, 0, 100, true); L37: final File file = out.getFile(); L38: assertEquals(100, file.length()); L39: assertTrue(file.exists()); L40: out.close(); L41: L42: // Make sure that...github.com/google/guava/android/guava-tests/tes...Thu Jun 08 21:20:23 UTC 2023 1.7K bytes -
AdminPluginAction.java
logger.warn("Failed to access a plugin repository.", e); L153: } L154: RenderDataUtil.register(data, "availableArtifactItems", result); L155: }).useForm(InstallForm.class, op -> op.setup(form -> {})); L156: } L157: L158: private HtmlResponse asListHtml() { L159: return asHtml(path_AdminPlugin_AdminPluginJsp) L160: .renderWith(data -> data.register("installedArtifactItems", getAllInstalledArtifacts())).useForm(DeleteForm.class); L161: } L162: L163:...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.9K bytes -
MultiInputStreamTest.java
testReadSingle_noStackOverflow() throws IOException { L121: // https://github.com/google/guava/issues/2996 L122: // no data, just testing that there's no StackOverflowException L123: assertEquals(-1, tenMillionEmptySources().read()); L124: } L125: L126: public void testReadArray_noStackOverflow() throws IOException { L127: // https://github.com/google/guava/issues/2996 L128: // no data, just testing that there's no StackOverflowException L129: assertEquals(-1, tenMillionEmptySources().read(new...github.com/google/guava/android/guava-tests/tes...Mon Dec 04 17:37:03 UTC 2017 4.6K bytes -
FilesTest.java
UTF_16LE); L131: assertEquals(I18N, Files.toString(temp, UTF_16LE)); L132: } L133: L134: public void testWriteBytes() throws IOException { L135: File temp = createTempFile(); L136: byte[] data = newPreFilledByteArray(2000); L137: Files.write(data, temp); L138: assertTrue(Arrays.equals(data, Files.toByteArray(temp))); L139: L140: assertThrows(NullPointerException.class, () -> Files.write(null, temp)); L141: } L142: L143: public void testAppendString() throws IOException { L144:...github.com/google/guava/guava-tests/test/com/go...Tue Jul 23 14:22:54 UTC 2024 22.1K bytes -
HeldCertificate.kt
ey, privateKey) L588: return HeldCertificate(keyPair, certificate) L589: } L590: L591: private fun decodePkcs8( L592: data: ByteString, L593: keyAlgorithm: String, L594: ): PrivateKey { L595: try { L596: val keyFactory = KeyFactory.getInstance(keyAlgorithm) L597: return keyFactory.generatePrivate(PKCS8EncodedKeySpec(data.toByteArray())) L598: } catch (e: GeneralSecurityException) { L599: throw IllegalArgumentException("failed to decode private...github.com/square/okhttp/okhttp-tls/src/main/ko...Mon Jan 08 01:13:22 UTC 2024 21.6K bytes