Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for 200 (0.15 sec)

  1. dbflute_fess/playsql/replace-schema.sql

        MEMBER_ID INTEGER IDENTITY NOT NULL PRIMARY KEY,
        MEMBER_NAME VARCHAR(200) NOT NULL,
        MEMBER_ACCOUNT VARCHAR(50) NOT NULL,
        MEMBER_STATUS_CODE CHAR(3) NOT NULL,
        FORMALIZED_DATETIME DATETIME,
        BIRTHDATE DATE,
        REGISTER_DATETIME DATETIME NOT NULL,
        REGISTER_USER VARCHAR(200) NOT NULL,
        UPDATE_DATETIME DATETIME NOT NULL,
        UPDATE_USER VARCHAR(200) NOT NULL,
        VERSION_NO BIGINT NOT NULL
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jul 25 06:04:16 GMT 2015
    - 449 bytes
    - Viewed (0)
  2. src/main/config/openapi/openapi-user.yaml

            - name: callback
              in: query
              description: Callback name for using JSONP
              required: false
              schema:
                type: string
          responses:
            '200':
              description: Successful operation
              content:
                application/json:
                  schema:
                    type: object
                    properties:
                      q:
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jun 19 13:30:00 GMT 2023
    - 21.6K bytes
    - Viewed (1)
  3. src/main/resources/crawler/rule.xml

    		<property name="responseProcessor">
    			<component class="org.codelibs.fess.crawler.processor.FessResponseProcessor">
    				<property name="transformer">fessXpathTransformer</property>
    				<property name="successfulHttpCodes">(int[])[200]</property>
    				<property name="notModifiedHttpCodes">(int[])[304]</property>
    			</component>
    		</property>
    		<property name="allRequired">true</property>
    		<postConstruct name="addRule">
    			<arg>"url"</arg>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Jun 04 08:42:49 GMT 2020
    - 4.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/NotificationHelper.java

                try (CurlResponse response = Curl.post(url).header("Content-Type", "application/json").body(body).execute()) {
                    if (response.getHttpStatusCode() == 200) {
                        if (logger.isDebugEnabled()) {
                            logger.debug("Sent {} to {}.", body, url);
                        }
                    } else {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/wizard/CrawlingConfigForm.java

    import org.lastaflute.web.validation.Required;
    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    public class CrawlingConfigForm {
    
        @Required
        @Size(max = 200)
        public String crawlingConfigName;
    
        @Required
        @Size(max = 1000)
        public String crawlingConfigPath;
    
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java

            sb.append(userTypeSupplier.supply().orElse("_"));
            sb.append(",").append(appTypeSupplier.supply()).append(",").append(resource.getModuleName());
            final String trace = sb.toString();
            final int columnSize = 200;
            return trace.length() > columnSize ? trace.substring(0, columnSize) : trace;
        }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    .param("wait_for_completion", Boolean.toString(waitForCompletion)).body(source).execute()) {
                if (response.getHttpStatusCode() == 200) {
                    return true;
                }
                logger.warn("Failed to reindex from {} to {}", fromIndex, toIndex);
            } catch (final IOException e) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  8. src/main/webapp/css/admin/respond.min.js

    ion(){};var d=[],e=function(){var b=!1;try{b=new a.XMLHttpRequest}catch(c){b=new a.ActiveXObject("Microsoft.XMLHTTP")}return function(){return b}}(),f=function(a,b){var c=e();c&&(c.open("GET",a,!0),c.onreadystatechange=function(){4!==c.readyState||200!==c.status&&304!==c.status||b(c.responseText)},4!==c.readyState&&c.send(null))};if(c.ajax=f,c.queue=d,c.regex={media:/@media[^\{]+\{([^\{\}]*\{[^\}\{]*\})+/gi,keyframes:/@(?:\-(?:o|moz|webkit)\-)?keyframes[^\{]+\{(?:[^\{\}]*\{[^\}\{]*\})+[^\}]*\}/g...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Oct 08 12:14:13 GMT 2015
    - 4.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            }
            if (url.startsWith("http:") || url.startsWith("https:")) {
                try (final CurlResponse response = createCurlRequest(url).execute()) {
                    if (response.getHttpStatusCode() != 200) {
                        throw new PluginException("HTTP Status " + response.getHttpStatusCode() + " : failed to get the artifact from " + url);
                    }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

                }
                accessResult.setStatus(Constants.DONE_STATUS);
                accessResultList.add(accessResult);
    
                if (accessResult.getHttpStatusCode() != 200) {
                    // invalid page
                    if (logger.isDebugEnabled()) {
                        logger.debug("Skipped. The response code is {}.", accessResult.getHttpStatusCode());
                    }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.2K bytes
    - Viewed (0)
Back to top