Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for resolveDfs (0.09 seconds)

  1. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

            if ("en".equals(language)) {
                return StringUtil.EMPTY;
            }
            return "IMPORTANT: You MUST respond in " + locale.getDisplayLanguage(Locale.ENGLISH) + ".";
        }
    
        /**
         * Resolves the {{languageInstruction}} placeholder in a prompt.
         *
         * @param prompt the prompt template
         * @return the prompt with language instruction resolved
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/chat/ChatClient.java

                        System.currentTimeMillis() - startTime);
            }
            return new ChatSearchResult(new ArrayList<>(), null, 0L);
        }
    
        /**
         * Resolves the context path from the current request, or empty string if unavailable.
         *
         * @return the context path
         */
        protected String resolveContextPath() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/reflect/TypeToken.java

       */
      public final <X> TypeToken<T> where(TypeParameter<X> typeParam, Class<X> typeArg) {
        return where(typeParam, of(typeArg));
      }
    
      /**
       * Resolves the given {@code type} against the type context represented by this type. For example:
       *
       * {@snippet :
       * new TypeToken<List<String>>() {}.resolveType(
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jan 29 22:14:05 GMT 2026
    - 53.8K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            final FessXpathTransformer transformer = new FessXpathTransformer();
            // Valid base URL with malformed relative: java.net.URL is lenient, resolves anyway
            final String value = transformer.normalizeCanonicalUrl("http://example.com/", "://");
            // java.net.URL(base, "://") prepends protocol, result may vary
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 62.9K bytes
    - Click Count (0)
  5. docs/changelogs/changelog_3x.md

        selection was less efficient when differentiating failures.
     *  New: `Response.peekBody()` lets you access the response body without
        consuming it. This may be handy for interceptors!
     *  New: `HttpUrl.newBuilder()` resolves a link to a builder.
     *  New: Add the TLS version to the `Handshake`.
     *  New: Drop `Request.uri()` and `Request#urlString()`. Just use
        `Request.url().uri()` and `Request.url().toString()`.
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Click Count (0)
Back to Top