- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 227 for popular (0.05 seconds)
-
docs/tr/docs/alternatives.md
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Oct 11 17:48:49 GMT 2025 - 28.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/FavoriteLogService.java
* This method looks up the user by their code and creates a new favorite log entry * using the provided lambda function to populate the favorite log data. * * @param userCode the unique code identifying the user * @param favoriteLogLambda a lambda function that accepts UserInfo and FavoriteLog to populate the favorite log data * @return true if the URL was successfully added to favorites, false if the user was not found */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/MultimapsTransformValuesAsMapTest.java
.asMap(); } @Override protected Map<String, Collection<Integer>> makePopulatedMap() { ListMultimap<String, Integer> delegate = ArrayListMultimap.create(); populate(delegate); return Multimaps.transformValues(delegate, Functions.<Integer>identity()).asMap(); }
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Dec 21 14:50:24 GMT 2024 - 1.6K bytes - Click Count (0) -
src/main/resources/fess_label_nl.properties
labels.failureCountThreshold=Foutdrempel labels.fileConfigName=Bestandscrawlconfiguratienaam labels.fileName=Bestandsnaam labels.handlerName=Handlernaam labels.handlerParameter=Parameter labels.handler_script=Script labels.popularWord=Populair woord labels.ignoreFailureType=Genegeerde fouttypen labels.lastAccessTime=Laatste toegangstijd labels.notificationTo=Melding aan labels.num=Aantal labels.pn=Paginanummer labels.protocolScheme=Schema
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 46.1K bytes - Click Count (1) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
* Creates a new LsarLookupSids message. * * @param handle the policy handle * @param sids the SIDs to lookup * @param domains the domain list to populate * @param names the names array to populate * @param level the lookup level * @param count the number of SIDs */Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 44.5K bytes - Click Count (0) -
internal/bpool/bpool.go
} return &BytePoolCap{ c: make(chan []byte, maxSize), w: width, wcap: capwidth, } } // Populate - populates and pre-warms the byte pool, this function is non-blocking. func (bp *BytePoolCap) Populate() { for _, buf := range reedsolomon.AllocAligned(cap(bp.c), bp.wcap) { bp.Put(buf[:bp.w]) } }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 3K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/DependencyCoordinates.java
*/ @Experimental @Immutable public interface DependencyCoordinates extends ArtifactCoordinates { /** * {@return the type of the dependency} * A dependency can be a <abbr>JAR</abbr> file, * a modular-<abbr>JAR</abbr> if it is intended to be placed on the module path, * a <abbr>JAR</abbr> containing test classes, a POM file, <i>etc.</i> */ @Nonnull Type getType(); /**Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Mar 05 14:29:21 GMT 2025 - 2.5K bytes - Click Count (0) -
cmd/update-notifier.go
// color characters, the result is incorrect. line1Length := len(fmt.Sprintf(msgLine1Fmt, newerThan)) line2Length := len(fmt.Sprintf(msgLine2Fmt, updateString)) // Populate lines with color coding. line1InColor := fmt.Sprintf(msgLine1Fmt, color.YellowBold(newerThan)) line2InColor := fmt.Sprintf(msgLine2Fmt, color.CyanBold(updateString)) // calculate the rectangular box size.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sat Mar 09 03:07:08 GMT 2024 - 3.6K bytes - Click Count (0) -
android/guava-testlib/pom.xml
<compileSourceRoot>${project.basedir}/src</compileSourceRoot> </compileSourceRoots> <!-- JPMS needs access to the module sources to complete a modular Java build. We also need to override the base compiler settings (in the root `pom.xml`) to enable MRJAR output. --> <compilerArgs combine.self="override">
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Sep 29 17:59:17 GMT 2025 - 5K bytes - Click Count (0) -
guava/src/com/google/common/util/concurrent/CollectionFuture.java
List<@Nullable Present<V>> values = futures.isEmpty() ? Collections.<@Nullable Present<V>>emptyList() : Lists.<@Nullable Present<V>>newArrayListWithCapacity(futures.size()); // Populate the results list with null initially. for (int i = 0; i < futures.size(); ++i) { values.add(null); } this.values = values; } @OverrideCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 3.9K bytes - Click Count (0)