Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 378 for Sath (0.01 seconds)

  1. src/main/java/org/codelibs/fess/api/BaseApiManager.java

        public BaseApiManager() {
            // Default constructor
        }
    
        /**
         * Gets the path prefix for API endpoints.
         * @return The path prefix.
         */
        public String getPathPrefix() {
            return pathPrefix;
        }
    
        /**
         * Sets the path prefix for API endpoints.
         * @param pathPrefix The path prefix to set.
         */
        public void setPathPrefix(final String pathPrefix) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.9K bytes
    - Click Count (0)
  2. .teamcity/scripts/CheckRemoteProjectRef.java

            if (args.length == 0) {
                System.err.println("Usage: java CheckRemoteProjectRef.java <propertyKey1> <propertyKey2> ...");
                System.exit(2);
            }
    
            Path propsPath = Paths.get("gradle.properties");
            if (!Files.exists(propsPath)) {
                System.err.println("gradle.properties not found at: " + propsPath.toAbsolutePath());
                System.exit(2);
            }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

                @Override
                public CurlRequest get(final String path) {
                    return createCapturingRequest(path);
                }
    
                @Override
                public CurlRequest post(final String path) {
                    return createCapturingRequest(path);
                }
    
                @Override
                public CurlRequest put(final String path) {
                    return createCapturingRequest(path);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

            @Override
            public String getRealPath(String path) {
                if (path == null) {
                    return tempDir.getAbsolutePath();
                }
                // Remove leading slash if present
                if (path.startsWith("/")) {
                    path = path.substring(1);
                }
                return new File(tempDir, path.replace("/", File.separator)).getAbsolutePath();
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 31.6K bytes
    - Click Count (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/BinaryCompatibilityHelper.groovy

                addExcludeFilter(BridgeForBytecodeUpgradeAdapterClassFilter)
    
                def mainApiChangesJsonFilePath = mainApiChangesJsonFile.path
                def projectRootDirPath = projectRootDir.asFile.path
    
                richReport = project.provider {
                    RichReport richReport = project.objects.newInstance(RichReport.class, new Object[0]);
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Dec 30 10:14:25 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  6. build-logic/buildquality/src/main/kotlin/gradlebuild.configure-ci-artifacts.gradle.kts

            testFilesCleanupService.get().addTaskReports(path, validatePluginsReports())
        }
    
        project.tasks.withType<FindBrokenInternalLinks>().configureEach {
            testFilesCleanupService.get().addTaskReports(path, findBrokenInternalLinksReports())
        }
        project.tasks.withType<DistributionTest>().configureEach {
            testFilesCleanupService.get().addTaskReports(path, distributionReports())
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 11 09:36:42 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGeneratorTest.java

        @Test
        public void test_createDirectories_nestedPath() throws Exception {
            // Test that Files.createDirectories works correctly for nested paths
            Path tempDir = Files.createTempDirectory("toctou_test");
            try {
                Path nestedPath = tempDir.resolve("level1").resolve("level2").resolve("level3");
                assertFalse(Files.exists(nestedPath));
    
                Files.createDirectories(nestedPath);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  8. .teamcity/src/main/kotlin/model/GradleSubprojectProvider.kt

        override fun getSubprojectByName(name: String) = nameToSubproject[name]
    
        private fun toSubproject(subproject: Map<String, Any>): GradleSubproject {
            val name = subproject["name"] as String
            val path = subproject["path"] as String
            val unitTests = !ignoredSubprojects.contains(name) && subproject["unitTests"] as Boolean
            val functionalTests = !ignoredSubprojects.contains(name) && subproject["functionalTests"] as Boolean
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 12 09:12:03 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/exec/ThumbnailGeneratorTest.java

            options.sessionId = "test-session";
            options.name = "test-name";
            options.propertiesPath = "/path/to/props";
            options.numOfThreads = 5;
    
            String expected = "Options [sessionId=test-session, name=test-name, propertiesPath=/path/to/props, numOfThreads=5]";
            assertEquals(expected, options.toString());
        }
    
        @Test
        public void test_initializeProbes() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.2K bytes
    - Click Count (0)
  10. src/test/resources/test_app.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components>
    	<include path="convention.xml" />
    	<include path="lastaflute.xml" />
    	
    	<!-- Register systemProperties for test environment -->
    	<component name="systemProperties" class="org.codelibs.fess.unit.TestSystemProperties" />
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Aug 19 14:09:36 GMT 2025
    - 390 bytes
    - Click Count (0)
Back to Top