Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 67 of 67 for vfsfile (0.07 seconds)

  1. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateFixedIssuesInReleaseNotes.kt

            }
            return Gson().fromJson(response.body(), GitHubIssueSearchResult::class.java).items
        }
    
        private
        fun updateReleaseNotes(issuesList: String) {
            val notesFile = releaseNotes.asFile.get()
            val content = notesFile.readText()
            val newSection = "$FIXED_ISSUES_INTRO\n\n$issuesList\n"
    
            val newContent = if (content.contains(FIXED_ISSUES_INTRO)) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 14:49:33 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

                        logger.debug("generator path: {}", s);
                    }
                    return s;
                }).allMatch(s -> {
                    final boolean found = new File(s).isFile();
                    if (found && logger.isDebugEnabled()) {
                        logger.debug("Generator command found: {}", s);
                    }
                    return found;
                });
            } else {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 13.4K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                final File noImageFile = new File(outputFile.getAbsolutePath() + NOIMAGE_FILE_SUFFIX);
                final Path noImagePath = noImageFile.toPath();
                if (!noImageFile.isFile() || systemHelper.getCurrentTimeAsLong() - noImageFile.lastModified() > noImageExpired) {
                    try {
                        Files.deleteIfExists(noImagePath);
                    } catch (final IOException e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 01 12:47:47 GMT 2026
    - 27.2K bytes
    - Click Count (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

        }
        config = configFile("checkstyle.xml")
        val projectDirectory = layout.projectDirectory
        configDirectory = rules.elements.map {
            projectDirectory.dir(it.single().asFile.absolutePath).dir("checkstyle")
        }
    }
    
    plugins.withType<GroovyBasePlugin> {
        the<SourceSetContainer>().all {
            tasks.register<Checkstyle>(getTaskName("checkstyle", "groovy")) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Mar 11 22:47:14 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  5. okhttp/build.gradle.kts

      options.compilerArgs.addAll(
        listOf(
          "--patch-module",
          "$moduleName=${compileKotlinTask.destinationDirectory.get().asFile}",
        ),
      )
    
      // Use the classpath of the compileKotlinJvm task.
      // Also, ensure that the module path is used instead of the classpath.
      classpath = compileKotlinTask.libraries
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Feb 04 22:16:39 GMT 2026
    - 11.4K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                            logger.warn("Failed to delete output file: {}", outputFile.getAbsolutePath(), e);
                        }
                        return false;
                    }
    
                    if (outputFile.isFile() && outputFile.length() == 0) {
                        logger.warn("Thumbnail file is empty: id={}", thumbnailId);
                        try {
                            if (Files.deleteIfExists(outputPath2)) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 01 12:47:47 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/helper/ViewHelper.java

         */
        private boolean existsPage(final String path) {
            final String realPath = LaServletContextUtil.getServletContext().getRealPath(path);
            final File file = new File(realPath);
            return file.isFile();
        }
    
        /**
         * Creates cached content with highlighting for a document.
         * Uses Handlebars templates to render the cached content.
         *
         * @param doc the document data map
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 52.6K bytes
    - Click Count (0)
Back to Top