- Sort Score
- Num 10 results
- Language All
Results 401 - 410 of 1,235 for fileOps (0.06 seconds)
-
src/test/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardActionTest.java
assertEquals("ftp://ftp.example.com/path", wizardAction.convertCrawlingPath("ftp://ftp.example.com/path")); assertEquals("ftp://192.168.1.1/files", wizardAction.convertCrawlingPath("ftp://192.168.1.1/files")); } @Test public void test_convertCrawlingPath_storage_protocol() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 9.9K bytes - Click Count (0) -
ci/official/utilities/code_check_full.bats
echo "Broken links found:" cat errors.txt rm errors.txt false fi done } @test "No duplicate files on Windows" { cat <<EOF Please rename files so there are no repeats. For example, README.md and Readme.md would be the same file on Windows. In this test, you would get a warning for "readme.md" because it makes everything lowercase. There are
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Jan 28 22:41:17 GMT 2026 - 13.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/reflect/ClassPathTest.java
private static URL makeJarUrlWithName(String name) throws IOException { /* * TODO: cpovirk - Use java.nio.file.Files.createTempDirectory instead of * c.g.c.io.Files.createTempDir? */ File fullPath = new File(Files.createTempDir(), name); File jarFile = pickAnyJarFile(); Files.copy(jarFile, fullPath); return fullPath.toURI().toURL(); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 23.1K bytes - Click Count (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionRangeResolver.java
syncContext.acquire(null, Collections.singleton(metadata)); if (metadata.getPath() != null && Files.exists(metadata.getPath())) { try (InputStream in = Files.newInputStream(metadata.getPath())) { versioning = new Versioning( new MetadataStaxReader().read(in, false).getVersioning());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Dec 16 13:41:14 GMT 2025 - 11.7K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/YamlRestCompatTestPlugin.java
yamlCompatTestSourceSet.getRuntimeClasspath() // remove the "normal" api and tests .minus(project.files(yamlTestSourceSet.getOutput().getResourcesDir())) .minus(project.files(originalYamlSpecsDir)) .minus(project.files(originalYamlTestsDir)) ); // run compatibility tests after "normal" tests
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Fri Sep 03 16:26:11 GMT 2021 - 11.7K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/package-info.java
* <ul> * <li>{@link org.apache.maven.cling.invoker.mvnup.goals.Check} - Analyzes projects and reports needed upgrades</li> * <li>{@link org.apache.maven.cling.invoker.mvnup.goals.Apply} - Applies upgrades to project files</li> * <li>{@link org.apache.maven.cling.invoker.mvnup.goals.Help} - Displays usage information</li> * </ul> * * <h3>Upgrade Strategies</h3>
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/IndexExportJob.java
final String content = formatter.format(source, excludeFields); try { final Path basePath = Paths.get(exportPath); Files.createDirectories(basePath); final Path realBase = basePath.toRealPath(); Files.createDirectories(filePath.getParent()); final Path realParent = filePath.getParent().toRealPath(); if (!realParent.startsWith(realBase)) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 10.8K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderFactoryTest.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.model.building; import java.io.File; import java.io.InputStream; import java.nio.file.Files; import java.nio.file.Paths; import org.apache.maven.api.model.Model; import org.apache.maven.model.v4.MavenStaxReader; import org.codehaus.plexus.util.xml.Xpp3Dom; import org.junit.jupiter.api.Test;
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 07:09:12 GMT 2025 - 3.7K bytes - Click Count (0) -
docs/uk/docs/advanced/json-base64-bytes.md
Якщо ваш застосунок має отримувати і надсилати дані JSON, але потрібно включати туди двійкові дані, ви можете кодувати їх як base64. ## Base64 проти файлів { #base64-vs-files } Насамперед розгляньте, чи можете ви використати [Файли запиту](../tutorial/request-files.md) для завантаження двійкових даних і [Користувацька відповідь - FileResponse](./custom-response.md#fileresponse--fileresponse-) для надсилання двійкових даних замість кодування їх у JSON.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:25:54 GMT 2026 - 3.7K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/docker/DockerSupportService.java
// Docker is unavailable when it should be. final Path osRelease = Paths.get("/etc/os-release"); if (Files.exists(osRelease)) { Map<String, String> values; try { final List<String> osReleaseLines = Files.readAllLines(osRelease); values = parseOsRelease(osReleaseLines); } catch (IOException e) {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 14.8K bytes - Click Count (0)