- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 543 for Role (0.02 sec)
-
internal/arn/arn.go
// // Reference: https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html const ( arnPrefixArn = "arn" arnPartitionMinio = "minio" arnServiceIAM = "iam" arnResourceTypeRole = "role" ) // ARN - representation of resources based on AWS ARNs. type ARN struct { Partition string Service string Region string ResourceType string ResourceID string }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Apr 04 08:31:34 UTC 2024 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/exbhv/RoleBhv.java
import java.util.Map; import java.util.regex.Pattern; import java.util.stream.Collectors; import org.codelibs.core.misc.Pair; import org.codelibs.fess.es.user.bsbhv.BsRoleBhv; import org.codelibs.fess.es.user.exentity.Role; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.exception.IllegalBehaviorStateException; import org.dbflute.util.DfTypeUtil; /** * @author FreeGen */ public class RoleBhv extends BsRoleBhv {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
String ROLE_SEARCH_DEFAULT_PERMISSIONS = "role.search.default.permissions"; /** The key of the configuration. e.g. {role}guest */ String ROLE_SEARCH_DEFAULT_DISPLAY_PERMISSIONS = "role.search.default.display.permissions"; /** The key of the configuration. e.g. {role}guest */ String ROLE_SEARCH_GUEST_PERMISSIONS = "role.search.guest.permissions";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 468.5K bytes - Viewed (1) -
src/main/webapp/WEB-INF/view/index.jsp
<c:when test="${!empty username && username != 'guest'}"> <li class="nav-item"> <div class="dropdown"> <a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-haspopup="true" aria-expanded="false"> <em class="fa fa-fw fa-user">${username} </a> <div class="dropdown-menu" aria-labelledby="userMenu">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 6.9K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/suggest/admin_suggest.jsp
<div class="modal fade" id="confirmToAllDelete" tabindex="-1" role="dialog"> <div class="modal-dialog"> <div class="modal-content bg-danger">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 18.1K bytes - Viewed (0) -
tests/query_test.go
t.Fatalf("Build OR condition, but got %v", result.Statement.SQL.String()) } result = dryDB.Where("role = ?", "admin").Where(DB.Or("role = ?", "super_admin").Or("role = ?", "admin")).Find(&User{}) if !regexp.MustCompile("SELECT \\* FROM .*users.* WHERE .*role.* = .+ AND (.*role.* = .+ OR .*role.* = .+)").MatchString(result.Statement.SQL.String()) {
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Jun 24 09:42:59 UTC 2024 - 50.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/handler/manager/ArtifactHandlerManager.java
*/ package org.apache.maven.artifact.handler.manager; import java.util.Map; import org.apache.maven.artifact.handler.ArtifactHandler; /** */ public interface ArtifactHandlerManager { String ROLE = ArtifactHandlerManager.class.getName(); ArtifactHandler getArtifactHandler(String type); @Deprecated void addHandlers(Map<String, ArtifactHandler> handlers);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
} } private <T> Collection<T> getExtensionComponents(Collection<MavenProject> projects, Class<T> role) { Collection<T> foundComponents = new LinkedHashSet<>(); foundComponents.addAll(lookup.lookupList(role)); foundComponents.addAll(getProjectScopedExtensionComponents(projects, role)); return foundComponents; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 27.5K bytes - Viewed (1) -
src/main/resources/fess_label_en.properties
labels.labeltype_title_details=Label labels.labeltype_name=Name labels.labeltype_value=Value labels.labeltype_included_paths=Included Paths labels.labeltype_excluded_paths=Excluded Paths labels.roletype_configuration=Role labels.roletype_title_details=Role labels.roletype_name=Name labels.roletype_value=Value labels.reqheader_configuration=Request Header labels.reqheader_list_name=Name labels.reqheader_list_web_crawling_config=Config Name
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
tests/tests_all.sh
SQLCMDPASSWORD=LoremIpsum86 sqlcmd -U sa -S localhost:9930 -Q "IF USER_ID (N'gorm') IS NULL CREATE USER gorm FROM LOGIN gorm; ALTER SERVER ROLE sysadmin ADD MEMBER [gorm];" > /dev/null || true else MSSQL_IMAGE=mcr.microsoft.com/mssql/server docker compose up -d fi cd .. fi fi for dialect in "${dialects[@]}" ; do
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Sep 30 03:21:19 UTC 2024 - 1.7K bytes - Viewed (0)