- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 145 for fods (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/core/io/FileUtilTest.java
// Create a file larger than MAX_BUF_SIZE (10MB) // Write 11MB of data try (FileOutputStream fos = new FileOutputStream(largeFile)) { final byte[] chunk = new byte[1024 * 1024]; // 1MB for (int i = 0; i < 11; i++) { // Write 11MB fos.write(chunk); } } try { FileUtil.readBytes(largeFile);Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 10.3K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.32.md
Similarly you can also access kubelet's `/pods` endpoint to fetch a list of Pods bound to that node by granting the caller `nodes/pods` permission in RBAC. Similarly you can also access kubelet's `/configz` endpoint to fetch kubelet's configuration by granting the caller `nodes/configz` permission in RBAC.
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Tue Dec 16 18:27:41 GMT 2025 - 448.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java
FileOutputStream fos = null; try { newFile = ComponentUtil.getSystemHelper().createTempFile(KUROMOJI, ".txt"); fos = new FileOutputStream(newFile); writer = new BufferedWriter(new OutputStreamWriter(fos, Constants.UTF_8)); fos = null; // Successfully wrapped, no need to close explicitlyCreated: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 11.7K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.22.md
consequence of this change the Kubelet now correctly takes into account the resources of running and terminating pods when deciding to accept new pods, since terminating pods are still holding on to those resources. This stricter handling may surface to end users as pod rejections when creating pods that are scheduled to mostly full nodes that have other terminating pods holding the resources the new pods need. The most likely error would be a pod set to `Failed` phase with reason set to `OutOfCpu` or `OutOfMemory`,...
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Tue Dec 13 12:43:45 GMT 2022 - 454.1K bytes - Click Count (0) -
.gitignore
/tensorflow/lite/**/ios/BUILD /tensorflow/lite/**/objc/BUILD /tensorflow/lite/**/swift/BUILD /tensorflow/lite/examples/ios/simple/data/*.tflite /tensorflow/lite/examples/ios/simple/data/*.txt Podfile.lock Pods
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Sat Nov 30 21:41:32 GMT 2024 - 945 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
FileOutputStream fos = null; try { newFile = ComponentUtil.getSystemHelper().createTempFile(SYNONYM, ".txt"); fos = new FileOutputStream(newFile); writer = new BufferedWriter(new OutputStreamWriter(fos, Constants.UTF_8)); fos = null; // Successfully wrapped, no need to close explicitlyCreated: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 15.9K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/ResponseDataUtil.java
tempFile.setReadable(true, true); tempFile.setWritable(false, false); tempFile.setWritable(true, true); try (final FileOutputStream fos = new FileOutputStream(tempFile)) { CopyUtil.copy(is, fos); } } catch (final Exception e) { FileUtil.deleteInBackground(tempFile); // clean up
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Nov 22 13:28:22 GMT 2025 - 2.3K bytes - Click Count (0) -
docs/tls/kubernetes/README.md
certificates](https://docs.min.io/community/minio-object-store/operations/network-encryption.html). For a [distributed MinIO setup](https://docs.min.io/community/minio-object-store/operations/deployments/kubernetes.html), where there are multiple pods with different domain names expected to run, you will either need wildcard certificates valid for all the domains or have specific certificates for each domain. If you are going to use specific certificates, make sure to create Kubernetes secrets accordingly....
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 3K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.12.md
- In clusters where the DryRun feature...
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Thu Feb 06 06:04:15 GMT 2020 - 293.8K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.28.md
- Fix a bug that Pods could stuck in the unschedulable pod pool if they're rejected by PreEnqueue plugins that could change its result by a change in resources apart from Pods. DRA plugin is the only plugin that meets the criteria of the bug in in-tree, and hence if you have `DynamicResourceAllocation` feature flag enabled,
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Fri Sep 05 03:47:18 GMT 2025 - 456.9K bytes - Click Count (1)