- Sort Score
- Result 10 results
- Languages All
Results 691 - 700 of 3,211 for List (0.04 sec)
-
src/main/java/org/codelibs/fess/helper/PermissionHelper.java
this.groupPrefix = groupPrefix; } public void setUserPrefix(final String userPrefix) { this.userPrefix = userPrefix; } public List<String> getSmbRoleTypeList(final ResponseData responseData) { final List<String> roleTypeList = new ArrayList<>(); final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (fessConfig.isSmbRoleFromFile()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.3K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/TestTransferListener.java
*/ package org.apache.maven.artifact.resolver; import java.util.ArrayList; import java.util.List; import org.apache.maven.wagon.observers.AbstractTransferListener; public class TestTransferListener extends AbstractTransferListener { private final List<String> transfers = new ArrayList<>(); public List<String> getTransfers() { return transfers; } public void addTransfer(String name) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/DataService.java
package org.codelibs.fess.crawler.service; import java.util.List; import org.codelibs.fess.crawler.entity.AccessResult; import org.codelibs.fess.crawler.util.AccessResultCallback; /** * @author shinsuke * */ public interface DataService<RESULT extends AccessResult<?>> { void store(RESULT accessResult); void update(RESULT accessResult); void update(List<RESULT> accessResult);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
return this.connection.getRequestProperty(key); } @Override public Map<String, List<String>> getRequestProperties () { Map<String, List<String>> map = new HashMap<>(); for ( Entry<String, List<String>> entry : this.requestProperties.entrySet() ) { map.put(entry.getKey(), Collections.unmodifiableList(entry.getValue())); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 25.5K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/ImmutableLongArray.java
* long} values are boxed into {@link Long} instances on demand, which can be very expensive. The * returned list should be used once and discarded. For any usages beyond that, pass the returned * list to {@link com.google.common.collect.ImmutableList#copyOf(Collection) ImmutableList.copyOf} * and use that list instead. */ public List<Long> asList() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 22.3K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeResolver.java
// For example: // class Holder<T> { // void set(T data) {...} // } // Holder<List<?>> should *not* resolve the set() method to set(List<?> data). // Instead, it should create a capture of the wildcard so that set() rejects any List<T>. private static class WildcardCapturer { static final WildcardCapturer INSTANCE = new WildcardCapturer();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 10 19:45:10 UTC 2022 - 24.2K bytes - Viewed (0) -
guava/src/com/google/common/primitives/ImmutableIntArray.java
* int} values are boxed into {@link Integer} instances on demand, which can be very expensive. * The returned list should be used once and discarded. For any usages beyond that, pass the * returned list to {@link com.google.common.collect.ImmutableList#copyOf(Collection) * ImmutableList.copyOf} and use that list instead. */ public List<Integer> asList() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 18:05:56 UTC 2024 - 21.4K bytes - Viewed (0) -
compat/maven-builder-support/src/main/java/org/apache/maven/building/DefaultProblemCollector.java
*/ package org.apache.maven.building; import java.util.ArrayList; import java.util.List; /** * Collects problems that are encountered during settings building. * */ class DefaultProblemCollector implements ProblemCollector { private final List<Problem> problems; private String source; DefaultProblemCollector(List<Problem> problems) { this.problems = (problems != null) ? problems : new ArrayList<>();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/CrawlingInfo.java
*/ package org.codelibs.fess.es.config.exentity; import java.util.List; import org.codelibs.fess.es.config.bsentity.BsCrawlingInfo; /** * @author ESFlute (using FreeGen) */ public class CrawlingInfo extends BsCrawlingInfo { private static final long serialVersionUID = 1L; private List<CrawlingInfoParam> crawlingInfoParamList; public CrawlingInfo() { }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/TestStringMultisetGenerator.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Feb 21 16:49:06 UTC 2024 - 1.7K bytes - Viewed (0)