Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 365 for _doc (0.17 seconds)

  1. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

                    "createdTime", now, //
                    "expiredTime", now + ttl));
    
            try (CurlResponse response = ComponentUtil.getCurlHelper() //
                    .put("/" + getIndexName() + "/_doc/" + instanceId + "?refresh=true") //
                    .body(body)
                    .execute()) {
                if (response.getHttpStatusCode() != 200 && response.getHttpStatusCode() != 201) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 33.3K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/length/ReplaceValueInLength.java

    import org.gradle.api.tasks.Internal;
    
    /**
     * A transformation to replace the key in a length assertion, must be a numeric type
     * For example, change from "length":{"index._doc": 1} to "length":{"index._doc": 2}
     */
    public class ReplaceValueInLength extends ReplaceByKey {
    
        public ReplaceValueInLength(String replaceKey, NumericNode replacementNode) {
            this(replaceKey, replacementNode, null);
        }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 14:44:05 GMT 2021
    - 1.5K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/it/ITBase.java

            final String testToken = System.getProperty(TEST_TOKEN);
            if (testToken != null) {
                return;
            }
            given().contentType("application/json").delete(getEsUrl() + "/fess_config.access_token/_doc/" + DEFAULT_TEST_TOKEN_ID);
        }
    
        public static void refresh() {
            given().contentType("application/json").post(getEsUrl() + "/_refresh");
        }
    
        public static String getFessUrl() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/length/ReplaceKeyInLength.java

    import org.gradle.api.tasks.Internal;
    
    /**
     * A transformation to replace the key in a length assertion.
     * For example, change from "length":{"index._type": 1} to "length":{"index._doc": 1}
     */
    public class ReplaceKeyInLength extends ReplaceByKey {
    
        public ReplaceKeyInLength(String replaceKey, String newKeyName, String testName) {
            super(replaceKey, newKeyName, null, testName);
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.4K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/match/ReplaceKeyInMatch.java

    import org.gradle.api.tasks.Internal;
    
    /**
     * A transformation to replace the key in a match. For example, change from "match":{"index._type": "foo"} to "match":{"index._doc": "foo"}
     */
    public class ReplaceKeyInMatch extends ReplaceByKey {
    
        public ReplaceKeyInMatch(String replaceKey, String newKeyName, String testName) {
            super(replaceKey, newKeyName, null, testName);
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.4K bytes
    - Click Count (0)
  6. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/YamlRestCompatTestPluginFuncTest.groovy

                tasks.named("yamlRestTestV${compatibleVersion}CompatTransform").configure({ task ->
                  task.skipTest("test/test/two", "This is a test to skip test two")
                  task.replaceValueInMatch("_type", "_doc")
                  task.replaceValueInMatch("_source.values", ["z", "x", "y"], "one")
                  task.removeMatch("_source.blah")
                  task.removeMatch("_source.junk", "two")
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 30 16:30:48 GMT 2021
    - 16.4K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

            assertEquals("active", body.get("status"));
            assertNotNull(body.get("createdTime"));
            assertNotNull(body.get("expiredTime"));
            assertTrue(capturedPath.get().contains("/_doc/node1@host1"));
        }
    
        @Test
        public void test_tryStartOperation_documentBody() {
            setupMockFessConfig();
            final AtomicReference<String> capturedBody = new AtomicReference<>();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
  8. src/cmd/asm/doc.go

    the main variation having to do with addressing modes. Input is
    run through a simplified C preprocessor that implements #include,
    #define, #ifdef/endif, but not #if or ##.
    
    For more information, see https://golang.org/doc/asm.
    */
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue Aug 22 20:46:45 GMT 2023
    - 1.8K bytes
    - Click Count (0)
  9. src/cmd/cgo/doc.go

    not be referenced from Go code; static functions are permitted.
    
    See $GOROOT/cmd/cgo/internal/teststdio and $GOROOT/misc/cgo/gmp for examples. See
    "C? Go? Cgo!" for an introduction to using cgo:
    https://golang.org/doc/articles/c_go_cgo.html.
    
    CFLAGS, CPPFLAGS, CXXFLAGS, FFLAGS and LDFLAGS may be defined with pseudo
    #cgo directives within these comments to tweak the behavior of the C, C++
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Mon Dec 08 22:37:14 GMT 2025
    - 43.9K bytes
    - Click Count (0)
  10. src/main/resources/fess_indices/fess/doc.json

    Shinsuke Sugaya <******@****.***> 1773561175 +0900
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 11.8K bytes
    - Click Count (0)
Back to Top