Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Schack (0.04 sec)

  1. .github/workflows/codeql.yml

    #
    # You may wish to alter this file to override the set of languages analyzed,
    # or to provide custom queries or build logic.
    #
    # ******** NOTE ********
    # We have attempted to detect the languages in your repository. Please check
    # the `language` matrix defined below to confirm you have the correct set of
    # supported CodeQL languages.
    #
    name: "CodeQL"
    
    on:
      push:
        branches: [ "master" ]
      pull_request:
        branches: [ "master" ]
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Aug 14 23:51:19 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. dbflute.xml

    	<target name="mydbflute.check">
    		<condition property="mydbflute.exists">
    			<available file="${mydbflute.dir}" type="dir" />
    		</condition>
    	</target>
    
    	<target name="download.dbflute" depends="mydbflute.check" unless="mydbflute.exists">
    		<mkdir dir="${mydbflute.dir}" />
    		<get dest="${target.dir}/mydbflute.zip">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Sep 21 05:37:26 UTC 2024
    - 1000 bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticatorTest.java

            authenticator.parseJwtClaim(jwtClaim, attributes);
    
            // Verify
            assertEquals("1234567890", attributes.get("sub"));
            assertEquals("John Doe", attributes.get("name"));
    
            // Check groups array
            final String[] groups = DocumentUtil.getValue(attributes, "groups", String[].class);
            assertArrayEquals(new String[] { "group1", "group2" }, groups);
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top