Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 176 for Holmes (0.18 sec)

  1. docs/orchestration/docker-compose/docker-compose.yaml

    services:
      minio1:
        <<: *minio-common
        hostname: minio1
        volumes:
          - data1-1:/data1
          - data1-2:/data2
    
      minio2:
        <<: *minio-common
        hostname: minio2
        volumes:
          - data2-1:/data1
          - data2-2:/data2
    
      minio3:
        <<: *minio-common
        hostname: minio3
        volumes:
          - data3-1:/data1
          - data3-2:/data2
    
      minio4:
        <<: *minio-common
    Others
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 18 20:45:59 GMT 2024
    - 1.5K bytes
    - Viewed (1)
  2. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // mount option.
      //
      // When "true", the CSI driver must ensure that all volumes provided by this CSI
      // driver can be mounted separately with different `-o context` options. This is
      // typical for storage backends that provide volumes as filesystems on block
      // devices or as independent shared volumes.
      // Kubernetes will call NodeStage / NodePublish with "-o context=xyz" mount
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/storage/v1/generated.proto

      // mount option.
      //
      // When "true", the CSI driver must ensure that all volumes provided by this CSI
      // driver can be mounted separately with different `-o context` options. This is
      // typical for storage backends that provide volumes as filesystems on block
      // devices or as independent shared volumes.
      // Kubernetes will call NodeStage / NodePublish with "-o context=xyz" mount
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java

            protected final String name;
    
            protected String[] groups;
    
            protected String[] roles;
    
            protected String[] permissions;
    
            protected OpenIdUser(final String name, final String[] groups, final String[] roles) {
                this.name = name;
                this.groups = groups;
                this.roles = roles;
            }
    
            @Override
            public String getName() {
                return name;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

                final String[] fields, final String[] excludes) {
            final String baseSeed = seed != null ? seed : fessConfig.getSuggestPopularWordSeed();
            final String[] baseTags = tags != null ? tags : fessConfig.getSuggestPopularWordTagsAsArray();
            final String[] baseRoles = roles != null ? roles
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/RoleQueryHelper.java

                if (values.length > 1) {
                    final String[] roles = values[1].split(roleSeparator);
                    for (final String role : roles) {
                        if (StringUtil.isNotEmpty(role)) {
                            roleSet.add(role);
                        }
                    }
                }
            } else {
                final String[] roles = rolesStr.split(roleSeparator);
                for (final String role : roles) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/log/bsentity/BsSearchLog.java

            this.responseTime = value;
        }
    
        public String[] getRoles() {
            checkSpecifiedProperty("roles");
            return roles;
        }
    
        public void setRoles(String[] value) {
            registerModifiedProperty("roles");
            this.roles = value;
        }
    
        public String getSearchWord() {
            checkSpecifiedProperty("searchWord");
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes
      // +optional
      optional PersistentVolumeSpec spec = 2;
    
      // status represents the current information/status for the persistent volume.
      // Populated by the system.
      // Read-only.
      // More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes
      // +optional
      optional PersistentVolumeStatus status = 3;
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java

                this.nameId = nameId;
                this.sessionIndex = sessionIndex;
                this.nameIdFormat = nameIdFormat;
                this.nameidNameQualifier = nameidNameQualifier;
                this.nameidSPNameQualifier = nameidSPNameQualifier;
                this.groups = groups;
                this.roles = roles;
            }
    
            @Override
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/exentity/User.java

            if (password != null) {
                sourceMap.put("password", password);
            }
            if (groups != null) {
                sourceMap.put("groups", groups);
            }
            if (roles != null) {
                sourceMap.put("roles", roles);
            }
            if (attributes != null) {
                sourceMap.putAll(attributes);
            }
            return sourceMap;
        }
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.8K bytes
    - Viewed (1)
Back to top