- Sort Score
- Num 10 results
- Language All
Results 121 - 130 of 1,065 for fileOps (0.06 seconds)
-
.gitattributes
* text eol=lf # # The above will handle all files NOT found below # https://help.github.com/articles/dealing-with-line-endings/ # https://github.com/Danimoth/gitattributes # These are explicitly windows files and should use crlf *.bat text eol=crlf # These files are text and should be normalized (Convert crlf => lf) *.bash text eol=lf *.css text diff=css *.htm text diff=html
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Sep 02 12:15:16 GMT 2020 - 1.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
*/ protected final long expiry; /** * Count of processed files. */ protected long count; /** * Maximum number of files to purge in a single operation. */ protected final int maxPurgeSize; /** * List of files marked for deletion. */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 27K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FileModelSource.java
Path relatedPom = getPath().getParent().resolve(relPath); if (Files.isDirectory(relatedPom)) { // TODO figure out how to reuse ModelLocator.locatePom(File) here relatedPom = relatedPom.resolve("pom.xml"); } if (Files.isRegularFile(relatedPom) && Files.isReadable(relatedPom)) { return new FileModelSource(relatedPom.normalize()); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Apr 14 13:42:17 GMT 2025 - 2.8K bytes - Click Count (0) -
.gitignore
coverage.xml .netlify test.db log.txt Pipfile.lock env3.* env docs_build site_build venv docs.zip archive.zip # vim temporary files *~ .*.sw? .cache # macOS .DS_Store # Ignore while the setup still depends on requirements.txt files uv.lock
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Thu Dec 18 13:24:09 GMT 2025 - 354 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/log/AdminLogAction.java
} catch (final IOException e) { throw new IORuntimeException(e); } logFileItems.add(map); }); } catch (final Exception e) { throw new FessSystemException("Failed to access log files.", e); } }
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java
* Removes thumbnail files that have exceeded the configured expiration time. * * @return a string containing the execution result with the number of deleted files or error message */ public String execute() { try { final long count = ComponentUtil.getThumbnailManager().purge(getExpiry()); return "Deleted " + count + " thumbnail files."; } catch (final Exception e) {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.6K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/PomInlinerTransformer.java
if ("pom".equals(artifact.getExtension()) && artifact.getClassifier().isEmpty()) { try { Path tmpPom = Files.createTempFile("pom-inliner-", ".xml"); String originalPom = Files.readString(artifact.getPath()); String interpolatedPom = interpolator.interpolate( originalPom, property -> {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 20:01:00 GMT 2025 - 5.8K bytes - Click Count (0) -
src/main/java/jcifs/internal/dtyp/ACE.java
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 5.6K bytes - Click Count (0) -
tests/test_tutorial/test_request_forms_and_files/test_tutorial001.py
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Dec 27 18:19:10 GMT 2025 - 7.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/TransformedArtifact.java
String result; ModelSource src = sourcePathProvider.get(); if (src == null) { Files.deleteIfExists(target); result = null; } else if (!Files.exists(src.getPath())) { Files.deleteIfExists(target); result = ""; } else { String current = ChecksumAlgorithmHelper.calculate(Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Nov 06 18:32:25 GMT 2025 - 4.8K bytes - Click Count (0)