- Sort Score
- Num 10 results
- Language All
Results 2491 - 2500 of 7,457 for rreturn (0.06 seconds)
-
src/main/java/org/codelibs/core/convert/LongConversionUtil.java
if (StringUtil.isEmpty(s)) { return null; } return Long.valueOf(DecimalFormatUtil.normalize(s)); } /** * Converts the given object to a {@literal long}. * * @param o * the object to convert * @return the converted {@literal long} */ public static long toPrimitiveLong(final Object o) { return toPrimitiveLong(o, null); } /**
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 3.2K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/create/LeaseV2CreateContextResponse.java
} /** * Gets the lease flags from the V2 server response * @return the lease flags */ public int getLeaseFlags() { return leaseFlags; } /** * Gets the parent lease key from the V2 response * @return the parent lease key */ public Smb2LeaseKey getParentLeaseKey() { return parentLeaseKey; } /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 3.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/ElevateWordDbm.java
public String getTableDbName() { return _tableDbName; } @Override public String getTableDispName() { return _tableDispName; } @Override public String getTablePropertyName() { return _tablePropertyName; } @Override public TableSqlName getTableSqlName() { return null; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 10.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/ClickLogDbm.java
public ColumnInfo columnUrlId() { return _columnUrlId; } public ColumnInfo columnDocId() { return _columnDocId; } public ColumnInfo columnOrder() { return _columnOrder; } public ColumnInfo columnQueryId() { return _columnQueryId; } public ColumnInfo columnQueryRequestedAt() { return _columnQueryRequestedAt; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 10.6K bytes - Click Count (0) -
cmd/xl-storage-format-v2-legacy.go
func (x *xlMetaV2VersionHeader) unmarshalV(v uint8, bts []byte) (o []byte, err error) { switch v { case 1: return x.unmarshalV1(bts) case 2: x2 := xlMetaV2VersionHeaderV2{xlMetaV2VersionHeader: x} return x2.UnmarshalMsg(bts) case xlHeaderVersion: return x.UnmarshalMsg(bts) } return bts, fmt.Errorf("unknown xlHeaderVersion: %d", v) } // unmarshalV1 decodes version 1, never released.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 5.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java
* @return this builder instance */ public ProjectBuilderRequestBuilder repositories(List<RemoteRepository> repositories) { this.repositories = repositories; return this; } /** * Builds a new ProjectBuilderRequest with the current builder settings. * * @return a new ProjectBuilderRequest instance */Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 10 07:30:49 GMT 2025 - 11.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/config/exentity/ScheduledJobTest.java
return false; } @Override public boolean isDisappeared() { return false; } @Override public boolean isNonCron() { return false; } @Override public boolean isExecutingNow() { return false; } @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 15.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsLabelType.java
// ======= @Override public LabelTypeDbm asDBMeta() { return LabelTypeDbm.getInstance(); } @Override public String asTableDbName() { return "label_type"; } // ===================================================================================Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 8.5K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/NavigableSetTestSuiteBuilder.java
if (from == Bound.NO_BOUND && to == Bound.INCLUSIVE) { return set.headSet(lastInclusive, true); } else if (from == Bound.EXCLUSIVE && to == Bound.NO_BOUND) { return set.tailSet(firstExclusive, false); } else if (from == Bound.EXCLUSIVE && to == Bound.EXCLUSIVE) { return set.subSet(firstExclusive, false, lastExclusive, false);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Oct 30 16:15:19 GMT 2024 - 6.2K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoResponse.java
/** * Gets the information returned by the query * * @return the information */ public Decodable getInfo() { return this.info; } /** * Gets the information returned by the query, cast to the specified class type * * @param <T> * the type of information to return * @param clazz * the class type to cast the information toCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 6.8K bytes - Click Count (0)