- Sort Score
- Result 10 results
- Languages All
Results 541 - 550 of 615 for sata (0.07 sec)
-
MoreFiles.java
though NTFS L467: * will drop the {@code ":.txt"} part of the name when the file is actually created on the L468: * filesystem due to NTFS's <a L469: * href="https://learn.microsoft.com/en-us/archive/blogs/askcore/alternate-data-streams-in-ntfs">Alternate L470: * Data Streams</a>. L471: */ L472: public static String getFileExtension(Path path) { L473: Path name = path.getFileName(); L474: L475: // null for empty paths and root-only paths L476: if (name == null) { L477: return...github.com/google/guava/android/guava/src/com/g...Thu Oct 31 16:07:00 UTC 2024 35K bytes -
MoreFiles.java
though NTFS L455: * will drop the {@code ":.txt"} part of the name when the file is actually created on the L456: * filesystem due to NTFS's <a L457: * href="https://learn.microsoft.com/en-us/archive/blogs/askcore/alternate-data-streams-in-ntfs">Alternate L458: * Data Streams</a>. L459: */ L460: public static String getFileExtension(Path path) { L461: Path name = path.getFileName(); L462: L463: // null for empty paths and root-only paths L464: if (name == null) { L465: return...github.com/google/guava/guava/src/com/google/co...Thu Oct 31 16:07:00 UTC 2024 34.5K bytes -
CHANGELOG-1.21.md
of kubelet when cri_stats_provider is used. ([#96873](https://github.com/kubernetes/kubernetes/pull/96873), [@ruiwen-zhao](https://github.com/ruiwen-zhao)) [SIG Node] L1946:- All data is no longer automatically deleted when a failure is detected during creation of the volume data file on a CSI volume. Now only the data file and volume path is removed. ([#96021](https://github.com/kubernetes/kubernetes/pull/96021), [@huffmanca](https://github.com/huffmanca)) L1947:- Clean ReplicaSet by revision instead...github.com/kubernetes/kubernetes/CHANGELOG/CHAN...Fri Oct 14 07:03:14 UTC 2022 367.3K bytes -
ImmutableSortedMap.java
L353: L354: /** L355: * Returns an immutable map containing the same entries as {@code map}, sorted by the natural L356: * ordering of the keys. L357: * L358: * <p>Despite the method name, this method attempts to avoid actually copying the data when it is L359: * safe to do so. The exact circumstances under which a copy will or will not be performed are L360: * undocumented and subject to change. L361: * L362: * <p>This method is not type-safe, as it may be called on a map with keys...github.com/google/guava/guava/src/com/google/co...Wed Oct 30 16:15:19 UTC 2024 50.4K bytes -
EventListener.kt
received over the network. It is an error to access the body of L312: * this response. L313: */ L314: open fun responseHeadersEnd( L315: call: Call, L316: response: Response, L317: ) { L318: } L319: L320: /** L321: * Invoked when data from the response body is first available to the application. L322: * L323: * This is typically invoked immediately before bytes are returned to the application. If the L324: * response body is empty this is invoked immediately before returning...github.com/square/okhttp/okhttp/src/main/kotlin...Mon Jan 08 01:13:22 UTC 2024 15.2K bytes -
Graph.java
s.DoNotMock; L21:import java.util.Collection; L22:import java.util.Set; L23:import javax.annotation.CheckForNull; L24: L25:/** L26: * An interface for <a L27: * href="https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)">graph</a>-structured data, L28: * whose edges are anonymous entities with no identity or information of their own. L29: * L30: * <p>A graph is composed of a set of nodes and a set of edges connecting pairs of nodes. L31: * L32: * <p>There are three primary interfaces provided...github.com/google/guava/android/guava/src/com/g...Thu Oct 10 15:41:27 UTC 2024 13.7K bytes -
Graph.java
s.DoNotMock; L21:import java.util.Collection; L22:import java.util.Set; L23:import javax.annotation.CheckForNull; L24: L25:/** L26: * An interface for <a L27: * href="https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)">graph</a>-structured data, L28: * whose edges are anonymous entities with no identity or information of their own. L29: * L30: * <p>A graph is composed of a set of nodes and a set of edges connecting pairs of nodes. L31: * L32: * <p>There are three primary interfaces provided...github.com/google/guava/guava/src/com/google/co...Thu Oct 10 15:41:27 UTC 2024 13.7K bytes -
Ints.java
it. For example, whether {@code list.get(0) == list.get(0)} is true for L642: * the returned list is unspecified. L643: * L644: * <p>The returned list is serializable. L645: * L646: * <p><b>Note:</b> when possible, you should represent your data as an {@link ImmutableIntArray} L647: * instead, which has an {@link ImmutableIntArray#asList asList} view. L648: * L649: * @param backingArray the array to back the list L650: * @return a list view of the array L651: */ L652: public static...github.com/google/guava/android/guava/src/com/g...Fri Oct 25 18:05:56 UTC 2024 31K bytes -
CHANGELOG-1.15.md
around core Kubernetes APIs L1010: L1011:#### CustomResourceDefinitions Pruning L1012:To enforce both data consistency and security, Kubernetes performs pruning, or the automatic removal of unknown fields in objects sent to a Kubernetes API. An "unknown" field is one that is not specified in the OpenAPI validation schema. This behavior is already in place for native resources and ensures only data structures specified by the CRD developer are persisted to etcd. It will be available as a beta feature...github.com/kubernetes/kubernetes/CHANGELOG/CHAN...Thu May 05 13:44:43 UTC 2022 278.9K bytes -
Multimaps.java
stream.defaultWriteObject(); L281: stream.writeObject(factory); L282: stream.writeObject(backingMap()); L283: } L284: L285: @GwtIncompatible // java.io.ObjectInputStream L286: @J2ktIncompatible L287: @SuppressWarnings("unchecked") // reading data stored by writeObject L288: private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { L289: stream.defaultReadObject(); L290: factory = (Supplier<? extends Collection<V>>) requireNonNull(stream.readObject());...github.com/google/guava/android/guava/src/com/g...Wed Oct 16 21:21:17 UTC 2024 86.3K bytes