- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 1,467 for Results (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java
/** User's computed permissions. */ protected String[] permissions; /** Azure AD authentication result. */ protected IAuthenticationResult authResult; /** * Constructs an Azure AD user with the authentication result. * @param authResult The authentication result from Azure AD. */ public AzureAdUser(final IAuthenticationResult authResult) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/sereq/AdminSereqAction.java
/** * Processes uploaded search request files and executes them against the search engine. * * @param form the upload form containing the request file * @return action response with the search results or error page */ @Execute @Secured({ ROLE }) public ActionResponse upload(final UploadForm form) { validate(form, messages -> {}, () -> asListHtml(null));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.3K bytes - Viewed (0) -
guava/src/com/google/common/escape/Escaper.java
* {@code escape(s.substring(0, n)) + escape(s.substring(n))} for arbitrary {@code n}. This is * because of the possibility of splitting a surrogate pair. The only case in which it is safe to * escape strings and concatenate the results is if you can rule out this possibility, either by * splitting an existing long string into short strings adaptively around {@linkplain * Character#isHighSurrogate surrogate} {@linkplain Character#isLowSurrogate pairs}, or by starting
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 15:45:16 UTC 2025 - 4.7K bytes - Viewed (0) -
src/cmd/cgo/ast.go
f.walk(n.Fields, ctxField, visit) case *ast.FuncType: if tparams := funcTypeTypeParams(n); tparams != nil { f.walk(tparams, ctxParam, visit) } f.walk(n.Params, ctxParam, visit) if n.Results != nil { f.walk(n.Results, ctxParam, visit) } case *ast.InterfaceType: f.walk(n.Methods, ctxField, visit) case *ast.MapType: f.walk(&n.Key, ctxType, visit) f.walk(&n.Value, ctxType, visit) case *ast.ChanType:
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Oct 14 15:47:06 UTC 2024 - 14.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java
import org.opensearch.index.query.QueryShardContext; /** * A query builder for a stored LTR (Learning to Rank) query. * This builder constructs a query that uses a pre-trained LTR model * to re-rank search results based on a given set of features. */ public class StoredLtrQueryBuilder extends AbstractQueryBuilder<StoredLtrQueryBuilder> implements NamedWriteable { /** The name of the query. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java
* the fileIndex to set */ public void setFileIndex(final int fileIndex) { this.fileIndex = fileIndex; } /** * Sets the file name pattern for filtering directory results * * @param fileName * the fileName to set */ public void setFileName(final String fileName) { this.fileName = fileName; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
src/README.vendor
Make sure that GO111MODULE is not set in the environment, or that it is set to 'on' or 'auto', and if you use a go.work file, set GOWORK=off. Also, ensure that 'go env GOROOT' shows the root of this Go source tree. Otherwise, the results are undefined. It's recommended to build Go from source and use that 'go' binary to update its source tree. Requirements may be added, updated, and removed with 'go get'. The vendor directory may be updated with 'go mod vendor'.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Sep 30 19:15:39 UTC 2024 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java
assertNotNull(filled.getStackTrace()); assertTrue(filled.getStackTrace().length > 0); } public void test_getMessage_consistency() { // Test that getMessage returns consistent results String message = "Consistent message"; JobNotFoundException exception = new JobNotFoundException(message); assertEquals(message, exception.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverResult.java
/** * Returns a mapping of artifact coordinates to their corresponding resolution results. * * @return A {@link Map} where keys are {@link ArtifactCoordinates} and values are {@link ResultItem} instances. */ @Nonnull Map<? extends ArtifactCoordinates, ResultItem> getResults(); /** * Retrieves the resolution result for a specific set of artifact coordinates. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4.7K bytes - Viewed (0)