- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 151 for Mittler (0.17 sec)
-
scripts/gitter_releases_bot.py
import inspect import os import requests room_id = "5c9c9540d73408ce4fbc1403" # FastAPI # room_id = "5cc46398d73408ce4fbed233" # Gitter development gitter_token = os.getenv("GITTER_TOKEN") assert gitter_token github_token = os.getenv("GITHUB_TOKEN") assert github_token tag_name = os.getenv("TAG") assert tag_name def get_github_graphql(tag_name: str): github_graphql = """ {
Python - Registered: 2023-10-15 07:19 - Last Modified: 2020-08-03 17:28 - 1.7K bytes - Viewed (0) -
docs/en/docs/css/custom.css
/* \00A0 is a non-breaking space to make the mark be on the same line as the link */ content: "\00A0↪"; } .shadow { box-shadow: 5px 5px 10px #999; } /* Give space to lower icons so Gitter chat doesn't get on top of them */ .md-footer-meta { padding-bottom: 2em; } .user-list { display: flex; flex-wrap: wrap; margin-bottom: 2rem; } .user-list-center {
CSS - Registered: 2023-12-03 07:19 - Last Modified: 2023-08-25 19:10 - 2.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/LittleEndianDataOutputStreamTest.java
private LittleEndianDataOutputStream out = new LittleEndianDataOutputStream(baos); public void testWriteLittleEndian() throws IOException { /* Write out various test values in LITTLE ENDIAN FORMAT */ out.write(new byte[] {-100, 100}); out.writeBoolean(true); out.writeBoolean(false); out.writeByte(100); out.writeByte(-100); out.writeByte((byte) 200); out.writeChar('a');
Java - Registered: 2023-11-24 12:43 - Last Modified: 2017-12-04 17:37 - 4.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
`That WAS a narrow escape!' said Alice, a good deal frightened at the sudden change, but very glad to find herself still in existence; `and now for the garden!' and she ran with all speed back to the little door: but, alas! the little door was shut again, and the little golden key was lying on the glass table as before, `and things are worse than ever,' thought the poor child, `for I never was so small as this before, never! And I declare
Plain Text - Registered: 2023-12-01 12:43 - Last Modified: 2017-04-21 02:27 - 145.2K bytes - Viewed (0) -
android/guava/src/com/google/common/io/LittleEndianDataInputStream.java
return b1; } /** * Reads an unsigned {@code short} as specified by {@link DataInputStream#readUnsignedShort()}, * except using little-endian byte order. * * @return the next two bytes of the input stream, interpreted as an unsigned 16-bit integer in * little-endian byte order * @throws IOException if an I/O error occurs */ @CanIgnoreReturnValue // to skip some bytes @Override
Java - Registered: 2023-12-01 12:43 - Last Modified: 2023-05-17 14:35 - 7.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
`That WAS a narrow escape!' said Alice, a good deal frightened at the sudden change, but very glad to find herself still in existence; `and now for the garden!' and she ran with all speed back to the little door: but, alas! the little door was shut again, and the little golden key was lying on the glass table as before, `and things are worse than ever,' thought the poor child, `for I never was so small as this before, never! And I declare
Plain Text - Registered: 2023-11-24 12:43 - Last Modified: 2012-10-29 21:35 - 145.2K bytes - Viewed (0) -
android/guava/src/com/google/common/io/LittleEndianDataOutputStream.java
* little-endian byte order. * * @throws IOException if an I/O error occurs */ @Override public void writeChar(int v) throws IOException { writeShort(v); } /** * Writes a {@code String} as specified by {@link DataOutputStream#writeChars(String)}, except * each character is written using little-endian byte order. *
Java - Registered: 2023-12-01 12:43 - Last Modified: 2023-05-17 14:35 - 5.2K bytes - Viewed (0) -
guava/src/com/google/common/io/LittleEndianDataInputStream.java
return b1; } /** * Reads an unsigned {@code short} as specified by {@link DataInputStream#readUnsignedShort()}, * except using little-endian byte order. * * @return the next two bytes of the input stream, interpreted as an unsigned 16-bit integer in * little-endian byte order * @throws IOException if an I/O error occurs */ @CanIgnoreReturnValue // to skip some bytes @Override
Java - Registered: 2023-10-20 12:43 - Last Modified: 2023-05-17 14:35 - 7.3K bytes - Viewed (0) -
guava/src/com/google/common/io/LittleEndianDataOutputStream.java
* little-endian byte order. * * @throws IOException if an I/O error occurs */ @Override public void writeChar(int v) throws IOException { writeShort(v); } /** * Writes a {@code String} as specified by {@link DataOutputStream#writeChars(String)}, except * each character is written using little-endian byte order. *
Java - Registered: 2023-10-20 12:43 - Last Modified: 2023-05-17 14:35 - 5.2K bytes - Viewed (0) -
guava/src/com/google/common/hash/AbstractNonStreamingHashFunction.java
} @Override public HashCode hashInt(int input) { return hashBytes(ByteBuffer.allocate(4).order(ByteOrder.LITTLE_ENDIAN).putInt(input).array()); } @Override public HashCode hashLong(long input) { return hashBytes(ByteBuffer.allocate(8).order(ByteOrder.LITTLE_ENDIAN).putLong(input).array()); } @Override public HashCode hashUnencodedChars(CharSequence input) {
Java - Registered: 2023-10-20 12:43 - Last Modified: 2021-04-20 18:43 - 3.8K bytes - Viewed (0)