Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 171 for located (0.03 seconds)

  1. build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GeneratorTask.kt

                require(markerPos >= 0) { "Could not locate the generated diagram in $markdownFile" }
                val endPos = content.subList(markerPos, content.size).indexOfFirst { it.contains(endDiagram) && !it.contains(startDiagram) }
                require(endPos >= 0) { "Could not locate the end of the generated diagram in $markdownFile" }
                content.subList(0, markerPos)
            } else {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/api/BaseApiManager.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.api;
    
    import java.io.IOException;
    import java.io.OutputStreamWriter;
    import java.io.PrintWriter;
    import java.util.Locale;
    
    import org.codelibs.core.exception.IORuntimeException;
    import org.codelibs.fess.Constants;
    import org.lastaflute.web.util.LaRequestUtil;
    import org.lastaflute.web.util.LaResponseUtil;
    
    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)
  3. src/test/java/org/codelibs/fess/api/WebApiRequestTest.java

            }
    
            @Override
            public void removeAttribute(String name) {
            }
    
            @Override
            public Locale getLocale() {
                return null;
            }
    
            @Override
            public Enumeration<Locale> getLocales() {
                return null;
            }
    
            @Override
            public boolean isSecure() {
                return false;
            }
    
    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)
  4. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api;
    
    import java.util.Locale;
    import java.util.stream.Collectors;
    
    import org.codelibs.fess.app.service.AccessTokenService;
    import org.codelibs.fess.app.web.api.ApiResult.ApiErrorResponse;
    import org.codelibs.fess.app.web.api.ApiResult.Status;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

            final List<Map<String, String>> itemList = new ArrayList<>();
            final Locale locale = ComponentUtil.getRequestManager().getUserLocale();
            itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.webauth_scheme_basic"), Constants.BASIC));
            itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.webauth_scheme_digest"), Constants.DIGEST));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 19.7K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.util;
    
    import java.util.Collections;
    import java.util.HashMap;
    import java.util.Locale;
    import java.util.Map;
    
    import org.codelibs.fess.entity.FacetInfo;
    import org.codelibs.fess.entity.GeoInfo;
    import org.codelibs.fess.entity.HighlightInfo;
    import org.codelibs.fess.entity.SearchRequestParams;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.7K bytes
    - Click Count (0)
  7. src/main/webapp/js/admin/admin.js

        window.navigator.userLanguage ||
        window.navigator.language ||
        window.navigator.browserLanguage
      ).substr(0, 2);
      moment.locale(lang);
      $("input.form-control.date")
        .daterangepicker({
          autoUpdateInput: false,
          timePicker: false,
          singleDatePicker: true,
          locale: {
            format: "YYYY-MM-DD"
          }
        })
        .on("apply.daterangepicker", function(ev, picker) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Aug 06 20:44:47 GMT 2018
    - 3.1K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

         *
         * @return the language instruction string, or empty string if locale is English
         */
        protected String getLanguageInstruction() {
            final Locale locale = getUserLocale();
            final String language = locale.getLanguage();
            if ("en".equals(language)) {
                return StringUtil.EMPTY;
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/crawler/helper/FessMimeTypeHelper.java

         */
        public FessMimeTypeHelper() {
            // Default constructor
        }
    
        /**
         * Initializes the extension override map by loading configuration from FessConfig.
         * The mappings are loaded from the crawler.document.mimetype.extension.overrides property,
         * where each line contains a mapping in the format ".ext=mime/type".
         */
        @PostConstruct
        public void init() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 24 09:06:33 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  10. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateInitPluginTemplateVersionFile.kt

            val matches: List<ResolvedComponentResult> = resolutionResult.allComponents.filter { it != resolutionResult.root }
            if (matches.isEmpty()) {
                throw GradleException("Could not locate any matches for $notation")
            }
            matches.forEach { dep -> dest[name] = (dep.id as ModuleComponentIdentifier).version }
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Nov 24 20:45:41 GMT 2025
    - 5K bytes
    - Click Count (0)
Back to Top