Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 181 - 190 of 200 for svar (0.01 seconds)

  1. src/main/java/org/codelibs/fess/FessBoot.java

        private static final String FESS_TEMP_PATH = "fess.temp.path";
    
        /** System property key for Fess variable directory path */
        private static final String FESS_VAR_PATH = "fess.var.path";
    
        /** System property key for Fess web application path */
        private static final String FESS_WEBAPP_PATH = "fess.webapp.path";
    
        /** System property key for Java temporary directory */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 11.3K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig_edit.jsp

                                                       styleClass="form-control">
                                                <c:forEach var="l" varStatus="s" items="${labelTypeItems}">
                                                    <la:option value="${f:u(l.id)}">${f:h(l.name)}</la:option>
                                                </c:forEach>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 15.9K bytes
    - Click Count (0)
  3. .teamcity/mvnw

    if [ -z "$MAVEN_SKIP_RC" ] ; then
    
      if [ -f /etc/mavenrc ] ; then
        . /etc/mavenrc
      fi
    
      if [ -f "$HOME/.mavenrc" ] ; then
        . "$HOME/.mavenrc"
      fi
    
    fi
    
    # OS specific support.  $var _must_ be set to either true or false.
    cygwin=false;
    darwin=false;
    mingw=false
    case "`uname`" in
      CYGWIN*) cygwin=true ;;
      MINGW*) mingw=true;;
      Darwin*) darwin=true
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 9.8K bytes
    - Click Count (0)
  4. src/main/webapp/WEB-INF/orig/view/index.jsp

    							</div>
    						</div>
    						<c:if test="${!empty popularWords}">
    							<div class="clearfix">
    								<p class="text-truncate">
    									<la:message key="labels.search_popular_word_word" />
    									<c:forEach var="item" varStatus="s" items="${popularWords}">
    										<c:if test="${s.index < 3}">
    											<la:link
    												href="/search?q=${f:u(item)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(item)}</la:link>
    										</c:if>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 7.3K bytes
    - Click Count (1)
  5. src/main/webapp/WEB-INF/orig/view/advance.jsp

    						key="labels.index_lang"
    					/></label>
    				<div class="col-lg-5 col-md-8 col-sm-7 col-6">
    					<la:select property="lang" styleId="langSearchOption" multiple="true" styleClass="form-control">
    						<c:forEach var="item" items="${langItems}">
    							<la:option value="${f:u(item.value)}">${f:h(item.label)}</la:option>
    						</c:forEach>
    					</la:select>
    				</div>
    			</div>
    			<c:if test="${displayLabelTypeItems}">
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  6. src/main/webapp/WEB-INF/view/admin/fileconfig/admin_fileconfig_edit.jsp

                                                       styleClass="form-control">
                                                <c:forEach var="l" varStatus="s" items="${labelTypeItems}">
                                                    <la:option value="${f:u(l.id)}">${f:h(l.name)}</la:option>
                                                </c:forEach>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

            value = "${test.dir}";
            assertEquals("c:\\test1\\test2", ResourceUtil.resolve(value));
    
        }
    
        @Test
        public void test_getAppType() {
            // Test default empty when no env var is set
            String originalAppType = System.getenv("FESS_APP_TYPE");
    
            // Since we can't modify environment variables directly,
            // we test the current behavior
    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)
  8. src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java

        }
    
        @Test
        public void test_getLoginCredential_withRequest() {
            // With a request context, should return ActionResponseCredential for OAuth redirect
            final var credential = authenticator.getLoginCredential();
            assertNotNull(credential);
            assertTrue(credential instanceof ActionResponseCredential);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 11K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

                }
                final File file = filePath.toFile();
                final String canonicalPath = file.getCanonicalPath();
                final String[] allowedPathProperties = { "fess.var.path", "fess.webapp.path", "fess.conf.path" };
                boolean isAllowed = false;
                final List<String> allowedPaths = new ArrayList<>();
                for (final String prop : allowedPathProperties) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 13:57:12 GMT 2026
    - 10.9K bytes
    - Click Count (0)
  10. src/test/resources/thumbnail/test_generate_thumbnail.sh

        echo -e "${GREEN}PASSED${NC}"
        ((TESTS_PASSED++))
    else
        echo -e "${RED}FAILED${NC}"
        ((TESTS_FAILED++))
    fi
    
    echo -n "Testing: Mac root HOME check... "
    if grep -q 'x"$HOME" = "x/var/root"' "${GENERATE_THUMBNAIL}"; then
        echo -e "${GREEN}PASSED${NC}"
        ((TESTS_PASSED++))
    else
        echo -e "${RED}FAILED${NC}"
        ((TESTS_FAILED++))
    fi
    
    echo ""
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 04 08:02:36 GMT 2025
    - 7.9K bytes
    - Click Count (0)
Back to Top