Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Schack (0.13 sec)

  1. 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
  2. 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
  3. 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
  4. 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
  5. 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.xml
    Sat Sep 21 05:37:26 UTC 2024
      1000 bytes
  6. daterangepicker.js

    moment(options.minDate); L185: L186: if (typeof options.maxDate === 'object') L187: this.maxDate = moment(options.maxDate); L188: L189: // sanity check for bad options L190: if (this.minDate && this.startDate.isBefore(this.minDate)) L191: this.startDate = this.minDate.clone(); L192: L193: // sanity check for bad options L194: if (this.maxDate && this.endDate.isAfter(this.maxDate)) L195: this.endDate = this.maxDate.clone(); L196: L197: ...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Sat Oct 26 01:49:09 UTC 2024
      64.8K bytes
  7. bootstrap.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
      639.3K bytes
  8. adminlte.min.js

    eturn e},onUnCheck:function(e){return e}},Lt=function(){function e(e,t){this._config=t,this._element=e,this._init()}var t=e.prototype;return t.toggle=function(e){e.parents("li").toggleClass(Ft),n.default(e).prop("checked")?this.check(e):this.unCheck(n.default(e))},t.check=function(e){this._config.onCheck.call(e)},t.unCheck=function(e){this._config.onUnCheck.call(e)},t._init=function(){var e=this,t=this._element;t.find("input:checkbox:checked").parents("li").toggleClass(Ft),t.on("change","input:c...
    github.com/codelibs/fess/src/main/webapp/js/adm...
    Sat Oct 26 01:49:09 UTC 2024
      45.3K bytes
  9. OpenIdConnectAuthenticatorTest.java

    // Execute L37: authenticator.parseJwtClaim(jwtClaim, attributes); L38: L39: // Verify L40: assertEquals("1234567890", attributes.get("sub")); L41: assertEquals("John Doe", attributes.get("name")); L42: L43: // Check groups array L44: final String[] groups = DocumentUtil.getValue(attributes, "groups", String[].class); L45: assertArrayEquals(new String[] { "group1", "group2" }, groups); L46: L47: OpenIdConnectCredential credential = new Ope...
    github.com/codelibs/fess/src/test/java/org/code...
    Fri Oct 11 21:11:58 UTC 2024
      2K bytes
  10. codeql.yml

    repository. L3:# L4:# You may wish to alter this file to override the set of languages analyzed, L5:# or to provide custom queries or build logic. L6:# L7:# ******** NOTE ******** L8:# We have attempted to detect the languages in your repository. Please check L9:# the `language` matrix defined below to confirm you have the correct set of L10:# supported CodeQL languages. L11:# L12:name: "CodeQL" L13: L14:on: L15: push: L16: branches: [ "master" ] L17: pull_request: L18: branches: [ "master" ] L19:...
    github.com/codelibs/fess/.github/workflows/code...
    Wed Aug 14 23:51:19 UTC 2024
      4.4K bytes
Back to top