Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 194 for Cole (0.19 sec)

  1. src/main/java/org/codelibs/fess/es/user/exentity/Role.java

     */
    package org.codelibs.fess.es.user.exentity;
    
    import java.util.HashMap;
    import java.util.Map;
    
    import org.codelibs.fess.es.user.bsentity.BsRole;
    
    /**
     * @author FreeGen
     */
    public class Role extends BsRole {
    
        private static final long serialVersionUID = 1L;
    
        private Map<String, String> attributes;
    
        public Long getVersionNo() {
            return asDocMeta().version();
        }
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-egress/templates/role.yaml

    {{ $gateway := index .Values "gateways" "istio-egressgateway" }}
    apiVersion: rbac.authorization.k8s.io/v1
    kind: Role
    metadata:
      name: {{ $gateway.name }}-sds
      namespace: {{ .Release.Namespace }}
      labels:
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "EgressGateways"
    rules:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 538 bytes
    - Viewed (0)
  3. manifests/charts/gateways/istio-ingress/templates/role.yaml

    {{ $gateway := index .Values "gateways" "istio-ingressgateway" }}
    apiVersion: rbac.authorization.k8s.io/v1
    kind: Role
    metadata:
      name: {{ $gateway.name }}-sds
      namespace: {{ .Release.Namespace }}
      labels:
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" | quote }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "IngressGateways"
    rules:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Apr 18 18:16:49 GMT 2024
    - 540 bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    cya.gg
    
    // OMG.LOL : <https://omg.lol>
    // Submitted by Adam Newbold <******@****.***>
    omg.lol
    
    // Omnibond Systems, LLC. : https://www.omnibond.com
    // Submitted by Cole Estep <cole@omnibond.com>
    cloudycluster.net
    
    // OmniWe Limited: https://omniwe.com
    // Submitted by Vicary Archangel <******@****.***>
    omniwe.site
    
    // One.com: https://www.one.com/
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  5. docs/sts/assume-role.go

    guangwu <******@****.***> 1712938195 +0800
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 12 16:09:55 GMT 2024
    - 4K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/es/user/bsbhv/BsRoleBhv.java

        @Override
        protected Class<? extends Role> typeOfSelectedEntity() {
            return Role.class;
        }
    
        @Override
        protected Class<Role> typeOfHandlingEntity() {
            return Role.class;
        }
    
        @Override
        protected Class<RoleCB> typeOfHandlingConditionBean() {
            return RoleCB.class;
        }
    
        public ListResultBean<Role> selectList(CBCall<RoleCB> cbLambda) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/AdminAction.java

                AdminMaintenanceAction.ROLE + VIEW, //
                AdminEsreqAction.ROLE, //
                AdminEsreqAction.ROLE + VIEW, //
                AdminDashboardAction.ROLE, //
                AdminDashboardAction.ROLE + VIEW, //
                AdminWizardAction.ROLE, //
                AdminWizardAction.ROLE + VIEW, //
                AdminGeneralAction.ROLE, //
                AdminGeneralAction.ROLE + VIEW, //
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  8. internal/bucket/replication/replication_test.go

    		sameTarget            bool
    	}{
    		{ // 1 Invalid delete marker status in replication config
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Mar 28 17:44:56 GMT 2024
    - 32.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java

        }
    
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse list(final Integer pageNumber, final SearchForm form) {
            saveToken();
            searchLogPager.setCurrentPageNumber(pageNumber);
            return asHtml(path_AdminSearchlog_AdminSearchlogJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

        }
    
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse list(final Integer pageNumber, final SearchForm form) {
            saveToken();
            jobLogPager.setCurrentPageNumber(pageNumber);
            return asHtml(path_AdminJoblog_AdminJoblogJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 8.4K bytes
    - Viewed (0)
Back to top