Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 868 for ROLE (0.03 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/artifacts/configurations/AbstractRoleBasedConfigurationCreationRequest.java

        protected final String configurationName;
        protected final ConfigurationRole role;
    
        protected AbstractRoleBasedConfigurationCreationRequest(String configurationName, ConfigurationRole role) {
            this.configurationName = configurationName;
            this.role = role;
        }
    
        @Override
        public String getConfigurationName() {
            return configurationName;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy_test.go

    )
    
    // TestNoStarsForControllers confirms that no controller role has star verbs, groups,
    // or resources.  There are three known exceptions: namespace lifecycle and GC which have to
    // delete anything, and HPA, which has the power to read metrics associated
    // with any object.
    func TestNoStarsForControllers(t *testing.T) {
    	for _, role := range ControllerRoles() {
    		if rolesWithAllowStar.Has(role.Name) {
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 05:24:17 UTC 2019
    - 2.9K bytes
    - Viewed (0)
  3. maven-compat/src/test/resources/org/apache/maven/artifact/resolver/ArtifactUpdatePolicyTest.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <plexus>
      <components>
        <component>
          <role>org.apache.maven.wagon.Wagon</role>
          <role-hint>testfile</role-hint>
          <implementation>org.apache.maven.artifact.resolver.TestFileWagon</implementation>
          <instantiation-strategy>per-lookup</instantiation-strategy>
        </component>
      </components>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 27 22:32:16 UTC 2008
    - 1.1K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin_installplugin.jsp

                            <div class="card-body">
                                <ul class="nav nav-tabs" role="tablist">
                                    <li role="presentation" class="nav-item"><a href="#remote" aria-controls="remote" class="nav-link active"
                                                                              role="tab"
                                                                              data-toggle="tab"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 14 12:15:45 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  5. pkg/registry/rbac/validation/rule.go

    	}
    	for _, role := range r.roles {
    		if role.Namespace == namespace && role.Name == name {
    			return role, nil
    		}
    	}
    	return nil, errors.New("role not found")
    }
    
    func (r *StaticRoles) GetClusterRole(name string) (*rbacv1.ClusterRole, error) {
    	for _, clusterRole := range r.clusterRoles {
    		if clusterRole.Name == name {
    			return clusterRole, nil
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 02 16:51:16 UTC 2020
    - 11.6K bytes
    - Viewed (0)
  6. pkg/apis/rbac/types.go

    type Role struct {
    	metav1.TypeMeta
    	// Standard object's metadata.
    	metav1.ObjectMeta
    
    	// Rules holds all the PolicyRules for this Role
    	Rules []PolicyRule
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // RoleBinding references a role, but does not contain it.  It can reference a Role in the same namespace or a ClusterRole in the global namespace.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/AdminDictAction.java

        protected String getActionRole() {
            return ROLE;
        }
    
        // ===================================================================================
        //                                                                      Search Execute
        //                                                                      ==============
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/user/bsentity/dbmeta/RoleDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "role";
        protected final String _tableDispName = "role";
        protected final String _tablePropertyName = "Role";
    
        public String getTableDbName() {
            return _tableDbName;
        }
    
        @Override
        public String getTableDispName() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/main/config/es/fess_user_role.json

    {
      "fess_user.role" : {
        "aliases" : { },
        "mappings" : {
          "role" : {
            "properties" : {
              "name" : {
                "type" : "keyword"
              }
            }
          }
        },
        "settings" : {
          "index" : {
            "creation_date" : "1509021059090",
            "number_of_shards" : "5",
            "number_of_replicas" : "1",
            "uuid" : "ugUWT7UpRCau5xEMgWOBsw",
            "version" : {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 517 bytes
    - Viewed (0)
  10. hack/testdata/redis-slave-replicaset.yaml

    metadata:
      name: redis-slave
      labels:
        app: redis
        role: slave
        tier: backend
    spec:
      # this replicas value is default
      # modify it according to your case
      replicas: 2
      selector:
        matchLabels:
          app: redis
          role: slave
          tier: backend
      template:
        metadata:
          labels:
            app: redis
            role: slave
            tier: backend
        spec:
          containers:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 19 16:19:12 UTC 2018
    - 981 bytes
    - Viewed (0)
Back to top