- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 2,964 for permission (0.07 sec)
-
src/main/java/org/codelibs/fess/helper/PermissionHelper.java
return null; } if (permission.startsWith(fessConfig.getRoleSearchUserPrefix()) && permission.length() > fessConfig.getRoleSearchUserPrefix().length()) { return aclPrefix + userPrefix + permission.substring(fessConfig.getRoleSearchUserPrefix().length()); } if (permission.startsWith(fessConfig.getRoleSearchGroupPrefix())
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/CommandExecutionExceptionTest.java
assertNotNull(timeout.getCause()); // Scenario 3: Permission denied CommandExecutionException permissionDenied = new CommandExecutionException("Permission denied: cannot execute command"); assertTrue(permissionDenied.getMessage().contains("Permission denied")); // Scenario 4: Exit code error
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.2K bytes - Viewed (0) -
android-test-app/src/main/AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" package="okhttp.android.testapp"> <uses-permission android:name="android.permission.INTERNET" /> <application android:allowBackup="true" android:label="@string/app_name" android:supportsRtl="true" android:name=".TestApplication" > <activity android:name=".MainActivity"
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Aug 19 08:10:39 UTC 2025 - 992 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ActivityHelper.java
LOGIN_FAILURE, /** * The update permission action. */ UPDATE_PERMISSION; } /** * Set the logger name. * @param loggerName The logger name. */ public void setLoggerName(final String loggerName) { this.loggerName = loggerName; } /** * Set the permission separator.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FessUser.java
/** * Gets the user's assigned group names. * @return Array of group names. */ String[] getGroupNames(); /** * Gets the user's permissions. * @return Array of permission strings. */ String[] getPermissions(); /** * Determines if the user's information can be edited. * @return True if the user's information is editable, false otherwise.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
LICENSES/vendor/github.com/golang-jwt/jwt/v5/LICENSE
= vendor/github.com/golang-jwt/jwt/v5 licensed under: = Copyright (c) 2012 Dave Grijalva Copyright (c) 2021 golang-jwt maintainers
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Fri May 16 01:19:11 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/CreateForm.java
public String reading; /** The target label for filtering documents to be elevated */ public String targetLabel; /** The permission settings for accessing this elevate word configuration */ @CustomSize(maxKey = "form.admin.max.input.size") public String permissions; /** The boost score multiplier applied to elevated documents */ @Required @ValidateTypeFailure public Float boost;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
} /** * Checks if a permission string is a user permission. * * @param permission The permission string. * @return true if it is a user permission, false otherwise. */ public boolean isUserPermission(final String permission) { if (StringUtil.isNotBlank(permission)) { return permission.startsWith(ComponentUtil.getFessConfig().getRoleSearchUserPrefix());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
// nothing } /** * Checks if the current user has permission to access the given resource. * For admin actions, verifies that the user has appropriate admin roles or * meets the secured annotation requirements. * * @param resource the login handling resource to check permission for * @throws LoginRequiredException if login is required
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
* * @param searchRequestParams The search request parameters * @param data The search render data to populate with results * @param userBean Optional user information for permission checking */ public void search(final SearchRequestParams searchRequestParams, final SearchRenderData data, final OptionalThing<FessUserBean> userBean) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0)