Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 115 for virtual_host (0.14 sec)

  1. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

            roleTypeList.add("admin");
            dataMap.put("role", roleTypeList);
            final List<String> virtualHostList = new ArrayList<String>();
            virtualHostList.add("site1");
            dataMap.put("virtual_host", virtualHostList);
    
            assertEquals(
                    "87e7e4a2d5e2e24147ffd8820b70877a4cee15abdd48f7702e8233f0d17d7369f6d861124f106b541e6652a3e7a94cd51a332a2500fd065de6920559458cd3de",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParserTest.java

        DefaultContentsParser defaultContentsParser = new DefaultContentsParser();
        String[] supportedFields = new String[] { "content", "title" };
        String[] tagFieldNames = new String[] { "label", "virtual_host" };
        String roleFieldName = "role";
    
        public void test_parseQueryLog() throws Exception {
    
            QueryLog queryLog = new QueryLog("content:検索エンジン", null);
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/doc.json

          },
          "parent_id": {
            "type": "keyword"
          },
          "role": {
            "type": "keyword"
          },
          "label": {
            "type": "keyword"
          },
          "virtual_host": {
            "type": "keyword"
          },
          "segment": {
            "type": "keyword"
          },
          "site": {
            "type": "keyword"
          },
          "title": {
            "type": "text",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/suggest/settings/SuggestSettingsTest.java

            assertEquals("content", settings.array().get(SuggestSettings.DefaultKeys.SUPPORTED_FIELDS)[0]);
            assertEquals("label,virtual_host", settings.getAsString(SuggestSettings.DefaultKeys.TAG_FIELD_NAME, ""));
            assertEquals("role", settings.getAsString(SuggestSettings.DefaultKeys.ROLE_FIELD_NAME, ""));
        }
    
        @Test
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/_cloud/fess/doc.json

          },
          "parent_id": {
            "type": "keyword"
          },
          "role": {
            "type": "keyword"
          },
          "label": {
            "type": "keyword"
          },
          "virtual_host": {
            "type": "keyword"
          },
          "segment": {
            "type": "keyword"
          },
          "site": {
            "type": "keyword"
          },
          "title": {
            "type": "text",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/_aws/fess/doc.json

          },
          "parent_id": {
            "type": "keyword"
          },
          "role": {
            "type": "keyword"
          },
          "label": {
            "type": "keyword"
          },
          "virtual_host": {
            "type": "keyword"
          },
          "segment": {
            "type": "keyword"
          },
          "site": {
            "type": "keyword"
          },
          "title": {
            "type": "text",
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Aug 15 11:50:35 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

            // cache
            // digest
            // host
            // site
            // url
            // anchor
            // content_length
            // last_modified
            // id
            // virtual_host
            defaultDataMap.put(fessConfig.getIndexFieldVirtualHost(),
                    stream(config.getVirtualHosts()).get(stream -> stream.filter(StringUtil::isNotBlank).collect(Collectors.toList())));
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            };
            ComponentUtil.register(client, "searchEngineClient");
    
            final String virtualHost = "aaa";
    
            assertEquals(1, indexingHelper.deleteByVirtualHost(virtualHost));
            assertEquals("fess.update", resultMap.get("index"));
            assertEquals("virtual_host", resultMap.get("field"));
            assertEquals(virtualHost, resultMap.get("value"));
        }
    
        public void test_calculateDocumentSize() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Jul 24 08:54:24 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top