- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 24 for abspath (0.09 seconds)
-
src/cmd/cgo/ast.go
} if cg != nil { if strings.ContainsAny(abspath, "\r\n") { // This should have been checked when the file path was first resolved, // but we double check here just to be sure. fatalf("internal error: ParseGo: abspath contains unexpected newline character: %q", abspath) } f.Preamble += fmt.Sprintf("#line %d %q\n", sourceLine(cg), abspath) f.Preamble += commentText(cg) + "\n"Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jan 08 17:58:59 GMT 2026 - 14.4K bytes - Click Count (0) -
configure.py
else: output = subprocess.check_output(cmd, stderr=stderr) return output.decode('UTF-8').strip() def cygpath(path): """Convert path from posix to windows.""" return os.path.abspath(path).replace('\\', '/') def get_python_path(environ_cp, python_bin_path): """Get the python site package paths.""" python_paths = [] if environ_cp.get('PYTHONPATH'):Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Fri Dec 19 16:32:04 GMT 2025 - 48.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
public void test_getCssPath() { Path cssPath = ResourceUtil.getCssPath("style.css"); assertNotNull(cssPath); assertTrue(cssPath.toString().contains("css")); } @Test public void test_getJavaScriptPath() { Path jsPath = ResourceUtil.getJavaScriptPath("script.js"); assertNotNull(jsPath); assertTrue(jsPath.toString().contains("js")); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 11.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
final Path imagePath = ResourceUtil.getImagePath(themeName); closeQuietly(imagePath); final Path cssPath = ResourceUtil.getCssPath(themeName); closeQuietly(cssPath); final Path jsPath = ResourceUtil.getJavaScriptPath(themeName); closeQuietly(jsPath); } /** * Extracts the theme name from the artifact name. * * @param artifact the theme artifact
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 7.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java
} @Test public void test_getVirtualHostBasePath() { String basePath = virtualHostHelper.getVirtualHostBasePath("site1", new HtmlNext("/test")); assertEquals("/site1", basePath); basePath = virtualHostHelper.getVirtualHostBasePath("", new HtmlNext("/test")); assertEquals("", basePath); basePath = virtualHostHelper.getVirtualHostBasePath(null, new HtmlNext("/test"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.8K bytes - Click Count (0) -
build-logic/src/main/kotlin/BndBuildAction.kt
builder.setProperty("project.buildpath", validClasspath.asPath) builder.setClasspath(validClasspath.files.toTypedArray()) val validSourcepath = sourcepath.filter { it.exists() } builder.setProperty("project.sourcepath", validSourcepath.asPath) builder.setSourcepath(validSourcepath.files.toTypedArray()) val builtJar = builder.build()
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Feb 05 09:17:33 GMT 2026 - 8.9K bytes - Click Count (0) -
build-logic-settings/version-catalogs/src/main/kotlin/gradlebuild.version-catalogs.settings.gradle.kts
layout.rootDirectory } val basePath = root.dir("gradle").dir("dependency-management") versionCatalogs { create("libs") { from(files(basePath.file("distribution.versions.toml"))) } create("providedLibs") { from(files(basePath.file("provided.versions.toml"))) } create("testLibs") { from(files(basePath.file("test.versions.toml"))) }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 09:06:26 GMT 2026 - 1.6K 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();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) -
build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/Builders.kt
import java.io.Serializable class ProjectScope( private val basePath: String, private val settings: Settings, ) { private val structure = settings.extensions.getByType(ProjectStructure::class.java) fun subproject(projectName: String) { settings.include(projectName) val projectDir = settings.rootDir.resolve("$basePath/$projectName") structure.projectBaseDirs.add(projectDir)
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 15:37:56 GMT 2026 - 3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/api/WebApiManagerTest.java
} // Test implementation classes private static class TestWebApiManager implements WebApiManager { private final String basePath; private boolean processCalled = false; public TestWebApiManager(String basePath) { this.basePath = basePath; } @Override public boolean matches(HttpServletRequest request) { if (request == null) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 26.9K bytes - Click Count (0)