本文整理了Java中org.sonatype.nexus.proxy.repository.Repository.setNotFoundCacheTimeToLive
方法的一些代码示例,展示了Repository.setNotFoundCacheTimeToLive
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Repository.setNotFoundCacheTimeToLive
方法的具体详情如下:
包路径:org.sonatype.nexus.proxy.repository.Repository
类名称:Repository
方法名:setNotFoundCacheTimeToLive
[英]Sets the not found cache time to live (in minutes).
[中]设置未找到缓存的生存时间(分钟)。
代码示例来源:origin: org.sonatype.nexus.plugins/nexus-restlet1x-plugin
repository.setSearchable(model.isIndexable());
repository.setNotFoundCacheTimeToLive(model.getNotFoundCacheTTL());
代码示例来源:origin: org.sonatype.nexus/nexus-rest-api
repository.setSearchable( model.isIndexable() );
repository.setNotFoundCacheTimeToLive( model.getNotFoundCacheTTL() );
内容来源于网络,如有侵权,请联系作者删除!