Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 200 for samp (0.01 seconds)

  1. src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsUserInfoBhv.java

            return facadeSelectList(createCB(cbLambda));
        }
    
        public PagingResultBean<UserInfo> selectPage(CBCall<UserInfoCB> cbLambda) {
            // #pending same?
            return (PagingResultBean<UserInfo>) facadeSelectList(createCB(cbLambda));
        }
    
        public void selectCursor(CBCall<UserInfoCB> cbLambda, EntityRowHandler<UserInfo> entityLambda) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 9.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java

            ContainerNotAvailableException exception2 = new ContainerNotAvailableException("test");
    
            // Both instances should be of the same class
            assertEquals(exception1.getClass(), exception2.getClass());
        }
    
        @Test
        public void test_componentNameWithSpecialCharacters() {
            // Test component name with special characters
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  3. src/main/webapp/js/admin/popper.min.js.map

    arr\n * @argument prop\n * @argument value\n * @returns index or -1\n */\nexport default function find(arr, check) {\n  // use native find if supported\n  if (Array.prototype.find) {\n    return arr.find(check);\n  }\n\n  // use `filter` to obtain the same behavior of `find`\n  return arr.filter(check)[0];\n}\n","import find from './find';\n\n/**\n * Return the index of the matching object\n * @method\n * @memberof Popper.Utils\n * @argument {Array} arr\n * @argument prop\n * @argument value\n * @returns...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 120.9K bytes
    - Click Count (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/BasicJavadocLexer.java

        private static final String END_HTML_COMMENT = "-->";
        private static final Map<String, String> ENTITIES = new HashMap<String, String>();
    
        static {
            ENTITIES.put("amp", "&");
            ENTITIES.put("lt", "<");
            ENTITIES.put("gt", ">");
            ENTITIES.put("quot", "\"");
            ENTITIES.put("apos", "'");
        }
    
        private final JavadocScanner scanner;
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Aug 19 15:07:24 GMT 2024
    - 7.1K bytes
    - Click Count (0)
  5. dbflute_fess/dfprop/databaseInfoMap.dfprop

            #  Additional schemas have original settings apart from the main schema.
            #  The settings are objectTypeTargetList, tableExceptList,
            #  tableTargetList, and columnExceptMap.
            #  They have the same specification as ones of the main schema.
            #  Elements of this map are as below: 
            #    o objectTypeTargetList: (NotRequired - Default 'map:{TABLE;VIEW}')
            #    o tableExceptList: (NotRequired - Default list:{})
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 7.3K bytes
    - Click Count (0)
  6. .teamcity/src/main/kotlin/common/CommonExtensions.kt

        // US region agents have name "EC2-XXX"
        doesNotContain("teamcity.agent.name", "EC2")
    }
    
    /**
     * We have some "shared" host where a Linux build agent and a Windows build agent
     * both run on the same bare metal. Some builds require exclusive access to the
     * hardware resources (e.g. performance test).
     */
    fun Requirements.requiresNotSharedHost() {
        doesNotContain("agent.host.type", "shared")
    }
    
    /**
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 13 05:03:56 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

        protected long requestInterval = 500;
    
        /**
         * Sends a list of documents to the search engine for indexing.
         * This method handles thumbnail processing, deletes old documents with the same URL,
         * and performs bulk indexing operations with proper error handling.
         *
         * @param searchEngineClient the search engine client to use for indexing
         * @param docList the list of documents to be indexed
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 26.1K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            assertEquals(1, docList.size());
            assertEquals(0, deletedDocIdList.size());
    
            deletedDocIdList.clear();
            oldDocList.add(new HashMap<>(Map.of(//
                    "_id", "001", // same id
                    "config_id", "W01", //
                    "doc_id", "1", //
                    "url", "http://test.com/001"//
            )));
            documentSizeByQuery = oldDocList.size();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 29.7K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/crawler/serializer/DataSerializerTest.java

            byte[] serialized2 = serializer.fromObjectToBinary(original);
    
            // Note: Serialized bytes may not be identical due to metadata,
            // but deserialization should produce the same result
            Object deserialized1 = serializer.fromBinaryToObject(serialized1);
            Object deserialized2 = serializer.fromBinaryToObject(serialized2);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 21.6K bytes
    - Click Count (0)
  10. dbflute_fess/dfprop/basicInfoMap.dfprop

        #    This property is a main signal for Application Behavior.
        #    Other properties (for Application Behavior) work when this is true.
        #   o libraryProjectPackageBase: (NotRequired - Default same as application's one)
        #    If application package base is different from library's one,
        #    set the property a value 'library's one'.
        #
        #; applicationBehaviorMap = map:{
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.2K bytes
    - Click Count (0)
Back to Top