Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 131 - 140 of 359 for apatah (0.03 seconds)

  1. 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)
  2. 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)
  3. build-logic/build-update-utils/src/test/groovy/gradlebuild/buildutils/tasks/PreparePatchReleaseTest.groovy

     * limitations under the License.
     */
    
    package gradlebuild.buildutils.tasks
    
    import spock.lang.Specification
    
    class PreparePatchReleaseTest extends Specification {
    
        def "patch version is correctly bumped"() {
            expect:
            ReleasedVersionsHelperKt.bumpPatchVersion(input) == expected
    
            where:
            input   | expected
            "9.4.0" | "9.4.1"
            "9.4.1" | "9.4.2"
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 14:47:12 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  4. .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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/util/ParameterUtil.java

    /**
     * Utility class for parameter operations.
     */
    public class ParameterUtil {
        private static final String CIPHER_PREFIX = "{cipher}";
    
        /** The XPath field prefix. */
        protected static final String XPATH_PREFIX = "field.xpath.";
    
        /** The meta field prefix. */
        protected static final String META_PREFIX = "field.meta.";
    
        /** The value field prefix. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 7.5K bytes
    - Click Count (0)
  8. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

            return subProjectFolders
        }
    
        @Test
        fun allSubprojectsAreListed() {
            val knownSubprojectDirs = model.subprojects.subprojects.map { File("../", it.path) }
            subProjectFolderList().forEach {
                assertTrue(
                    it in knownSubprojectDirs,
                    "Not defined: $it",
                )
            }
        }
    
        @Test
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Oct 16 01:27:05 GMT 2025
    - 14.6K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/storage/UploadForm.java

     * This form is used in the admin API interface to upload files to the storage backend
     * with optional path specification for file organization.
     */
    public class UploadForm {
    
        /**
         * The storage path where the file should be uploaded.
         * If not specified, the file will be stored in the default location.
         */
        public String path;
    
        /**
         * The multipart file to be uploaded to the storage system.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/it/CrudTestBase.java

            Response response = checkMethodBase(body).get(getApiPath() + "/" + path);
            // logger.debug(response.asString());
            return response;
        }
    
        protected Response checkPostMethod(final Map<String, Object> body, final String path) {
            Response response = checkMethodBase(body).post(getApiPath() + "/" + path);
            // logger.debug(response.asString());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 21 13:29:45 GMT 2025
    - 9.2K bytes
    - Click Count (0)
Back to Top