Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for virtual_host (0.29 sec)

  1. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java

            final Map<String, Object> defaultSettings = new HashMap<>();
            defaultSettings.put(DefaultKeys.INDEX, (settingsId + ".suggest").toLowerCase());
            defaultSettings.put(DefaultKeys.TAG_FIELD_NAME, "label,virtual_host");
            defaultSettings.put(DefaultKeys.ROLE_FIELD_NAME, "role");
            defaultSettings.put(DefaultKeys.LANG_FIELD_NAME, "lang");
            defaultSettings.put(DefaultKeys.PARALLEL_PROCESSING, Boolean.FALSE);
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Sat Oct 12 00:10:39 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    index.field.title=title
    index.field.host=host
    index.field.site=site
    index.field.content_length=content_length
    index.field.filetype=filetype
    index.field.filename=filename
    index.field.thumbnail=thumbnail
    index.field.virtual_host=virtual_host
    response.field.content_title=content_title
    response.field.content_description=content_description
    response.field.url_link=url_link
    response.field.site_path=site_path
    response.max.title.length=50
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Oct 01 14:13:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. thumbnail */
        String INDEX_FIELD_THUMBNAIL = "index.field.thumbnail";
    
        /** The key of the configuration. e.g. virtual_host */
        String INDEX_FIELD_virtual_host = "index.field.virtual_host";
    
        /** The key of the configuration. e.g. content_title */
        String RESPONSE_FIELD_content_title = "response.field.content_title";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 468.5K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java

                this.permissions = permissions;
            }
    
            public String getVirtualHost() {
                return virtualHost;
            }
    
            public void setVirtualHost(final String virtualHost) {
                this.virtualHost = virtualHost;
            }
    
            public Locale getLocale() {
                return locale;
            }
    
            public void setLocale(final Locale locale) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        public static final String GSA_API_VERSION = "3.2";
    
        public static final String PERMISSIONS = "permissions";
    
        public static final String QUERIES = "queries";
    
        public static final String VIRTUAL_HOSTS = "virtualHosts";
    
        public static final String CIPHER_PREFIX = "{cipher}";
    
        public static final String SYSTEM_USER = "system";
    
        public static final String EMPTY_USER_ID = "<empty>";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Aug 22 12:43:18 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                        roles.add(searchFieldLog.getSecond());
                    }
                }
    
                final String virtualHost = searchLog.getVirtualHost();
                if (virtualHost != null) {
                    tags.add(virtualHost);
                }
    
                if (sb.length() > 0) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

        }
    
        public long deleteByVirtualHost(final String virtualHost) {
            final SearchEngineClient searchEngineClient = ComponentUtil.getSearchEngineClient();
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final String index = fessConfig.getIndexDocumentUpdateIndex();
            return deleteByVirtualHost(searchEngineClient, index, virtualHost);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  8. manifests/charts/base/files/crd-all.gen.yaml

                            Specifies where in the Envoy configuration, the patch should be applied.
    
                            Valid Options: LISTENER, FILTER_CHAIN, NETWORK_FILTER, HTTP_FILTER, ROUTE_CONFIGURATION, VIRTUAL_HOST, HTTP_ROUTE, CLUSTER, EXTENSION_CONFIG, BOOTSTRAP, LISTENER_FILTER
                          enum:
                          - INVALID
                          - LISTENER
                          - FILTER_CHAIN
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Nov 01 16:23:52 UTC 2024
    - 805K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    func routeDestinationMatchesSvc(vhRoute *route.Route, svc corev1.Service, vh *route.VirtualHost, port int32) bool {
    	if vhRoute == nil {
    		return false
    	}
    
    	// Infer from VirtualHost domains matching <service>.<namespace>.svc.cluster.local
    	re := regexp.MustCompile(`(?P<service>[^\.]+)\.(?P<namespace>[^\.]+)\.svc\.cluster\.local$`)
    	for _, domain := range vh.Domains {
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 24 17:36:49 UTC 2024
    - 50.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

            stream(crawlingConfig.getPermissions()).of(stream -> stream.forEach(p -> roleTypeList.add(p)));
            putResultDataBody(dataMap, fessConfig.getIndexFieldRole(), roleTypeList);
            // virtualHosts
            putResultDataBody(dataMap, fessConfig.getIndexFieldVirtualHost(),
                    stream(crawlingConfig.getVirtualHosts()).get(stream -> stream.filter(StringUtil::isNotBlank).collect(Collectors.toList())));
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top