- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 709 for failed (0.08 sec)
-
CHANGELOG-1.22.md
) L2529:- Fixed a bug due to which the controller was not populating the `lastSuccessfulTime` field added to `cronjob.status` in `batch/v1`. ([#102642](https://github.com/kubernetes/kubernetes/pull/102642), [@alaypatel07](https://github.com/alaypatel07)) L2530:- Fixed a bug that `kubectl create configmap` always returns zero exit code when failed. ([#101780](https://github.com/kubernetes/kubernetes/pull/101780), [@nak3](https://github.com/nak3)) [SIG CLI] L2531:- Fixed a bug that scheduler extenders...github.com/kubernetes/kubernetes/CHANGELOG/CHAN...Tue Dec 13 12:43:45 UTC 2022 454.1K bytes -
CHANGELOG-1.14.md
es/kubernetes/pull/73078), [@Huang-Wei](https://github.com/Huang-Wei)) L1245: L1246:### Storage L1247: L1248:- Fixed scanning of failed iSCSI targets. ([#74306](https://github.com/kubernetes/kubernetes/pull/74306), [@jsafrane](https://github.com/jsafrane)) L1249:- StorageOS volume plugin updated to fix an issue where volume mount succeeds even if request to mount via StorageOS API fails. ([#69782](https://github.com/kubernetes/kubernetes/pull/69782), [@darkowlzz](https://github.com/darkowlzz)) L1250:-...github.com/kubernetes/kubernetes/CHANGELOG/CHAN...Mon Jun 14 22:06:39 UTC 2021 271.5K bytes -
CHANGELOG-1.17.md
thub.com/kubernetes/kubernetes/pull/80883), [@liggitt](https://github.com/liggitt)) L1964:- kube-proxy: a configuration file specified via `--config` is now loaded with strict deserialization, which fails if the config file contains duplicate or unknown fields. This protects against accidentally running with config files that are malformed, mis-indented, or have typos in field names, and getting unexpected behavior. ([#82927](https://github.com/kubernetes/kubernetes/pull/82927), [@obitech](https...github.com/kubernetes/kubernetes/CHANGELOG/CHAN...Thu Jan 28 10:44:33 UTC 2021 346.2K bytes -
Files.java
L375: public static boolean equal(File file1, File file2) throws IOException { L376: checkNotNull(file1); L377: checkNotNull(file2); L378: if (file1 == file2 || file1.equals(file2)) { L379: return true; L380: } L381: L382: /* L383: * Some operating systems may return zero as the length for files denoting system-dependent L384: * entities such as devices or pipes, in which case we must fall back on comparing the bytes L385: * directly. L386: */ L387: long len1 =...github.com/google/guava/android/guava/src/com/g...Mon Jul 22 19:03:12 UTC 2024 33.1K bytes -
CHANGELOG-1.16.md
in this list response. If the list request contained label or field selectors, then the number of remaining items is unknown and the field will be left unset and omitted during serialization. If the list is complete (either because it is not chunking or because this is the last chunk), then there are no more remaining items and this field will be left unset and omitted during serialization. Servers older than v1.15 do not set this field. The intended use of the remainingItemCount is *estimating* the...github.com/kubernetes/kubernetes/CHANGELOG/CHAN...Thu Feb 11 10:00:57 UTC 2021 345.2K bytes -
CHANGELOG-1.25.md
`endPort` and this field is specified in a Network Policy, the Network Policy will be created covering only the port field (single port). ([#110868](https://github.com/kubernetes/kubernetes/pull/110868), [@rikatz](https://github.com/rikatz)) L2387:- The `metadata.clusterName` field is completely removed. This should not have any user-visible impact. ([#109602](https://github.com/kubernetes/kubernetes/pull/109602), [@lavalamp](https://github.com/lavalamp)) L2388:- The `minDomains` field in Pod Topology...github.com/kubernetes/kubernetes/CHANGELOG/CHAN...Mon May 06 09:23:20 UTC 2024 419.1K bytes -
CallTest.kt
alIpAddress:${server.port}") L4334: } L4335: L4336: @Test L4337: fun postWithFileNotFound() { L4338: val called = AtomicInteger(0) L4339: val body: RequestBody = L4340: object : RequestBody() { L4341: override fun contentType(): MediaType = "application/octet-stream".toMediaType() L4342: L4343: override fun writeTo(sink: BufferedSink) { L4344: called.incrementAndGet() L4345: throw FileNotFoundException() L4346: } L4347: } L4348: val request...github.com/square/okhttp/okhttp/src/test/java/o...Wed Apr 10 19:46:48 UTC 2024 142.5K bytes -
file.js
c.imageRatioNotAccepted;return!1},a.formUtils.addAsyncValidator({name:"dimension",validatorFunction:function(b,d,e,g,h){if(c){var i=e.get(0).files||[],j=this;e.attr("data-validation").indexOf("mime")===-1?(alert("You should validate file type being jpg, gif or png on input "+e[0].name),b(!1)):i.length>1?(alert("Validating image dimensions does not support inputs allowing multiple files"),b(!1)):0===i.length?b(!0):f(i[0],function(c){var d=!1;e.valAttr("dimension")&&(d=a.formUtils.checkImageDimension(c,e.valAttr...github.com/codelibs/fess/src/main/webapp/js/adm...Mon Jan 01 05:12:47 UTC 2018 4.6K bytes -
CHANGELOG-1.3.md
), [@uluyol](https://github.com/uluyol)) L787:* Add subPath to mount a child dir or file of a volumeMount ([#22575](https://github.com/kubernetes/kubernetes/pull/22575), [@MikaelCluseau](https://github.com/MikaelCluseau)) L788:* Handle image digests in node status and image GC ([#25088](https://github.com/kubernetes/kubernetes/pull/25088), [@ncdc](https://github.com/ncdc)) L789:* PLEG: reinspect pods that failed prior inspections ([#25077](https://github.com/kubernetes/kubernetes/pull/25077), [@...github.com/kubernetes/kubernetes/CHANGELOG/CHAN...Thu Dec 24 02:28:26 UTC 2020 84K bytes -
LocalCache.java
write operations performed by other threads are noticed. For most L1886: * purposes, the "count" field, tracking the number of elements, serves as that volatile L1887: * variable ensuring visibility. This is convenient because this field needs to be read in many L1888: * read operations anyway: L1889: * L1890: * - All (unsynchronized) read operations must first read the "count" field, and should not look L1891: * at table entries if it is 0. L1892: * L1893: * - All (synchronized)...github.com/google/guava/guava/src/com/google/co...Fri Oct 18 19:07:49 UTC 2024 149.2K bytes