- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 27 for subdirs (0.18 seconds)
-
cmd/data-scanner.go
wait() // wait to proceed to next entry. return nil }) if err != nil { return err } if foundObjects && globalIsErasure { // If we found an object in erasure mode, we skip subdirs (only datadirs)... break } // If we have many subfolders, compact ourself. shouldCompact := f.newCache.Info.Name != folder.name && len(existingFolders)+len(newFolders) >= dataScannerCompactAtFolders ||
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 45.5K bytes - Click Count (0) -
docs/es/docs/tutorial/request-files.md
# Archivos de Request { #request-files } Puedes definir archivos que serán subidos por el cliente utilizando `File`. /// info | Información Para recibir archivos subidos, primero instala <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">`python-multipart`</a>. Asegúrate de crear un [entorno virtual](../virtual-environments.md){.internal-link target=_blank}, activarlo y luego instalarlo, por ejemplo: ```consoleCreated: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Tue Dec 16 16:33:45 GMT 2025 - 7.9K bytes - Click Count (0) -
misc/ios/go_ios_exec.go
) if err != nil { return "", err } } return finalPkgpath, nil } // subdir determines the package based on the current working directory, // and returns the path to the package source relative to $GOROOT (or $GOPATH). func subdir() (pkgpath string, underGoRoot bool, err error) { cwd, err := os.Getwd() if err != nil { return "", false, err }Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue Sep 16 00:34:45 GMT 2025 - 8.7K bytes - Click Count (0) -
src/test/java/org/codelibs/core/io/FileUtilTest.java
*/ @Test public void testIsPathSafe_PathInsideBase() throws Exception { final Path baseDir = tempFolder.getRoot().toPath(); final Path subDir = Files.createDirectory(baseDir.resolve("subdir")); final Path file = Files.createFile(subDir.resolve("test.txt")); assertTrue("Path inside base should be allowed", FileUtil.isPathSafe(file, baseDir)); } /**Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 10.3K bytes - Click Count (0) -
api/maven-api-core/src/test/java/org/apache/maven/api/services/SourcesTest.java
assertEquals(path.normalize(), source.getPath()); assertEquals(path.toString(), source.getLocation()); Source resolved = source.resolve("subdir"); assertNotNull(resolved); assertEquals(path.resolve("subdir").normalize(), resolved.getPath()); } @Test void testBuildPathSourceFunctionality() { // Test build source functionalityCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 5.4K bytes - Click Count (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild.test-fixtures.gradle.kts
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Jun 24 14:00:52 GMT 2025 - 3.5K bytes - Click Count (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportParameter.kt
import org.gradle.api.provider.Property import org.gradle.workers.WorkParameters interface IncubatingApiReportParameter : WorkParameters { val repositoryRoot: DirectoryProperty val srcDirs: ConfigurableFileCollection val htmlReportFile: RegularFileProperty val textReportFile: RegularFileProperty val title: Property<String> val releasedVersionsFile: RegularFilePropertyCreated: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Jun 02 09:57:54 GMT 2025 - 1.2K bytes - Click Count (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/tasks/IncubatingApiReportTask.kt
@TaskAction fun analyze() = workerExecutor.processIsolation { classpath.from(additionalClasspath) }.submit(IncubatingApiReportWorkAction::class) { repositoryRoot = layout.settingsDirectory srcDirs.from(******@****.***s) htmlReportFile = ******@****.***portFile textReportFile = ******@****.***portFile title = ******@****.***Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Jun 02 09:57:54 GMT 2025 - 2.4K bytes - Click Count (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt
plugins.withType<IdeaPlugin> { with(model) { module { testSources.from(sourceSet.java.srcDirs, sourceSet.the<GroovySourceDirectorySet>().srcDirs) testResources.from(sourceSet.resources.srcDirs) } } } } private fun Project.bucket(name: String, description: String) = configurations.create(name) {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Aug 18 16:39:23 GMT 2025 - 12.8K bytes - Click Count (0) -
native-image-tests/build.gradle.kts
kotlin("jvm") } animalsniffer { isIgnoreFailures = true } // TODO reenable other tests // https://github.com/square/okhttp/issues/8901 //sourceSets { // test { // java.srcDirs( // "../okhttp-brotli/src/test/java", // "../okhttp-dnsoverhttps/src/test/java", // "../okhttp-logging-interceptor/src/test/java", // "../okhttp-sse/src/test/java", // ) // } //}
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Tue Jul 22 20:31:49 GMT 2025 - 904 bytes - Click Count (0)