- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 22 for GetVirtualHosts (0.15 sec)
-
src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfigWrapper.java
} @Override public String[] getPermissions() { return crawlingConfig.getPermissions(); } @Override public String[] getVirtualHosts() { return crawlingConfig.getVirtualHosts(); } @Override public String getDocumentBoost() { return crawlingConfig.getDocumentBoost(); } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java
}); } protected <T> T processVirtualHost(final Function<String, T> func, final T defaultValue) { final Tuple3<String, String, String>[] vHosts = ComponentUtil.getFessConfig().getVirtualHosts(); return LaRequestUtil.getOptionalRequest().map(req -> { for (final Tuple3<String, String, String> host : vHosts) { final String headerValue = req.getHeader(host.getValue1());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 17.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 17.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 17.2K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/route.go
} for _, route := range routes { if filter.Verify(route) { if includeConfigType { route.Name = fmt.Sprintf("route/%s", route.Name) } if filter.Verbose { for _, vhosts := range route.GetVirtualHosts() { for _, r := range vhosts.Routes { if !isPassthrough(r.GetAction()) { fmt.Fprintf(w, "%v\t%s\t%s\t%s\t%s\n", route.Name, vhosts.Name,
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 08 20:44:50 UTC 2024 - 7.2K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/listener.go
} // If this is a route that matches everything and forwards to a cluster, just report the cluster. func getMatchAllCluster(er *route.RouteConfiguration) string { if len(er.GetVirtualHosts()) != 1 { return "" } vh := er.GetVirtualHosts()[0] if !reflect.DeepEqual(vh.Domains, []string{"*"}) { return "" } if len(vh.GetRoutes()) != 1 { return "" } r := vh.GetRoutes()[0]
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Nov 29 12:37:14 UTC 2023 - 18.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java
import org.codelibs.fess.util.ComponentUtil; public interface CrawlingConfig { String getId(); String getName(); String[] getPermissions(); String[] getVirtualHosts(); String getDocumentBoost(); String getIndexingTarget(String input); String getConfigId(); Integer getTimeToLive();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsDataConfig.java
return updatedTime; } public void setUpdatedTime(Long value) { registerModifiedProperty("updatedTime"); this.updatedTime = value; } public String[] getVirtualHosts() { checkSpecifiedProperty("virtualHosts"); return virtualHosts; } public void setVirtualHosts(String[] value) { registerModifiedProperty("virtualHosts");
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dataconfig/ApiAdminDataconfigAction.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7K bytes - Viewed (0)