- Sort Score
- Result 10 results
- Languages All
Results 311 - 320 of 5,979 for zile (0.04 sec)
-
src/main/java/org/codelibs/core/io/CopyUtil.java
// from File to File // /** * Copies from a file to a file. * * @param in the input file (must not be {@literal null}) * @param out the output file (must not be {@literal null}) * @return the number of bytes copied */ public static int copy(final File in, final File out) { assertArgumentNotNull("in", in);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 45.2K bytes - Viewed (0) -
docs/tr/docs/tutorial/query-params.md
Fakat, Python tipleri ile tanımlandıkları zaman (yukarıdaki örnekte `int` oldukları gibi), parametreler o tiplere dönüştürülür ve o tipler çerçevesinde doğrulanırlar. Yol parametreleri için geçerli olan her türlü işlem aynı şekilde sorgu parametreleri için de geçerlidir: * Editör desteği (şüphesiz) * Veri "<abbr title="HTTP isteği ile birlikte gelen string'i Python verisine dönüştürme">ayrıştırma</abbr>"
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:29:01 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/FileNotifyInformation.java
/** * File has been modified */ int FILE_ACTION_MODIFIED = 0x00000003; /** * File has been renamed (old name) */ int FILE_ACTION_RENAMED_OLD_NAME = 0x00000004; /** * File has been renamed (new name) */ int FILE_ACTION_RENAMED_NEW_NAME = 0x00000005; /** * File stream has been added */ int FILE_ACTION_ADDED_STREAM = 0x00000006;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
public void test_generate_parent_directory_not_exists() throws Exception { final File tempDir = new File(System.getProperty("java.io.tmpdir")); final File nonExistentParent = new File(tempDir, "non_existent_" + System.currentTimeMillis()); final File outputFile = new File(nonExistentParent, "output.txt"); try { assertFalse(nonExistentParent.exists());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryCreator.java
* * @param pattern the regular expression pattern to match file paths */ protected DictionaryCreator(final String pattern) { this.pattern = Pattern.compile(pattern); } /** * Creates a dictionary file for the given path and timestamp if it matches this creator's pattern. * * @param path the file path to create a dictionary file for * @param timestamp the timestamp of the dictionary file
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java
import org.lastaflute.web.response.JsonResponse; import jakarta.annotation.Resource; /** * API action for admin file authentication management. * Provides RESTful API endpoints for managing file authentication settings in the Fess search engine. * File authentication settings define access credentials and permissions for file-based crawling. * */ public class ApiAdminFileauthAction extends FessApiAdminAction {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/path/DefaultPathTranslator.java
public String alignToBaseDirectory(String path, File basedir) { if (basedir == null) { return path; } if (path == null) { return null; } String s = stripBasedirToken(path); File file = new File(s); if (file.isAbsolute()) { // path was already absolute, just normalize file separator and we're done s = file.getPath();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/jcifs/tests/persistent/PersistentHandleManagerTest.java
public void testCompleteReconnectSuccess() { HandleGuid guid = manager.requestDurableHandle("/test/file.txt", HandleType.DURABLE_V2, 120000, null); HandleInfo info = manager.getHandleForReconnect("/test/file.txt"); assertTrue(info.isReconnecting()); manager.completeReconnect("/test/file.txt", true); info = manager.getHandleByGuid(guid); assertNotNull(info);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 6.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/FileBackedOutputStreamTest.java
import static java.lang.Math.min; import static java.nio.file.attribute.PosixFilePermission.OWNER_READ; import static java.nio.file.attribute.PosixFilePermission.OWNER_WRITE; import static org.junit.Assert.assertThrows; import java.io.File; import java.io.IOException; import java.io.OutputStream; import java.nio.file.attribute.PosixFileAttributeView; import java.nio.file.attribute.PosixFileAttributes; import java.util.Arrays;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 5.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/ResourceUtilTest.java
final URL url = new File("/Program File").toURI().toURL(); assertEquals("file:" + getRoot() + "Program File", ResourceUtil.toExternalForm(url)); } /** * @throws Exception */ public void testGetFileName() throws Exception { URL url = new File("/Program File").toURI().toURL(); assertEquals(getRoot() + "Program File", ResourceUtil.getFileName(url));
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.3K bytes - Viewed (0)