Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 841 - 850 of 1,511 for intent (0.12 seconds)

  1. src/test/java/org/codelibs/fess/query/QueryCommandTemplateMethodTest.java

            queryCommand = new TestQueryCommand();
            queryFieldConfig = ComponentUtil.getQueryFieldConfig();
    
            // Set up search fields
            String[] searchFields = { "title", "content", "url", "host", "filetype" };
            queryFieldConfig.setSearchFields(searchFields);
        }
    
        /**
         * Test isSearchField() with Set-based lookup.
         */
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  2. docs/ko/docs/advanced/stream-data.md

    ## 사용자 정의 `PNGStreamingResponse` { #a-custom-pngstreamingresponse }
    
    위 예시에서는 바이트 데이터를 스트리밍했지만, 응답에 `Content-Type` 헤더가 없어 클라이언트는 어떤 유형의 데이터를 받는지 알 수 없습니다.
    
    스트리밍하는 데이터 유형에 맞춰 `Content-Type` 헤더를 설정하는 `StreamingResponse`의 하위 클래스를 직접 만들 수 있습니다.
    
    예를 들어 `media_type` 속성을 사용해 `Content-Type` 헤더를 `image/png`로 설정하는 `PNGStreamingResponse`를 만들 수 있습니다:
    
    {* ../../docs_src/stream_data/tutorial002_py310.py ln[6,19:20] hl[20] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:56:39 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  3. docs/tr/docs/tutorial/dependencies/index.md

    Ardından bu sistem (bu örnekte **FastAPI**), kodunuza gerekli bağımlılıkları sağlamak ("inject" etmek) için gereken her şeyi sizin yerinize halleder.
    
    Bu yaklaşım, şunlara ihtiyaç duyduğunuzda özellikle faydalıdır:
    
    * Paylaşılan bir mantığa sahip olmak (aynı kod mantığını tekrar tekrar kullanmak).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 10.2K bytes
    - Click Count (0)
  4. src/main/webapp/js/index.js

      var contextPath = $("#contextPath").val();
      var BUTTON_DISABLE_DURATION = 3000;
    
      var SUGGESTOR_CONFIG = {
        ajaxinfo: {
          url: contextPath + "/api/v1/suggest-words",
          fn: ["_default", "content", "title"],
          num: 10,
          lang: $("#langSearchOption").val()
        },
        boxCssInfo: {
          border: "1px solid rgba(82, 168, 236, 0.5)",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/ingest/IngestFactoryTest.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.ingest;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class IngestFactoryTest extends UnitFessTestCase {
    
        @Test
        public void test_add_1() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  6. android/guava-tests/benchmark/com/google/common/base/StopwatchBenchmark.java

    import com.google.caliper.Benchmark;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Simple benchmark: create, start, read. This does not currently report the most useful result
     * because it's ambiguous to what extent the stopwatch benchmark is being affected by GC.
     *
     * @author Kevin Bourrillion
     */
    @NullUnmarked
    public class StopwatchBenchmark {
      @Benchmark
      long stopwatch(int reps) {
        long total = 0;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Aug 11 19:31:30 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  7. tests/test_exception_handlers.py

    def request_validation_exception_handler(request, exception):
        return JSONResponse({"exception": "request-validation"})
    
    
    def server_error_exception_handler(request, exception):
        return JSONResponse(status_code=500, content={"exception": "server-error"})
    
    
    app = FastAPI(
        exception_handlers={
            HTTPException: http_exception_handler,
            RequestValidationError: request_validation_exception_handler,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Dec 03 22:37:12 GMT 2024
    - 2.4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java

        }
    
        /**
         * Stores (creates or updates) a stemmer override item in the specified dictionary.
         *
         * If the item ID is 0, this method performs an insert operation. Otherwise,
         * it performs an update operation for the existing item.
         *
         * @param dictId The ID of the stemmer override dictionary
         * @param stemmerOvberrideItem The stemmer override item to store
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/MediaType.kt

     * limitations under the License.
     */
    package okhttp3
    
    import java.nio.charset.Charset
    
    /**
     * An [RFC 2045][rfc_2045] Media Type, appropriate to describe the content type of an HTTP request
     * or response body.
     *
     * [rfc_2045]: http://tools.ietf.org/html/rfc2045
     */
    class MediaType internal constructor(
      internal val mediaType: String,
      /**
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 5.9K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.codelibs.fess.util.DocumentUtil;
    
    /**
     * HTML tag-based thumbnail generator that creates thumbnails from image content
     * referenced in HTML documents. This generator extracts images from HTML content
     * and processes them to create thumbnail images based on configured dimensions
     * and format settings.
     *
     * <p>The generator validates image MIME types, processes image data through
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 01 12:47:47 GMT 2026
    - 10.6K bytes
    - Click Count (0)
Back to Top