Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for config_id (0.08 sec)

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

            };
            ComponentUtil.register(client, "searchEngineClient");
    
            final String configId = "W01";
    
            assertEquals(1, indexingHelper.deleteByConfigId(configId));
            assertEquals("fess.update", resultMap.get("index"));
            assertEquals("config_id", resultMap.get("field"));
            assertEquals(configId, resultMap.get("value"));
        }
    
        public void test_deleteByVirtualHost() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Jul 24 08:54:24 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    index.auto_expand_replicas=0-1
    index.id.digest.algorithm=SHA-512
    index.user.initial_password=admin
    
    # field names
    index.field.favorite_count=favorite_count
    index.field.click_count=click_count
    index.field.config_id=config_id
    index.field.expires=expires
    index.field.url=url
    index.field.doc_id=doc_id
    index.field.id=_id
    index.field.version=_version
    index.field.seq_no=_seq_no
    index.field.primary_term=_primary_term
    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. click_count */
        String INDEX_FIELD_click_count = "index.field.click_count";
    
        /** The key of the configuration. e.g. config_id */
        String INDEX_FIELD_config_id = "index.field.config_id";
    
        /** The key of the configuration. e.g. expires */
        String INDEX_FIELD_EXPIRES = "index.field.expires";
    
        /** The key of the configuration. e.g. url */
    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/app/service/FailureUrlService.java

                cb.query().setErrorName_Wildcard(failureUrlPager.errorName);
            }
    
        }
    
        public void deleteByConfigId(final String configId) {
            failureUrlBhv.queryDelete(cb -> {
                cb.query().setConfigId_Equal(configId);
            });
        }
    
        public FailureUrl store(final CrawlingConfig crawlingConfig, final String errorName, final String url, final Throwable e) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 24 01:20:42 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. cmd/common-main.go

    	// enable all console environment variables
    	minioConfigToConsoleFeatures()
    
    	// set certs dir to minio directory
    	consoleCerts.GlobalCertsDir = &consoleCerts.ConfigDir{
    		Path: globalCertsDir.Get(),
    	}
    	consoleCerts.GlobalCertsCADir = &consoleCerts.ConfigDir{
    		Path: globalCertsCADir.Get(),
    	}
    
    	// set certs before other console initialization
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 21:50:11 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  6. istioctl/pkg/proxyconfig/proxyconfig.go

    	configCmd.AddCommand(routeConfigCmd(ctx))
    	configCmd.AddCommand(bootstrapConfigCmd(ctx))
    	configCmd.AddCommand(endpointConfigCmd(ctx))
    	configCmd.AddCommand(edsConfigCmd(ctx))
    	configCmd.AddCommand(secretConfigCmd(ctx))
    	configCmd.AddCommand(rootCACompareConfigCmd(ctx))
    	configCmd.AddCommand(ecdsConfigCmd(ctx))
    
    	return configCmd
    }
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 24 15:53:49 UTC 2024
    - 50.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

                            searchEngineClient.addAll(fessConfig.getIndexDocumentUpdateIndex(), docList, (doc, builder) -> {
                                final String configId = (String) doc.get(fessConfig.getIndexFieldConfigId());
                                crawlingConfigHelper.getPipeline(configId).ifPresent(s -> builder.setPipeline(s));
                            });
                    if (response.hasFailures()) {
                        if (logger.isDebugEnabled()) {
    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. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            final String configId = DocumentUtil.getValue(doc, fessConfig.getIndexFieldConfigId(), String.class);
            if (configId == null) {
                throw new FessSystemException("configId is null.");
            }
            if (configId.length() < 2) {
                throw new FessSystemException("Invalid configId: " + configId);
            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  9. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    		Aliases: []string{"zc"},
    	}
    
    	configCmd.AddCommand(logCmd(ctx))
    	configCmd.AddCommand(workloadConfigCmd(ctx))
    	configCmd.AddCommand(certificatesConfigCmd(ctx))
    	configCmd.AddCommand(servicesCmd(ctx))
    	configCmd.AddCommand(policiesCmd(ctx))
    	configCmd.AddCommand(allCmd(ctx))
    	configCmd.AddCommand(connectionsCmd(ctx))
    
    	return configCmd
    }
    
    type Command struct {
    	Name string
    }
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Oct 09 19:17:45 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            } else {
                urlEncoding = responseData.getCharSet();
            }
    
            // cid
            final String configId = crawlingConfig.getConfigId();
            if (configId != null) {
                putResultDataBody(dataMap, fessConfig.getIndexFieldConfigId(), configId);
            }
            //  expires
            if (documentExpires != null) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 42.9K bytes
    - Viewed (0)
Back to top