Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for convert_type (0.37 sec)

  1. src/main/resources/fess_indices/fess.json

              "type": "mapping",
              "mappings_path": "${fess.dictionary.path}mapping.txt"
            },
            "traditional_chinese_convert": {
              "type": "fess_traditional_chinese_convert",
              "convert_type": "t2s"
            },
            "zero_width_spaces": {
                "type":       "mapping",
                "mappings": [ "\\u200C=> "]
            },
            "removeall_filter": {
              "type": "pattern_replace",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jun 06 14:17:42 UTC 2025
    - 39.8K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/FormBody.kt

      fun encodedValue(index: Int): String = encodedValues[index]
    
      fun value(index: Int): String = encodedValue(index).percentDecode(plusIsSpace = true)
    
      override fun contentType(): MediaType = CONTENT_TYPE
    
      override fun contentLength(): Long = writeOrCountBytes(null, true)
    
      @Throws(IOException::class)
      override fun writeTo(sink: BufferedSink) {
        writeOrCountBytes(sink, false)
      }
    
      /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

          TypeToken<?> convertFromType = type.resolveType(Converter.class.getTypeParameters()[0]);
          TypeToken<?> convertToType = type.resolveType(Converter.class.getTypeParameters()[1]);
          @SuppressWarnings("unchecked") // returns default for both F and T
          T defaultConverter = (T) defaultConverter(convertFromType, convertToType);
          return defaultConverter;
        }
        if (type.getRawType().isInterface()) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            final Map<String, String> params = new HashMap<>(crawlingConfig.getConfigParameterMap(ConfigName.CONFIG));
            params.put(ExtractData.RESOURCE_NAME_KEY, getResourceName(responseData));
            params.put(ExtractData.CONTENT_TYPE, responseData.getMimeType());
            params.put(ExtractData.CONTENT_ENCODING, responseData.getCharSet());
            params.put(ExtractData.URL, responseData.getUrl());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  5. src/main/resources/fess_config.properties

    # Meta prefix for GSA queries.
    query.gsa.meta.prefix=MT_
    # Charset field for GSA index queries.
    query.gsa.index.field.charset=charset
    # Content type field for GSA index queries.
    query.gsa.index.field.content_type.=content_type
    # Maximum concurrent group results for collapse queries.
    query.collapse.max.concurrent.group.results=4
    # Inner hits name for collapse queries.
    query.collapse.inner.hits.name=similar_docs
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/HttpHeaders.java

      /** The HTTP {@code Content-Length} header field name. */
      public static final String CONTENT_LENGTH = "Content-Length";
    
      /** The HTTP {@code Content-Type} header field name. */
      public static final String CONTENT_TYPE = "Content-Type";
    
      /** The HTTP {@code Date} header field name. */
      public static final String DATE = "Date";
    
      /** The HTTP {@code Pragma} header field name. */
      public static final String PRAGMA = "Pragma";
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 27 20:37:16 UTC 2025
    - 35.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. charset */
        String QUERY_GSA_INDEX_FIELD_CHARSET = "query.gsa.index.field.charset";
    
        /** The key of the configuration. e.g. content_type */
        String QUERY_GSA_INDEX_FIELD_content_type_ = "query.gsa.index.field.content_type.";
    
        /** The key of the configuration. e.g. 4 */
        String QUERY_COLLAPSE_MAX_CONCURRENT_GROUP_RESULTS = "query.collapse.max.concurrent.group.results";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
Back to top