- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 615 for sata (0.08 sec)
-
mvnw.cmd
L125: IF "%%A"=="wrapperUrl" SET WRAPPER_URL=%%B L126:) L127: L128:@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central L129:@REM This allows using the maven wrapper in projects that prohibit checking in binary data. L130:if exist %WRAPPER_JAR% ( L131: if "%MVNW_VERBOSE%" == "true" ( L132: echo Found %WRAPPER_JAR% L133: ) L134:) else ( L135: if not "%MVNW_REPOURL%" == "" ( L136: SET WRAPPER_URL="%MVNW_REPOURL%/org/apache/maven/wrapper/m...github.com/google/guava/mvnw.cmdMon Oct 14 22:24:15 UTC 2024 7.5K bytes -
WebSocketReader.kt
L56: val source: BufferedSource, L57: private val frameCallback: FrameCallback, L58: private val perMessageDeflate: Boolean, L59: private val noContextTakeover: Boolean, L60:) : Closeable { L61: private var closed = false L62: L63: // Stateful data about the current frame. L64: private var opcode = 0 L65: private var frameLength = 0L L66: private var isFinalFrame = false L67: private var isControlFrame = false L68: private var readingCompressedMessage = false L69: L70: private val controlFrameBuffer...github.com/square/okhttp/okhttp/src/main/kotlin...Mon Jan 08 01:13:22 UTC 2024 9.8K bytes -
HandshakeCertificates.kt
* Configures this to not authenticate the HTTPS server on to [hostname]. This makes the user L154: * vulnerable to man-in-the-middle attacks and should only be used only in private development L155: * environments and only to carry test data. L156: * L157: * The server’s TLS certificate **does not need to be signed** by a trusted certificate L158: * authority. Instead, it will trust any well-formed certificate, even if it is self-signed. L159: * This is necessary for testing...github.com/square/okhttp/okhttp-tls/src/main/ko...Mon Jan 08 01:13:22 UTC 2024 8.5K bytes -
HpackTest.kt
bytesOut.readByteString() L1124: assertThat(actual).isEqualTo(expected) L1125: } L1126: L1127: private fun intArrayToByteArray(bytes: IntArray): ByteString { L1128: val data = ByteArray(bytes.size) L1129: for (i in bytes.indices) { L1130: data[i] = bytes[i].toByte() L1131: } L1132: return ByteString.of(*data) L1133: } L1134: L1135: private fun readerHeaderTableLength(): Int { L1136: return hpackReader!!.dynamicTable.size L1137: } L1138:}...github.com/square/okhttp/okhttp/src/test/java/o...Mon Jan 08 01:13:22 UTC 2024 38.2K bytes -
FeatureSpecificTestSuiteBuilder.java
L59:@GwtIncompatible L60:public abstract class FeatureSpecificTestSuiteBuilder< L61: B extends FeatureSpecificTestSuiteBuilder<B, G>, G> { L62: @SuppressWarnings("unchecked") L63: protected B self() { L64: return (B) this; L65: } L66: L67: // Test Data L68: L69: private @Nullable G subjectGenerator; L70: // Gets run before every test. L71: private Runnable setUp; L72: // Gets run at the conclusion of every test. L73: private Runnable tearDown; L74: L75: @CanIgnoreReturnValue L76: protected...github.com/google/guava/guava-testlib/src/com/g...Wed Oct 30 16:15:19 UTC 2024 10.4K bytes -
AbstractCache.java
V> valueLoader) throws ExecutionException { L50: throw new UnsupportedOperationException(); L51: } L52: L53: /** L54: * {@inheritDoc} L55: * L56: * <p>This implementation of {@code getAllPresent} lacks any insight into the internal cache data L57: * structure, and is thus forced to return the query keys instead of the cached keys. This is only L58: * possible with an unsafe cast which requires {@code keys} to actually be of type {@code K}. L59: * L60: * @since 11.0 L61: */ L62:...github.com/google/guava/guava/src/com/google/co...Tue Jun 15 18:00:07 UTC 2021 9.1K bytes -
TreeMultimap.java
r()); L212: stream.writeObject(valueComparator()); L213: Serialization.writeMultimap(this, stream); L214: } L215: L216: @GwtIncompatible // java.io.ObjectInputStream L217: @J2ktIncompatible L218: @SuppressWarnings("unchecked") // reading data stored by writeObject L219: private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { L220: stream.defaultReadObject(); L221: keyComparator = requireNonNull((Comparator<? super K>) stream.readObject()); L222:...github.com/google/guava/guava/src/com/google/co...Sat Mar 09 00:21:17 UTC 2024 8.7K bytes -
DenseImmutableTable.java
L25:import com.google.j2objc.annotations.WeakOuter; L26:import java.util.Map; L27:import javax.annotation.CheckForNull; L28:import org.checkerframework.checker.nullness.qual.Nullable; L29: L30:/** A {@code RegularImmutableTable} optimized for dense data. */ L31:@GwtCompatible L32:@Immutable(containerOf = {"R", "C", "V"}) L33:@ElementTypesAreNonnullByDefault L34:final class DenseImmutableTable<R, C, V> extends RegularImmutableTable<R, C, V> { L35: private final ImmutableMap<R, Integer> rowKeyToIndex;...github.com/google/guava/guava/src/com/google/co...Sat Oct 19 00:05:46 UTC 2024 10.1K bytes -
ImmutableSortedMultiset.java
ImmutableSortedMultiset.of(s)} L222: * returns an {@code ImmutableSortedMultiset<Multiset<String>>} containing one element (the given L223: * multiset itself). L224: * L225: * <p>Despite the method name, this method attempts to avoid actually copying the data when it is L226: * safe to do so. The exact circumstances under which a copy will or will not be performed are L227: * undocumented and subject to change. L228: * L229: * <p>This method is not type-safe, as it may be called on elements that...github.com/google/guava/android/guava/src/com/g...Wed Oct 16 21:21:17 UTC 2024 35.4K bytes -
CHANGELOG-1.20.md
progress of shutting down. ([#98005](https://github.com/kubernetes/kubernetes/pull/98005), [@wzshiming](https://github.com/wzshiming)) [SIG Node] L1428:- We will no longer automatically delete all data when a failure is detected during creation of the volume data file on a CSI volume. Now we will only remove the data file and volume path. ([#96021](https://github.com/kubernetes/kubernetes/pull/96021), [@huffmanca](https://github.com/huffmanca)) [SIG Storage] L1429: L1430:## Dependencies L1431: L1432:###...github.com/kubernetes/kubernetes/CHANGELOG/CHAN...Wed Jan 19 21:05:45 UTC 2022 409K bytes