- Sort Score
- Result 10 results
- Languages All
Results 501 - 510 of 3,633 for NULL$ (0.05 sec)
-
src/main/java/org/codelibs/fess/es/config/bsentity/BsDataConfig.java
if (available != null) { addFieldToSource(sourceMap, "available", available); } if (boost != null) { addFieldToSource(sourceMap, "boost", boost); } if (createdBy != null) { addFieldToSource(sourceMap, "createdBy", createdBy); } if (createdTime != null) {
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/helper/IndexingHelper.java
final Object idValue = inputDoc.get(fessConfig.getIndexFieldId()); if (idValue == null) { continue; } final Object configIdValue = inputDoc.get(fessConfig.getIndexFieldConfigId()); if (configIdValue == null) { continue; } final QueryBuilder queryBuilder = QueryBuilders.boolQuery()
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 16.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
DialectVersion selected = null; for ( DialectVersion dv : DialectVersion.values() ) { if ( !dv.isSMB2() ) { continue; } if ( dv.getDialect() == getDialectRevision() ) { selected = dv; } } if ( selected == null ) { log.error("Server returned an unknown dialect");
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 22 10:09:46 UTC 2020 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
} @Override public void encode_in ( NdrBuffer _dst ) throws NdrException { _dst.enc_ndr_referent(this.system_name, 1); if ( this.system_name != null ) { _dst.enc_ndr_string(this.system_name); } _dst.enc_ndr_long(this.access_mask); } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:40:13 UTC 2019 - 15.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClSQLException.java
* @param messageCode * メッセージコード * @param args * 引数の並び */ public ClSQLException(final String messageCode, final Object[] args) { this(messageCode, args, null, 0, null, null); } /** * {@link ClSQLException}を作成します。 * * @param messageCode * メッセージコード * @param args * 引数の並び * @param cause
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java
private <T extends Iterator<E>> void internalExecuteAndCompare( T reference, T target, IteratorOperation method) { Object referenceReturnValue = null; PermittedMetaException referenceException = null; Object targetReturnValue = null; Exception targetException = null; try { targetReturnValue = method.execute(target); } catch (Exception e) { // sneaky checked exception targetException = e;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 20.6K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java
if (synonymMap != null && synonymMap.fst == null) { this.synonymMap = null; } } else { this.synonymLoader = null; } if (synonymMap != null) { this.fst = synonymMap.fst; this.fstReader = fst.getBytesReader(); scratchArc = new FST.Arc<>(); } ch = 0;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 17K bytes - Viewed (0) -
guava/src/com/google/common/collect/TreeBasedTable.java
} if (upperBound != null) { map = map.headMap(upperBound); } return map; } return null; } @Override void maintainEmptyInvariant() { updateWholeRowField(); if (wholeRow != null && wholeRow.isEmpty()) { backingMap.remove(rowKey); wholeRow = null; backingRowMap = null; } } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 11.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/OperatingSystemProfileActivator.java
return os != null; } private boolean ensureAtLeastOneNonNull(ActivationOS os) { return os.getArch() != null || os.getFamily() != null || os.getName() != null || os.getVersion() != null; } private boolean determineVersionMatch(String expectedVersion, String actualVersion) { String test = expectedVersion; boolean reverse = false; final boolean result;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
final String value = getHttpFileuploadMaxSize(); return value != null ? DfTypeUtil.toLong(value) : null; } String getHttpFileuploadThresholdSize(); default Long getHttpFileuploadThresholdSizeAsLong() { final String value = getHttpFileuploadThresholdSize(); return value != null ? DfTypeUtil.toLong(value) : null; } String getPasswordInvalidAdminPasswords();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:15 UTC 2024 - 87.2K bytes - Viewed (0)