- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 682 for lista (0.02 sec)
-
dbflute_fess/dfprop/outsideSqlMap.dfprop
# o isGenerateProcedureCustomizeEntity: (NotRequired - Default false) # o targetProcedureCatalogList: (NotRequired - Default list:{}) # o targetProcedureSchemaList: (NotRequired - Default list:{}) # o targetProcedureNameList: (NotRequired - Default list:{}) # o executionMetaProcedureNameList: (NotRequired - Default list:{}) # o procedureSynonymHandlingType: (NotRequired - Default NONE) # o isRequiredSqlTitle: (NotRequired - Default true)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 25 06:04:16 UTC 2015 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java
/** * The Fess configuration. */ @Resource protected FessConfig fessConfig; /** * Gets a list of scheduled jobs based on the pager. * @param scheduledJobPager The pager for scheduled jobs. * @return A list of scheduled jobs. */ public List<ScheduledJob> getScheduledJobList(final SchedulerPager scheduledJobPager) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
docs/bucket/replication/setup_ilm_expiry_replication.sh
sleep 30s ./mc ilm rule list siteb/bucket count=$(./mc ilm rule list siteb/bucket --json | jq '.config.Rules | length') if [ $count -ne 1 ]; then echo "BUG: ILM expiry rules not replicated to 'siteb'" exit 1 fi ## Check replication of rules content expDays=$(./mc ilm rule list siteb/bucket --json | jq '.config.Rules[0].Expiration.Days')
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Sep 06 09:42:21 UTC 2024 - 12.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/ImmutableIntArrayTest.java
List<Integer> list = new ArrayList<>(); int num = random.nextInt(10); for (int i = 0; i < num; i++) { list.add(counter.getAndIncrement()); } builder.addAll(list); } }, ADD_ITERABLE { @Override void doIt(ImmutableIntArray.Builder builder, AtomicInteger counter) { List<Integer> list = new ArrayList<>();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CharSourceTest.java
TestCharSource lines = new TestCharSource(LINES); List<String> list = lines.readLines( new LineProcessor<List<String>>() { final List<String> list = new ArrayList<>(); @Override public boolean processLine(String line) throws IOException { list.add(line); return true; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java
/** * Converts the given object to a list of strings. * <p> * If the object is null, an empty list is returned. * If the object is a string, a list containing that string is returned. * If the object is a list, it is cast to a list of strings and returned. * </p> * * @param value the object to be converted to a list of strings * @return a list of strings representing the given object
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 17.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt
SubprojectTestClassTime::totalTime, { largeElement, factor -> List(factor) { SmallSubprojectBucket(largeElement.subProject, parallelization(factor)) } }, { list -> SmallSubprojectBucket(list.map { it.subProject }, parallelization(1)) }, testCoverage.expectedBucketNumber,
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Apr 10 15:09:32 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java
/** * Get the list of IP addresses for IP change notifications * * @return list of IP addresses */ public List<String> getIpAddresses() { return ipAddresses; } /** * Sets the list of IP addresses for IP change notifications. * * @param ipAddresses the list of new IP addresses available for the witness service
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 16.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/ImmutableDoubleArrayTest.java
} public void testCopyOf_iterable_notCollection_nonempty() { List<Double> list = Arrays.asList(0.0, 1.0, 3.0); ImmutableDoubleArray iia = ImmutableDoubleArray.copyOf(iterable(list)); list.set(2, 2.0); assertThat(iia.asList()).containsExactly(0.0, 1.0, 3.0).inOrder(); } public void testCopyOf_iterable_collection_empty() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestDeleteResponse.java
import java.util.ArrayList; import java.util.List; /** * Represents the response of a suggest delete operation. * This class contains information about any errors that occurred during the operation * and the time taken to complete the operation. */ public class SuggestDeleteResponse { /** List of errors that occurred during the operation. */ protected final List<Throwable> errors = new ArrayList<>();
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 2.1K bytes - Viewed (0)