- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 66 for coas (0.04 sec)
-
src/main/resources/fess_config.properties
# Allowed origins for CORS. api.cors.allow.origin=* # Allowed HTTP methods for CORS. api.cors.allow.methods=GET, POST, OPTIONS, DELETE, PUT # Max age for CORS preflight requests. api.cors.max.age=3600 # Allowed headers for CORS. api.cors.allow.headers=Origin, Content-Type, Accept, Authorization, X-Requested-With # Whether to allow credentials for CORS. api.cors.allow.credentials=true
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractFutureState.java
*/ Waiter(boolean unused) {} Waiter() { // avoid volatile write, write is made visible by subsequent CAS on waitersField field putThread(this, Thread.currentThread()); } // non-volatile write to the next field. Should be made visible by a subsequent CAS on // waitersField. void setNext(@Nullable Waiter next) { putNext(this, next); } void unpark() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 34.8K bytes - Viewed (0) -
src/main/resources/esclient.xml
"http://dbflute.org/meta/lastadi10.dtd"> <components> <component name="searchEngineClient" class="org.codelibs.fess.opensearch.client.SearchEngineClient"> <property name="settings"> {"http.cors.enabled":"true", "http.cors.allow-origin":"*", "discovery.type":"single-node", "cluster.allocator.existing_shards_allocator.batch_enabled":"true", <!-- "node.name":"search_engine",
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Nov 06 13:45:02 UTC 2024 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
*/ public static CrawlerStatsHelper getCrawlerStatsHelper() { return getComponent(CRAWLER_STATS_HELPER); } /** * Gets the CORS handler factory component. * @return The CORS handler factory. */ public static CorsHandlerFactory getCorsHandlerFactory() { return getComponent(CORS_HANDLER_FACTORY); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/cors/DefaultCorsHandlerTest.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.cors; import org.codelibs.fess.unit.UnitFessTestCase; public class DefaultCorsHandlerTest extends UnitFessTestCase { @Override public void setUp() throws Exception { super.setUp(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 1.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/SourceSinkTester.java
@NullUnmarked public class SourceSinkTester<S, T, F extends SourceSinkFactory<S, T>> extends TestCase { static final String LOREM_IPSUM = "Lorem ipsum dolor sit amet, consectetur adipiscing " + "elit. Cras fringilla elit ac ipsum adipiscing vulputate. Maecenas in lorem nulla, ac " + "sollicitudin quam. Praesent neque elit, sodales quis vestibulum vel, pellentesque nec "
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 4.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/CorsFilterTest.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.filter; import java.io.IOException; import org.codelibs.fess.cors.CorsHandler; import org.codelibs.fess.cors.CorsHandlerFactory; import org.codelibs.fess.unit.UnitFessTestCase; import org.codelibs.fess.util.ComponentUtil; import jakarta.servlet.FilterChain; import jakarta.servlet.ServletException;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.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.cors; import jakarta.servlet.ServletRequest; import jakarta.servlet.ServletResponse; import org.codelibs.fess.unit.UnitFessTestCase; public class CorsHandlerFactoryTest extends UnitFessTestCase {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlTest.java
assertNotNull(Curl.delete("http://localhost:8080/delete")); assertNotNull(Curl.head("https://cdn.example.com/assets/file.js")); assertNotNull(Curl.options("http://cors.example.com/api")); assertNotNull(Curl.connect("http://proxy.example.com:3128")); } @Test public void test_HttpMethodEnumValues() {
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 8.8K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java
// throwables or completion values. newFuture.setFuture(oldFuture); } else if (outputFuture.isCancelled() && taskExecutor.trySetCancelled()) { // If this CAS succeeds, we know that the provided callable will never be invoked, // so when oldFuture completes it is safe to allow the next submitted task to
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 23 15:26:56 UTC 2025 - 22.1K bytes - Viewed (0)