- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 6,298 for bile (0.04 sec)
-
compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManagerTest.java
File file = new File(localRepository.getBasedir(), localRepository.pathOf(a)); file.delete(); a.setFile(file); File touchFile = updateCheckManager.getTouchfile(a); touchFile.delete(); assertTrue(updateCheckManager.isUpdateRequired(a, remoteRepository)); file.getParentFile().mkdirs(); file.createNewFile();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.7K bytes - Viewed (0) -
ci/official/requirements_updater/README.md
### Specifying Python version The hermetic Python version is controlled by `HERMETIC_PYTHON_VERSION` environment variable, which could be setin one of the following ways: ``` # Either add an entry to your `.bazelrc` file build --repo_env=HERMETIC_PYTHON_VERSION=3.12 # OR pass it directly to your specific build command bazel build <target> --repo_env=HERMETIC_PYTHON_VERSION=3.12 # OR set the environment variable globally in your shell:
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Sat Jun 29 00:19:18 UTC 2024 - 3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
exp = "http://example.com/ใในใ .html"; assertEquals(exp, transformer.decodeUrlAsName(url, false)); url = "file://C++.doc"; exp = "file://C++.doc"; assertEquals(exp, transformer.decodeUrlAsName(url, true)); url = "file://C .doc"; exp = "file://C .doc"; assertEquals(exp, transformer.decodeUrlAsName(url, true));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/core/zip/ZipFileUtil.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache2/Relay.kt
* * **Warning:** callers to this method must immediately call [newSource] to create a source and * close that when they're done. Otherwise a handle to [file] will be leaked. */ @Throws(IOException::class) fun read(file: File): Relay { val randomAccessFile = RandomAccessFile(file, "rw") val fileOperator = FileOperator(randomAccessFile.channel) // Read the header.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 17:15:47 UTC 2025 - 11.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/IoTestCase.java
+ "[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"; private File testDir; private File tempDir; private final Set<File> filesToDelete = new HashSet<>(); @Override protected void tearDown() { for (File file : filesToDelete) { if (file.exists()) { delete(file); } } filesToDelete.clear(); } private File getTestDir() throws IOException { if (testDir != null) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/jar/JarFileUtil.java
* Creates and returns a <code>JarFile</code> to read the specified JAR file. * * @param file the file (must not be {@literal null}) * @return a <code>JarFile</code> to read the specified JAR file */ public static JarFile create(final File file) { assertArgumentNotNull("file", file); try { return new JarFile(file); } catch (final IOException e) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.9K bytes - Viewed (0) -
docs/em/docs/advanced/events.md
๐ ๐ ๐ข ๐ ๐ณ ๐ค "**๐ ๐ ๐จโ๐ผ**". {* ../../docs_src/events/tutorial003.py hl[1,13] *} **๐ ๐จโ๐ผ** ๐ ๐ณ ๐ ๐ ๐ช โ๏ธ `with` ๐, ๐ผ, `open()` ๐ช โ๏ธ ๐ ๐จโ๐ผ: ```Python with open("file.txt") as file: file.read() ``` โฎ๏ธ โฌ ๐, ๐ค **๐ ๐ ๐จโ๐ผ**. ๐ ๐ โ๏ธ โซ๏ธ โฎ๏ธ `async with`: ```Python async with lifespan(app): await do_stuff() ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 6K 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/packaging/rpm/init.d/fess
PROC_NAME=org.codelibs.fess.FessBoot FESS_USER="${packaging.fess.user}" FESS_GROUP="${packaging.fess.group}" FESS_HOME="${packaging.fess.home.dir}" PID_DIR="${packaging.fess.pid.dir}" # Source the default env file FESS_ENV_FILE="${packaging.env.file}" if [ -f "$FESS_ENV_FILE" ]; then . "$FESS_ENV_FILE" fi exec="$FESS_HOME/bin/fess" prog="fess" pidfile="$PID_DIR/${prog}.pid" export FESS_TEMP_PATH export FESS_LOG_PATH
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 3.7K bytes - Viewed (0)