- Sort Score
- Result 10 results
- Languages All
Results 1621 - 1630 of 3,920 for extenders (0.06 sec)
-
src/main/java/org/codelibs/fess/entity/FessUser.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.entity; import java.io.Serializable; public interface FessUser extends Serializable { String getName(); String[] getRoleNames(); String[] getGroupNames(); String[] getPermissions(); default boolean isEditable() { return false; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 978 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/SearchBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.boostdoc; import org.codelibs.fess.app.web.api.admin.BaseSearchBody; public class SearchBody extends BaseSearchBody { public String urlExpr; public String boostExpr;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 846 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/keymatch/SearchBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.keymatch; import org.codelibs.fess.app.web.api.admin.BaseSearchBody; public class SearchBody extends BaseSearchBody { public String term; public String query;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 839 bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/FilteredMapTest.java
*/ package com.google.common.collect; import com.google.common.annotations.GwtCompatible; import java.util.Map; @GwtCompatible @ElementTypesAreNonnullByDefault public class FilteredMapTest extends AbstractFilteredMapTest { @Override Map<String, Integer> createUnfiltered() { return Maps.newHashMap(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 19 20:34:55 UTC 2024 - 917 bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/exception/OpenSearchAccessException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.crawler.exception; public class OpenSearchAccessException extends CrawlerSystemException { private static final long serialVersionUID = 1L; public OpenSearchAccessException(final String message) { super(message); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 1010 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/converter/KatakanaConverterTest.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.suggest.converter; import junit.framework.TestCase; public class KatakanaConverterTest extends TestCase { public void test_convert() throws Exception { /* * TODO ReadingConverter converter = new KatakanaConverter(); converter.init(); assertEquals("ケンサク", * converter.convert("検索").get(0));
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1001 bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/SafeTreeSet.java
} }; private final NavigableSet<E> delegate; public SafeTreeSet() { this(new TreeSet<E>()); } public SafeTreeSet(Collection<? extends E> collection) { this(new TreeSet<E>(collection)); } public SafeTreeSet(Comparator<? super E> comparator) { this(new TreeSet<E>(comparator)); } public SafeTreeSet(SortedSet<E> set) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Feb 20 17:00:05 UTC 2024 - 5.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionIteratorTester.java
@Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3") @ElementTypesAreNonnullByDefault public class CollectionIteratorTester<E extends @Nullable Object> extends AbstractCollectionTester<E> { public void testIterator() { List<E> iteratorElements = new ArrayList<>(); for (E element : collection) { // uses iterator() iteratorElements.add(element); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/cbean/bs/BsUserCB.java
import org.dbflute.cbean.ConditionQuery; import org.opensearch.action.search.SearchRequestBuilder; import org.opensearch.index.query.QueryBuilder; /** * @author ESFlute (using FreeGen) */ public class BsUserCB extends EsAbstractConditionBean { // =================================================================================== // Attribute
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.7K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/SuccessorsFunction.java
* * <pre>{@code * someGraphAlgorithm(startNode, MyNode::getChildren); * }</pre> * * <p>If you have some other mechanism for returning the successors of a node, or one that doesn't * return an {@code Iterable<? extends N>}, then you can use a lambda to perform a more general * transformation: * * <pre>{@code * someGraphAlgorithm(startNode, node -> ImmutableList.of(node.leftChild(), node.rightChild())); * }</pre> *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 26 17:43:39 UTC 2021 - 4.3K bytes - Viewed (0)