Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Schack (0.03 sec)

  1. 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
  2. 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
  3. 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
  4. 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