- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 6,271 for FILE (0.02 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/ModelInterpolator.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CharMappingService.java
/** * Retrieves the character mapping file for the specified dictionary ID. * <p> * This method looks up the dictionary file and ensures it is a character mapping file * before returning it wrapped in an OptionalEntity. * </p> * * @param dictId the dictionary ID to retrieve the character mapping file for * @return an OptionalEntity containing the character mapping file if found and valid, empty otherwise */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/settings/MavenSettingsBuilder.java
/** * @param userSettingsFile a given user settings file * @return a <code>Settings</code> object from the user settings file. * @throws IOException if any * @throws XmlPullParserException if any */ Settings buildSettings(File userSettingsFile) throws IOException, XmlPullParserException; /** * @param userSettingsFile a given user settings file
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ProtwordsService.java
} else { file.update(protwordsItem); } }); } /** * Deletes a protected words item. * @param dictId the dictionary ID * @param protwordsItem the item to delete */ public void delete(final String dictId, final ProtwordsItem protwordsItem) { getProtwordsFile(dictId).ifPresent(file -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
*/ package org.codelibs.fess.thumbnail; import java.io.File; import java.io.IOException; import java.nio.file.FileAlreadyExistsException; import java.nio.file.FileVisitResult; import java.nio.file.FileVisitor; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.attribute.BasicFileAttributes; import java.util.ArrayList; import java.util.HashMap; import java.util.List;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymFile.java
* from its source file. */ public class SynonymFile extends DictionaryFile<SynonymItem> { private static final String SYNONYM = "synonym"; /** The list of synonym items loaded from the dictionary file. */ List<SynonymItem> synonymItemList; /** * Constructs a new synonym file. * * @param id The unique identifier for this dictionary file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.5K bytes - Viewed (0) -
src/archive/zip/testdata/test-trailing-junk.zip
test.txt This is a test text file. gophercolor16x16.png...
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Sep 08 04:08:51 UTC 2014 - 1.2K bytes - Viewed (0) -
docs/ru/docs/tutorial/request-files.md
## Определите параметры `File` Создайте параметры `File` так же, как вы это делаете для `Body` или `Form`: {* ../../docs_src/request_files/tutorial001_an_py39.py hl[9] *} /// info | Дополнительная информация `File` - это класс, который наследуется непосредственно от `Form`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 11.1K bytes - Viewed (0) -
src/packaging/deb/scripts/conffiles
${packaging.env.file} /etc/init.d/fess
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Dec 10 01:24:02 UTC 2015 - 76 bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/InputStreamUtil.java
* * @param file the file (must not be {@literal null}) * @return a {@link FileInputStream} to read from the file * @see FileInputStream#FileInputStream(File) */ public static FileInputStream create(final File file) { assertArgumentNotNull("file", file); try { return new FileInputStream(file); } catch (final IOException e) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0)