Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 131 - 140 of 209 for array1 (0.03 seconds)

  1. src/main/webapp/js/clipboard.min.js

    String");if(!f.fn(n))throw new TypeError("Third argument must be a Function");if(f.node(t))return c=e,a=n,(u=t).addEventListener(c,a),{destroy:function(){u.removeEventListener(c,a)}};if(f.nodeList(t))return o=t,r=e,i=n,Array.prototype.forEach.call(o,function(t){t.addEventListener(r,i)}),{destroy:function(){Array.prototype.forEach.call(o,function(t){t.removeEventListener(r,i)})}};if(f.string(t))return t=t,e=e,n=n,l(document.body,t,e,n);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection,...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 12 06:14:02 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/util/KuromojiCSVUtil.java

        private KuromojiCSVUtil() {
        } // no instance!!!
    
        /**
         * Parse CSV line
         *
         * @param line
         *            line containing csv-encoded data
         * @return Array of values
         */
        public static String[] parse(final String line) {
            boolean insideQuote = false;
            final ArrayList<String> result = new ArrayList<>();
            int quoteCount = 0;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 3.9K bytes
    - Click Count (0)
  3. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/metadata/KotlinMetadataQueries.kt

                    metadataVersion = annotation.getMemberValue("mv")?.intArrayValue ?: IntArray(0),
                    data1 = annotation.getMemberValue("d1")?.stringArrayValue ?: arrayOf(),
                    data2 = annotation.getMemberValue("d2")?.stringArrayValue ?: arrayOf(),
                    extraString = annotation.getMemberValue("xs")?.stringValue ?: "",
                    packageName = annotation.getMemberValue("pn")?.stringValue ?: "",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jul 04 09:21:38 GMT 2025
    - 4.8K bytes
    - Click Count (0)
  4. CLAUDE.md

    - Validation: `@Required`, `@Size`, `@ValidateTypeFailure`, `@Pattern`
    - Include `crudMode` field for CRUD operations
    
    ## Security and Authentication
    
    - `@Secured` annotation with role array (`"admin-user"`, `"admin-user-view"`)
    - Role-based query filtering via `RoleQueryHelper`
    - Authentication: Local (UserService), LDAP, OIDC, SAML, SPNEGO, Entra ID
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/it/search/PopularWordsApiTests.java

            JsonPath jsonPath = JsonPath.from(response);
            assertTrue(jsonPath.getInt("record_count") >= 0);
            // data is an array of strings
            assertTrue(jsonPath.getList("data") != null);
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  6. src/main/webapp/js/chat.js

         * Set a filter value based on checked state (add if checked, remove if unchecked)
         */
        function setFilter(array, value, checked) {
            var index = array.indexOf(value);
            if (checked && index === -1) {
                array.push(value);
            } else if (!checked && index !== -1) {
                array.splice(index, 1);
            }
        }
    
        /**
         * Update badge for a specific dropdown group
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 01:36:02 GMT 2026
    - 30.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java

                    }
                }
                return defaultValue;
            }).orElse(defaultValue);
        }
    
        /**
         * Gets all configured virtual host paths.
         *
         * @return An array of virtual host paths
         */
        public String[] getVirtualHostPaths() {
            return stream(ComponentUtil.getFessConfig().getVirtualHosts())
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

            /** Ending minute of the interval */
            protected int toMinutes;
    
            /** Delay in milliseconds to apply during this interval */
            protected long delay;
    
            /** Array of days when this rule applies (1=Sunday, 7=Saturday) */
            protected int[] days;
    
            /** Flag indicating if the interval spans across midnight */
            protected boolean reverse;
    
            /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Nov 23 12:34:02 GMT 2025
    - 10K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/script/ScriptEngineTest.java

            paramMap.put("value", null);
    
            Object result = scriptEngine.evaluate(template, paramMap);
            assertEquals("Value is: null", result);
        }
    
        // Test evaluate method with array as parameter
        @Test
        public void test_evaluate_withArrayParameter() {
            String template = "Items: ${items}";
            Map<String, Object> paramMap = new HashMap<>();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/query/QueryCommandTemplateMethodTest.java

            for (int i = 0; i < fieldCount; i++) {
                fields[i] = "field" + i;
            }
            queryFieldConfig.setSearchFields(fields);
    
            // Test field at the end (worst case for array lookup, but same for Set)
            String testField = "field999";
    
            // Warm up
            for (int i = 0; i < 100; i++) {
                queryCommand.isSearchField(testField);
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.5K bytes
    - Click Count (0)
Back to Top