- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 35 for Schack (0.1 sec)
-
adminlte.min.css.map
[class*=\"col-\"] {\n padding-right: 5px;\n padding-left: 5px;\n}\n\n.form-check {\n position: relative;\n display: block;\n padding-left: 1.25rem;\n}\n\n.form-check-input {\n position: absolute;\n margin-top: 0.3rem;\n margin-left: -1.25rem;\n}\n\n.form-check-input[disabled] ~ .form-check-label,\n.form-check-input:disabled ~ .form-check-label {\n color: #6c757d;\n}\n\n.form-check-label {\n margin-bottom: 0;\n}\n\n.form-check-inline {\n display: -ms-inline-flexbox;\n display: inline-flex;\n ...github.com/codelibs/fess/src/main/webapp/css/ad...Sat Oct 26 01:49:09 UTC 2024 3.7M bytes -
adminlte.min.css
right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-align:center;align-items:center;padding-left:...github.com/codelibs/fess/src/main/webapp/css/ad...Sat Oct 26 01:49:09 UTC 2024 1.3M bytes -
UriTypeValidatorTest.java
"http://www.foo.com/"; L27: assertTrue(UriTypeValidator.check(protocols, values)); L28: L29: protocols = new String[] { "http:" }; L30: values = "http://www.foo.com/\nhttp://www.bar.com/"; L31: assertTrue(UriTypeValidator.check(protocols, values)); L32: L33: protocols = new String[] { "http:" }; L34: values = "http://www.foo.com/ \r\nhttp://www.bar.com/"; L35: assertTrue(UriTypeValidator.check(protocols, values)); L36: L37: protocols = new String[]...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 3.2K bytes -
fe.tld
-class> L224: <function-signature>java.lang.String base64(java.lang.String)</function-signature> L225: <example> L226: ${fe:base64(value)} L227: </example> L228: </function> L229: L230: <function> L231: <description> L232: Check if a file exists. L233: </description> L234: <name>fileExists</name> L235: <function-class>org.codelibs.fess.taglib.FessFunctions</function-class> L236: <function-signature>boolean fileExists(java.lang.String)</function-signature> L237:...github.com/codelibs/fess/src/main/webapp/WEB-IN...Sat Dec 23 06:18:48 UTC 2023 10K bytes -
dbflute.xml
name="mydbflute.url" value="https://github.com/lastaflute/lastaflute-example-waterfront/archive/${branch.name}.zip" /> L7: L8: <target name="mydbflute.check"> L9: <condition property="mydbflute.exists"> L10: <available file="${mydbflute.dir}" type="dir" /> L11: </condition> L12: </target> L13: L14: <target name="download.dbflute" depends="mydbflute.check" unless="mydbflute.exists"> L15: <mkdir dir="${mydbflute.dir}" /> L16: <get dest="${target.dir}/mydbflute.zip"> L17: <url url="${mydbflute.url}"...github.com/codelibs/fess/dbflute.xmlSat Sep 21 05:37:26 UTC 2024 1000 bytes -
UriTypeValidator.java
} L36: L37: @Override L38: public boolean isValid(final String value, final ConstraintValidatorContext context) { L39: if (StringUtil.isNotBlank(value)) { L40: return check(protocols, value); L41: } L42: return true; L43: } L44: L45: protected static boolean check(final String[] protocols, final String value) { L46: final String[] paths = value.split("[\r\n]"); L47: for (final String path : paths) { L48: if (StringUtil.isNotBlank(path)...github.com/codelibs/fess/src/main/java/org/code...Mon Jun 17 13:37:12 UTC 2024 2.3K bytes -
popper.min.js.map
@memberof Popper.Utils\n * @argument {Array} 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...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 120.9K bytes -
CrawlerLogTests.java
deleteMethod("/api/admin/joblog/log/" + elem.get("id")).then().body("response.status", equalTo(0)); L195: } L196: L197: final List<Map<String, Object>> afterList = readJobLog(NAME_PREFIX); L198: assertEquals(0, afterList.size()); // check if logs are successfully deleted L199: } L200: L201: /** L202: * Test for CrawlingInfo L203: * */ L204: private void testReadCrawlingInfo() { L205: final List<Map<String, Object>> logList = readCrawlingInfo(webConfigId); L206:...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 9.1K bytes -
fess_label_en.properties
L47:labels.configId=Config ID L48:labels.configParameter=Config Parameters L49:labels.content=Content L50:labels.csvFileEncoding=CSV Encoding L51:labels.defaultLabelValue=Default Label L52:labels.designFileName=File Name L53:labels.incrementalCrawling=Check Last Modified L54:labels.errorCount=Error Count L55:labels.errorLog=Error Log L56:labels.errorName=Error Name L57:labels.expiredTime=Expired L58:labels.expires=Expired L59:labels.failureCountThreshold=Failure Count L60:labels.fileConfigName=File System...github.com/codelibs/fess/src/main/resources/fes...Fri Mar 22 11:58:34 UTC 2024 40.7K bytes -
FessActionDefTest.java
(!clazz.getName().contains(webPackageKeyword) || L51: // exclude app.web.api.admin packages L52: clazz.getName().contains(".app.web.api.admin.")) { L53: return; L54: } L55: check(srcFile, clazz, webPackageKeyword); L56: } L57: }); L58: } L59:}...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:37:57 UTC 2024 2.3K bytes