- Sort Score
- Result 10 results
- Languages All
Results 881 - 890 of 3,633 for NULL (0.05 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingRequest.java
public File getPomFile() { return pomPath != null ? pomPath.toFile() : null; } @Override public Path getPomPath() { return pomPath; } @Deprecated @Override public DefaultModelBuildingRequest setPomFile(File pomFile) { this.pomPath = (pomFile != null) ? pomFile.toPath().toAbsolutePath() : null; return this; } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.6K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/DefaultSettingsDecryptionResult.java
this.servers = (servers != null) ? servers : new ArrayList<>(); this.proxies = (proxies != null) ? proxies : new ArrayList<>(); this.problems = (problems != null) ? problems : new ArrayList<>(); } @Override public Server getServer() { return servers.isEmpty() ? null : servers.get(0); } @Override public List<Server> getServers() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizerFactory.java
if (synonymLoader.getSynonymMap() == null) { if (settings.getAsList("synonyms", null) != null) { logger.warn("synonyms values are empty."); } else if (settings.get("synonyms_path") != null) { logger.warn("synonyms_path[{}] is empty.", settings.get("synonyms_path")); } else {
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 2.4K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
// Parse the address, and make sure the length/version is correct. Scope scope = parseScope ? new Scope() : null; byte[] addr = ipStringToBytes(ipString, scope); if (addr == null || addr.length != expectBytes) { return null; } return bytesToInetAddress(addr, (scope != null) ? scope.scope : null); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 47.1K bytes - Viewed (0) -
dbflute_fess/dfprop/dependencyInjectionMap.dfprop
# o dbfluteBeansFileName: (NotRequired - Default 'dbfluteBeans.xml') # o dbfluteBeansDataSourceName: (NotRequired - Default 'dataSource') # o dbfluteBeansDefaultAttribute: (NotRequired - Default null) # o isDBFluteBeansGeneratedAsJavaConfig (NotRequired - Default true since 1.1) # # {Java} Seasar Only: # o dbfluteDiconNamespace: (NotRequired - Default 'dbflute')
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHook.java
try { final Class<?> clazz = Class.forName("org.apache.commons.httpclient.MultiThreadedHttpConnectionManager"); final Method method = clazz.getMethod("shutdownAll", (Class<?>[]) null); method.invoke(null, (Object[]) null); } catch (final ClassNotFoundException e) { // ignore } catch (final Exception e) { logger.warn("Could not shutdown Commons HttpClient.", e); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
return true; } public Set<String> getMatchedLabelValueSet(final String path) { if (labelTypePatternList == null) { synchronized (this) { if (labelTypePatternList == null) { buildLabelTypePatternList(ComponentUtil.getComponent(LabelTypeService.class).getLabelTypeList()); } } } if (labelTypePatternList.isEmpty()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 11.7K bytes - Viewed (0) -
src/main/webapp/js/admin/jquery-3.7.1.min.js
e)?-1:t===T||t.ownerDocument==ye&&I.contains(ye,t)?1:o?se.call(o,e)-se.call(o,t):0:4&n?-1:1)}),T}for(e in I.matches=function(e,t){return I(e,null,null,t)},I.matchesSelector=function(e,t){if(V(e),C&&!h[t+" "]&&(!d||!d.test(t)))try{var n=i.call(e,t);if(n||le.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(e){h(t,!0)}return 0<I(t,T,null,[e]).length},I.contains=function(e,t){return(e.ownerDocument||e)!=T&&V(e),ce.contains(e,t)},I.attr=function(e,t){(e.ownerDocument||e)!=T&&V(e);var...
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 85.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/bsbhv/BsClickLogBhv.java
doUpdate(entity, null); } public void insertOrUpdate(ClickLog entity) { doInsertOrUpdate(entity, null, null); } public void insertOrUpdate(ClickLog entity, RequestOptionCall<IndexRequestBuilder> opLambda) { entity.asDocMeta().indexOption(opLambda); doInsertOrUpdate(entity, null, null); } public void delete(ClickLog entity) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/bsbhv/BsGroupBhv.java
doUpdate(entity, null); } public void insertOrUpdate(Group entity) { doInsertOrUpdate(entity, null, null); } public void insertOrUpdate(Group entity, RequestOptionCall<IndexRequestBuilder> opLambda) { entity.asDocMeta().indexOption(opLambda); doInsertOrUpdate(entity, null, null); } public void delete(Group entity) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 8.9K bytes - Viewed (0)