Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 18 for 3650 (0.01 seconds)

  1. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                                   value="${f:h(dayForCleanup)}" class="form-control"
                                                   min="-1" max="3650">
                                            <la:message key="labels.day"/>
                                        </div>
                                    </div>
                                    <div class="form-group row">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 83.1K bytes
    - Click Count (0)
  2. .github/workflows/cleanup-stale-performance-data.yml

                DELETE FROM testExecution WHERE startTime < NOW() - INTERVAL 365 DAY;
                SELECT "results.testExecution count:" as database_table, COUNT(*) as stale_records FROM testExecution WHERE startTime < NOW() - INTERVAL 365 DAY;
                USE cross_build_results;
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Mar 24 22:05:21 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/helper/JobHelperTest.java

                assertTrue(true);
            }
        }
    
        @Test
        public void test_setMonitorInterval() {
            jobHelper.setMonitorInterval(3600);
            assertEquals(3600, jobHelper.monitorInterval);
    
            jobHelper.setMonitorInterval(1800);
            assertEquals(1800, jobHelper.monitorInterval);
        }
    
        @Test
        public void test_getJobRuntime_null() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 6.5K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProviderTest.java

                public String getCookieDefaultPath() {
                    return "/test/path";
                }
    
                @Override
                public Integer getCookieDefaultExpireAsInteger() {
                    return 3600;
                }
    
                @Override
                public String getAppCipherAlgorithm() {
                    return "AES";
                }
    
                @Override
                public String getAppCipherKey() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            form.entraidReplyUrl = fessConfig.getSystemProperty("entraid.reply.url", StringUtil.EMPTY);
            form.entraidStateTtl = fessConfig.getSystemProperty("entraid.state.ttl", "3600");
            form.entraidDefaultGroups = fessConfig.getSystemProperty("entraid.default.groups", StringUtil.EMPTY);
            form.entraidDefaultRoles = fessConfig.getSystemProperty("entraid.default.roles", StringUtil.EMPTY);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 05:54:31 GMT 2026
    - 27.2K bytes
    - Click Count (0)
  6. .teamcity/performance-test-durations.json

      }, {
        "testProject" : "mediumCppMultiWithMacroIncludes",
        "linux" : 478
      }, {
        "testProject" : "mediumNative",
        "linux" : 272
      }, {
        "testProject" : "multiNative",
        "linux" : 1650
      }, {
        "testProject" : "smallCppApp",
        "linux" : 328
      }, {
        "testProject" : "smallCppMulti",
        "linux" : 345
      }, {
        "testProject" : "smallNative",
        "linux" : 315
      } ]
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 04:45:09 GMT 2026
    - 26.1K bytes
    - Click Count (0)
  7. module.xml

    	<property name="maven.snapshot.repo.url" value="https://central.sonatype.com/repository/maven-snapshots" />
    	<property name="maven.release.repo.url" value="https://maven.codelibs.org" />
    	<property name="opensearch.version" value="3.5.0" />
    
    	<target name="install.modules">
    		<mkdir dir="${target.dir}" />
    		<delete dir="${modules.dir}" />
    		<mkdir dir="${modules.dir}" />
    
    		<!-- analysis-common -->
    		<antcall target="install.module">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  8. .teamcity/pom.xml

                </plugin>
                <plugin>
                    <groupId>com.github.gantsign.maven</groupId>
                    <artifactId>ktlint-maven-plugin</artifactId>
                    <version>3.5.0</version>
                    <executions>
                        <execution>
                            <id>check</id>
                            <goals>
                                <goal>check</goal>
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 22:03:46 GMT 2026
    - 7.4K bytes
    - Click Count (2)
  9. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

                throwTooLongBoundarySizeException(contentType, boundarySize, limitSize);
            }
        }
    
        protected int getBoundaryLimitSize() {
            // one HTTP proxy tool already limits the size (e.g. 3450 bytes)
            // so specify this size for test
            return 2000; // you can override as you like it
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:48:41 GMT 2026
    - 18.9K bytes
    - Click Count (1)
  10. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java

            }
        }
    
        // Test with very large time adjustment values
        @Test
        public void test_largeTimeAdjustmentValues() {
            // Test with milliseconds in a year
            long yearInMillis = 365L * 24L * 60L * 60L * 1000L;
    
            FessConfig yearConfig = new FessConfig.SimpleImpl() {
                private static final long serialVersionUID = 1L;
    
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.8K bytes
    - Click Count (0)
Back to Top