Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for cjson (0.13 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setWebApiJson(final boolean value) {
            setSystemPropertyAsBoolean(Constants.WEB_API_JSON_PROPERTY, value);
        }
    
        default boolean isWebApiJson() {
            return getSystemPropertyAsBoolean(Constants.WEB_API_JSON_PROPERTY, true);
        }
    
        default boolean isWebApiGsa() {
            return getSystemPropertyAsBoolean(Constants.WEB_API_GSA_PROPERTY, false);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            final String indexConfigFile = getResourcePath(indexConfigPath, fesenType, "/" + index + ".json");
            try {
                final String source = readIndexSetting(fesenType, indexConfigFile, numberOfShards, autoExpandReplicas);
                final CreateIndexResponse indexResponse = client.admin().indices().prepareCreate(indexName).setSource(source, XContentType.JSON)
                        .execute().actionGet(fessConfig.getIndexIndicesTimeout());
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.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.api.json;
    
    import static org.codelibs.core.stream.StreamUtil.stream;
    
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.io.StringWriter;
    import java.net.URLDecoder;
    import java.text.SimpleDateFormat;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K bytes
    - Viewed (0)
Back to top