- Sort Score
- Result 10 results
- Languages All
Results 631 - 640 of 812 for platin (0.06 sec)
-
CHANGELOG/CHANGELOG-1.21.md
- When a CNI plugin returns dual-stack pod IPs, kubelet will now try to respect the "primary IP family" of the cluster by picking a primary pod IP of the same family as the (primary) node IP, rather than assuming that the CNI plugin returned the IPs in the order the administrator wanted (since some CNI plugins don't allow
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Fri Oct 14 07:03:14 UTC 2022 - 367.3K bytes - Viewed (0) -
guava/src/com/google/common/base/Verify.java
* considered "compiled comments." * <li>An explicit {@code if/throw} (as illustrated below) is always acceptable; we still * recommend using our {@link VerifyException} exception type. Throwing a plain {@link * RuntimeException} is frowned upon. * <li>Use of {@link java.util.Objects#requireNonNull(Object)} is generally discouraged, since
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon May 17 14:07:47 UTC 2021 - 18.5K bytes - Viewed (0) -
native-image-tests/src/main/kotlin/okhttp3/RunTests.kt
} catch (cnfe: ClassNotFoundException) { println("Missing test class: $cnfe") null } } } /** * Builds a Junit Test Plan request for a fixed set of classes, or potentially a recursive package. */ fun buildRequest(selectors: List<DiscoverySelector>): LauncherDiscoveryRequest { val request: LauncherDiscoveryRequest =
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 5.3K bytes - Viewed (0) -
common-protos/k8s.io/api/storage/v1beta1/generated.proto
// they use the node-driver-registrar sidecar container, the kubelet will // automatically populate the CSINode object for the CSI driver as part of // kubelet plugin registration. // CSINode has the same name as a node. If the object is missing, it means either // there are no CSI Drivers available on the node, or the Kubelet version is low // enough that it doesn't create this object.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 24.9K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Verify.java
* considered "compiled comments." * <li>An explicit {@code if/throw} (as illustrated below) is always acceptable; we still * recommend using our {@link VerifyException} exception type. Throwing a plain {@link * RuntimeException} is frowned upon. * <li>Use of {@link java.util.Objects#requireNonNull(Object)} is generally discouraged, since
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon May 17 14:07:47 UTC 2021 - 18.5K bytes - Viewed (0) -
src/bytes/bytes_test.go
func BenchmarkIndexRuneASCII(b *testing.B) { benchBytes(b, indexSizes, bmIndexRuneASCII(IndexRune)) } func BenchmarkIndexRuneUnicode(b *testing.B) { b.Run("Latin", func(b *testing.B) { // Latin is mostly 1, 2, 3 byte runes. benchBytes(b, indexSizes, bmIndexRuneUnicode(unicode.Latin, 'é')) }) b.Run("Cyrillic", func(b *testing.B) { // Cyrillic is mostly 2 and 3 byte runes.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Aug 19 19:09:04 UTC 2024 - 61.2K bytes - Viewed (0) -
src/bufio/scan.go
// We avoid dependency on the unicode package, but check validity of the implementation // in the tests. func isSpace(r rune) bool { if r <= '\u00FF' { // Obvious ASCII ones: \t through \r plus space. Plus two Latin-1 oddballs. switch r { case ' ', '\t', '\n', '\v', '\f', '\r': return true case '\u0085', '\u00A0': return true } return false } // High-valued ones.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Oct 23 09:06:30 UTC 2023 - 14.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java
// Mirrors List<Mirror> getMirrors(); MavenExecutionRequest setMirrors(List<Mirror> mirrors); MavenExecutionRequest addMirror(Mirror mirror); // Plugin groups List<String> getPluginGroups(); MavenExecutionRequest setPluginGroups(List<String> pluginGroups); MavenExecutionRequest addPluginGroup(String pluginGroup);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 18.4K bytes - Viewed (0) -
build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt
val xmlApis = "xml-apis:xml-apis" // Compile only dependencies (dynamically downloaded if needed) val maven3Compat = "org.apache.maven:maven-compat" val maven3PluginApi = "org.apache.maven:maven-plugin-api" val zinc = "org.scala-sbt:zinc_2.13" // Test classpath only libraries val aircompressor = "io.airlift:aircompressor" val archunit = "com.tngtech.archunit:archunit"
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 29 08:06:17 UTC 2024 - 15.5K bytes - Viewed (0) -
guava/src/com/google/common/base/StandardSystemProperty.java
* * @deprecated This property was <a * href="https://openjdk.java.net/jeps/220#Removed:-The-extension-mechanism">deprecated</a> in * Java 8 and removed in Java 9. We do not plan to remove this API from Guava, but if you are * using it, it is probably not doing what you want. */ @Deprecated JAVA_EXT_DIRS("java.ext.dirs"), /** Operating system name. */ OS_NAME("os.name"),
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 23 15:09:35 UTC 2023 - 5K bytes - Viewed (0)