- Sort Score
- Result 10 results
- Languages All
Results 1101 - 1110 of 1,161 for builders (0.09 sec)
-
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
*/ protected String getOicRedirectUrl() { return ComponentUtil.getSystemProperties().getProperty(OIC_REDIRECT_URL, buildDefaultRedirectUrl()); } /** * Builds a default redirect URL for OpenID Connect based on the environment. * Uses the configured base URL or defaults to http://localhost:8080 for compatibility * with common OIDC provider configurations. *Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Dec 14 01:18:25 UTC 2025 - 16.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java
*/ protected static <T> T copyBeanToNewBean(final Object src, final Class<T> destClass) { return BeanUtil.copyBeanToNewBean(src, destClass); } /** * Builds a comprehensive error message from a throwable and its causes. * This method traverses the cause chain and concatenates all error messages. * * @param t the throwable to build message fromRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 15K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/CompatibilityFixStrategy.java
// Root level build Stream.of(new BuildContainer(root.child(BUILD).orElse(null), BUILD)) .filter(container -> container.element != null), // Profile builds root.child(PROFILES).stream() .flatMap(profiles -> profiles.children(PROFILE)) .map(profile -> new BuildContainer(profile.child(BUILD).orElse(null), "profile build"))Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 22.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; import org.codelibs.core.lang.StringUtil; import org.codelibs.fess.Constants; import org.codelibs.fess.crawler.builder.RequestDataBuilder; import org.codelibs.fess.crawler.client.CrawlerClient; import org.codelibs.fess.crawler.client.CrawlerClientFactory; import org.codelibs.fess.crawler.entity.ResponseData;
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 29.7K bytes - Viewed (3) -
src/test/java/org/codelibs/fess/suggest/index/SuggestIndexerTest.java
} @Before public void before() throws Exception { runner.admin().indices().prepareDelete("_all").execute().actionGet(); runner.refresh(); suggester = Suggester.builder().build(runner.client(), "SuggestIndexerTest"); suggester.createIndexIfNothing(); } @Test public void test_indexSingleItem() throws Exception { String[][] readings = new String[1][];Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 28.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
* only the documents from the current session. * * <p>The deletion process:</p> * <ul> * <li>Checks if old document deletion is enabled</li> * <li>Builds a query to find old documents for this configuration</li> * <li>Optionally preserves expired documents based on configuration</li> * <li>Executes the deletion query against the search engine</li>Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 19K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
defaultSettings.put("onelogin.saml2.contacts.support.given_name", "Support Guy"); defaultSettings.put("onelogin.saml2.contacts.support.email_address", "******@****.***"); } /** * Builds a default URL for SAML endpoints. * Uses the configured base URL or defaults to http://localhost:8080 for compatibility * with common SAML IdP configurations. *
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Dec 14 01:18:25 UTC 2025 - 20.2K bytes - Viewed (3) -
android/guava-tests/test/com/google/common/collect/FluentIterableTest.java
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 30.5K bytes - Viewed (0) -
finisher_api.go
db.AddError(ErrUnsupportedDriver) } return db } // Exec executes raw sql func (db *DB) Exec(sql string, values ...interface{}) (tx *DB) { tx = db.getInstance() tx.Statement.SQL = strings.Builder{} if strings.Contains(sql, "@") { clause.NamedExpr{SQL: sql, Vars: values}.Build(tx.Statement) } else { clause.Expr{SQL: sql, Vars: values}.Build(tx.Statement) }
Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Fri Sep 19 01:49:06 UTC 2025 - 22.9K bytes - Viewed (0) -
src/archive/tar/writer.go
} */ _ = realSize // Write PAX records to the output. isGlobal := hdr.Typeflag == TypeXGlobalHeader if len(paxHdrs) > 0 || isGlobal { // Write each record to a buffer. var buf strings.Builder // Sort keys for deterministic ordering. for _, k := range slices.Sorted(maps.Keys(paxHdrs)) { rec, err := formatPAXRecord(k, paxHdrs[k]) if err != nil { return err } buf.WriteString(rec)
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Mon Feb 03 16:38:43 UTC 2025 - 19.7K bytes - Viewed (0)