- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 39 for 131072 (0.04 sec)
-
CHANGELOG/CHANGELOG-1.22.md
- Updating kubelet permissions check for Windows nodes to see if process is elevated instead of checking if process owner is in Administrators group ([#111078](https://github.com/kubernetes/kubernetes/pull/111078), [@marosset](https://github.com/marosset)) [SIG Node and Windows] ## Dependencies ### Added _Nothing has changed._ ### Changed _Nothing has changed._ ### Removed
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Tue Dec 13 12:43:45 UTC 2022 - 454.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/CharsTest.java
testSortDescending(new char[] {'1'}, 0, 1, new char[] {'1'}); testSortDescending(new char[] {'1', '2'}, 0, 2, new char[] {'2', '1'}); testSortDescending(new char[] {'1', '3', '1'}, 0, 2, new char[] {'3', '1', '1'}); testSortDescending(new char[] {'1', '3', '1'}, 0, 1, new char[] {'1', '3', '1'}); testSortDescending(new char[] {'A', '1', 'B', '2'}, 1, 3, new char[] {'A', 'B', '1', '2'}); } public void testToArray() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 20:45:32 UTC 2025 - 25.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/DoublesTest.java
testSortDescending(new double[] {1}, 0, 1, new double[] {1}); testSortDescending(new double[] {1, 2}, 0, 2, new double[] {2, 1}); testSortDescending(new double[] {1, 3, 1}, 0, 2, new double[] {3, 1, 1}); testSortDescending(new double[] {1, 3, 1}, 0, 1, new double[] {1, 3, 1}); testSortDescending(new double[] {-1, -2, 1, 2}, 1, 3, new double[] {-1, 1, -2, 2}); testSortDescending(
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 20:45:32 UTC 2025 - 30.9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.33.md
- Fix Windows kube-proxy to prevent intermittent deletion of ClusterIP load balancers in HNS when internalTrafficPolicy=Local, ensuring stable service connectivity. ([#134032](https://github.com/kubernetes/kubernetes/pull/134032), [@princepereira](https://github.com/princepereira)) [SIG Network and Windows] - Fix the bug which could result in Job status updates failing with the error:
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Wed Dec 10 01:15:24 UTC 2025 - 334.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/IntsTest.java
testSortDescending(new int[] {1}, 0, 1, new int[] {1}); testSortDescending(new int[] {1, 2}, 0, 2, new int[] {2, 1}); testSortDescending(new int[] {1, 3, 1}, 0, 2, new int[] {3, 1, 1}); testSortDescending(new int[] {1, 3, 1}, 0, 1, new int[] {1, 3, 1}); testSortDescending(new int[] {-1, -2, 1, 2}, 1, 3, new int[] {-1, 1, -2, 2}); } @J2ktIncompatible @GwtIncompatible // SerializableTester
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 20:45:32 UTC 2025 - 29.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableListMultimapTest.java
builder.putAll(toPut); builder.putAll(moreToPut); ImmutableListMultimap<String, Integer> multimap = builder.build(); assertThat(multimap.get("foo")).containsExactly(1, 2, 1, 6, 7, 2).inOrder(); assertThat(multimap.get("bar")).containsExactly(4, 5, 4).inOrder(); assertEquals(9, multimap.size()); } public void testBuilderPutNullKey() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 24K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/ShortsTest.java
testSortDescending(new short[] {1}, 0, 1, new short[] {1}); testSortDescending(new short[] {1, 2}, 0, 2, new short[] {2, 1}); testSortDescending(new short[] {1, 3, 1}, 0, 2, new short[] {3, 1, 1}); testSortDescending(new short[] {1, 3, 1}, 0, 1, new short[] {1, 3, 1}); testSortDescending(new short[] {-1, -2, 1, 2}, 1, 3, new short[] {-1, 1, -2, 2}); } @J2ktIncompatible @GwtIncompatible // SerializableTester
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 11 20:45:32 UTC 2025 - 27.5K bytes - Viewed (0) -
cmd/server_test.go
[]string{ "<Contents><Key>pfx/a/1.txt</Key>", }, "Hadoop 3.3.2, aws-sdk-java/1.12.262 Linux/5.14.0-362.24.1.el9_3.x86_64 OpenJDK_64-Bit_Server_VM/11.0.22+7 java/11.0.22 scala/2.12.15 vendor/Eclipse_Adoptium cfg/retry-mode/legacy", }, { getListObjectsV2URL(s.endPoint, bucketName, "pfx/a/", "2", "", "", "/"), []string{ "<Prefix>pfx/a/</Prefix>",Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 118.1K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.23.md
- Kubeadm: fix the bug that configurable KubernetesVersion not respected during kubeadm join ([#111022](https://github.com/kubernetes/kubernetes/pull/111022), [@SataQiu](https://github.com/SataQiu)) [SIG Cluster Lifecycle] - Reduced time taken to sync proxy rules on Windows kube-proxy with kernelspace mode ([#110702](https://github.com/kubernetes/kubernetes/pull/110702), [@daschott](https://github.com/daschott)) [SIG Network and Windows]
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Tue Feb 28 21:06:52 UTC 2023 - 424.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.27.md
If streaming is not supported by the server, the reflector will revert to the previous method of obtaining data through LIST/WATCH semantics. ([#110772](https://github.com/kubernetes/kubernetes/pull/110772), [@p0lyn0mial](https://github.com/p0lyn0mial)) [SIG API Machinery]
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Wed Jul 17 07:48:22 UTC 2024 - 466.3K bytes - Viewed (2)