Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 78 for sambil (0.04 sec)

  1. android/guava-testlib/pom.xml

            <executions>
              <execution>
                <id>default-compile</id>
                <configuration>
                  <compilerArgs combine.children="append" combine.self="append">
                    <arg>-XDignore.symbol.file</arg>
                  </compilerArgs>
                </configuration>
              </execution>
              <execution>
                <id>compile-java9</id>
                <phase>compile</phase>
                <goals>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Mar 19 17:26:38 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  2. guava-testlib/pom.xml

            <executions>
              <execution>
                <id>default-compile</id>
                <configuration>
                  <compilerArgs combine.children="append" combine.self="append">
                    <arg>-XDignore.symbol.file</arg>
                  </compilerArgs>
                </configuration>
              </execution>
              <execution>
                <id>compile-java9</id>
                <phase>compile</phase>
                <goals>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Mar 19 17:26:38 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

            return fessConfig.getCrawlerDocumentMaxAlphanumTermSizeAsInteger();
        }
    
        /**
         * Gets the maximum size for symbol terms from configuration.
         *
         * @return the maximum symbol term size
         */
        protected int getMaxSymbolTermSize() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            // Emoji and special symbols - quotes preserved
            value = "\"🚀rocket\",\"@symbol\",\"#hashtag\"";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(3, result.length);
            assertEquals("🚀rocket", result[0]);
            assertEquals("@symbol", result[1]);
            assertEquals("\"#hashtag\"", result[2]);
        }
    
        public void test_parse_single_field() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_sso++.xml

    	</component>
    	<component name="oicAuthenticator" class="org.codelibs.fess.sso.oic.OpenIdConnectAuthenticator">
    	</component>
    	<component name="samlAuthenticator" class="org.codelibs.fess.sso.saml.SamlAuthenticator">
    	</component>
    	<component name="spnegoAuthenticator" class="org.codelibs.fess.sso.spnego.SpnegoAuthenticator">
    	</component>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 04 00:28:21 UTC 2020
    - 604 bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

        }
      }
    
      /**
       * This is like [toLowerCase] except that it does nothing if this contains any non-ASCII
       * characters. We want to avoid lower casing special chars like U+212A (Kelvin symbol) because
       * they can return ASCII characters that match real hostnames.
       */
      private fun String.asciiToLowercase(): String =
        when {
          isAscii() -> lowercase(Locale.US) // This is an ASCII string.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  7. guava/pom.xml

            <executions>
              <execution>
                <id>default-compile</id>
                <configuration>
                  <compilerArgs combine.children="append" combine.self="append">
                    <arg>-XDignore.symbol.file</arg>
                  </compilerArgs>
                </configuration>
              </execution>
              <execution>
                <id>compile-java9</id>
                <phase>compile</phase>
                <goals>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jun 06 21:05:32 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

        // Test full integration scenarios
        public void test_fullScenario_ssoEnabled() {
            currentSsoType = "saml";
            final LoginCredential expectedCredential = new TestLoginCredential("samluser");
            final ActionResponse expectedResponse = HtmlResponse.asEmptyBody();
            final String expectedLogoutUrl = "https://saml.example.com/logout";
    
            testAuthenticator.setLoginCredential(expectedCredential);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SambaHelper.java

    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    
    import jakarta.annotation.PostConstruct;
    import jcifs.SID;
    
    /**
     * Helper class for Samba-related operations.
     */
    public class SambaHelper {
    
        private static final Logger logger = LogManager.getLogger(SambaHelper.class);
    
        /**
         * SID type for an alias.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/SsoAuthenticator.java

     * Interface for SSO (Single Sign-On) authenticator implementations.
     *
     * This interface defines the contract for SSO authentication providers that can be
     * integrated with Fess. Implementations handle specific SSO protocols like SAML,
     * OAuth, SPNEGO, or other authentication mechanisms. Each authenticator is responsible
     * for obtaining login credentials, resolving user information, and managing SSO
     * lifecycle operations like logout and metadata exchange.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
Back to top