Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for corps (0.02 sec)

  1. CorsFilter.java

    org.codelibs.fess.filter; L17: L18:import java.io.IOException; L19: L20:import org.apache.logging.log4j.LogManager; L21:import org.apache.logging.log4j.Logger; L22:import org.codelibs.core.lang.StringUtil; L23:import org.codelibs.fess.cors.CorsHandler; L24:import org.codelibs.fess.cors.CorsHandlerFactory; L25:import org.codelibs.fess.util.ComponentUtil; L26: L27:import jakarta.servlet.Filter; L28:import jakarta.servlet.FilterChain; L29:import jakarta.servlet.ServletException; L30:import jakarta.servlet.ServletRequest;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      2.6K bytes
  2. fess_cors.xml

    L2:<!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN" L3: "http://dbflute.org/meta/lastadi10.dtd"> L4:<components> L5: <component name="corsHandlerFactory" class="org.codelibs.fess.cors.CorsHandlerFactory"> L6: </component> L7: L8: <component name="defaultCorsHandler" class="org.codelibs.fess.cors.DefaultCorsHandler"> L9: </component> L10: L11:</components>...
    github.com/codelibs/fess/src/main/resources/fes...
    Sun Jun 04 05:16:45 UTC 2023
      378 bytes
  3. DefaultCorsHandler.java

    an "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.cors; L17: L18:import org.codelibs.fess.mylasta.direction.FessConfig; L19:import org.codelibs.fess.util.ComponentUtil; L20: L21:import jakarta.annotation.PostConstruct; L22:import jakarta.servlet.ServletRequest; L23:import jakarta.servlet.ServletResponse;...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      2K bytes
  4. CorsHandlerFactory.java

    an "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.cors; L17: L18:import java.util.HashMap; L19:import java.util.Map; L20: L21:import org.apache.logging.log4j.LogManager; L22:import org.apache.logging.log4j.Logger; L23: L24:public class CorsHandlerFactory { L25: private static final Logger logger = ...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      1.4K bytes
  5. esclient.xml

    "-//DBFLUTE//DTD LastaDi 1.0//EN" L3: "http://dbflute.org/meta/lastadi10.dtd"> L4:<components> L5: <component name="searchEngineClient" class="org.codelibs.fess.es.client.SearchEngineClient"> L6: <property name="settings"> L7: {"http.cors.enabled":"true", L8: "http.cors.allow-origin":"*", L9: "discovery.type":"single-node", L10: "cluster.allocator.existing_shards_allocator.batch_enabled":"true", L11: <!-- L12: "node.name":"search_engine", L13: "discovery.seed_hosts":"search_engine",...
    github.com/codelibs/fess/src/main/resources/esc...
    Mon Oct 21 12:20:52 UTC 2024
      16K bytes
  6. CorsHandler.java

    an "AS IS" BASIS, L12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, L13: * either express or implied. See the License for the specific language L14: * governing permissions and limitations under the License. L15: */ L16:package org.codelibs.fess.cors; L17: L18:import jakarta.servlet.ServletRequest; L19:import jakarta.servlet.ServletResponse; L20: L21:public abstract class CorsHandler { L22: L23: protected static final String ACCESS_CONTROL_ALLOW_ORIGIN = "Access-Control-Allow-Origin"; L24: L25:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      1.4K bytes
  7. fess_config.properties

    ption.included=false L177:api.gsa.response.headers= L178:api.gsa.response.exception.included=false L179:api.dashboard.response.headers= L180:api.cors.allow.origin=* L181:api.cors.allow.methods=GET, POST, OPTIONS, DELETE, PUT L182:api.cors.max.age=3600 L183:api.cors.allow.headers=Origin, Content-Type, Accept, Authorization, X-Requested-With L184:api.cors.allow.credentials=true L185:api.jsonp.enabled=false L186:api.ping.search_engine.fields=status,timed_out L187: L188: L189:# Virtual Host: Host:fe...
    github.com/codelibs/fess/src/main/resources/fes...
    Tue Oct 01 14:13:38 UTC 2024
      30.9K bytes
  8. ComponentUtil.java

    er; L26:import org.codelibs.core.crypto.CachedCipher; L27:import org.codelibs.core.misc.DynamicProperties; L28:import org.codelibs.fess.api.WebApiManagerFactory; L29:import org.codelibs.fess.auth.AuthenticationManager; L30:import org.codelibs.fess.cors.CorsHandlerFactory; L31:import org.codelibs.fess.crawler.client.CrawlerClientCreator; L32:import org.codelibs.fess.crawler.client.CrawlerClientFactory; L33:import org.codelibs.fess.crawler.entity.EsAccessResult; L34:import org.codelibs.fess.crawle...
    github.com/codelibs/fess/src/main/java/org/code...
    Mon Jun 17 13:35:51 UTC 2024
      20.2K bytes
  9. FessConfig.java

    rs"; L270: L271: /** The key of the configuration. e.g. * */ L272: String API_CORS_ALLOW_ORIGIN = "api.cors.allow.origin"; L273: L274: /** The key of the configuration. e.g. GET, POST, OPTIONS, DELETE, PUT */ L275: String API_CORS_ALLOW_METHODS = "api.cors.allow.methods"; L276: L277: /** The key of the configuration. e.g. 3600 */ L278: String API_CORS_MAX_AGE = "api.cors.max.age"; L279: L280: /** The key of the configuration. e.g. Origin, Content-Type, Accept, Authorization,...
    github.com/codelibs/fess/src/main/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      468.5K bytes
  10. jquery-3.7.1.min.js

    n(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},ce.ajaxSettings.xhr=function(){try{return new ie.XMLHttpRequest}catch(e){}};var Yt={0:200,1223:204},Qt=ce.ajaxSettings.xhr();le.cors=!!Qt&&"withCredentials"in Qt,le.ajax=Qt=!!Qt,ce.ajaxTransport(function(i){var o,a;if(le.cors||Qt&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideM...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Sat Oct 26 01:07:52 UTC 2024
      85.5K bytes
Back to top