- Sort Score
- Num 10 results
- Language All
Results 2021 - 2030 of 8,165 for public (0.07 seconds)
-
src/main/java/org/codelibs/core/collection/IndexedIterator.java
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 3.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiate.java
* License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. *
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 3.5K bytes - Click Count (3) -
src/main/java/org/codelibs/core/lang/MethodUtil.java
*/ public static boolean isAbstract(final Method method) { return Modifier.isAbstract(method.getModifiers()); } /** * Returns whether the method is <code>public</code>. * * @param method * The method. Cannot be {@literal null} * @return <code>public</code> if the method is public */Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 12.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
public boolean isDone() { return true; } @Override public boolean isCancelled() { return false; // BAD!! } @Override public String get() { throw new CancellationException(); // BAD!! } @Override public String get(long time, TimeUnit unit) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 45.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exec/SuggestCreatorTest.java
super.tearDown(testInfo); } // Test constructor @Test public void test_constructor() { SuggestCreator creator = new SuggestCreator(); assertNotNull(creator); } // Test Options class default values @Test public void test_Options_defaultValues() { SuggestCreator.Options options = new SuggestCreator.Options();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/query/DefaultQueryBuilder.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/service/FessAppServiceTest.java
@Test public void test_wrapQuery_emptyString() { assertEquals("**", service.callWrapQuery("")); } @Test public void test_wrapQuery_singleWildcard() { assertEquals("*", service.callWrapQuery("*")); } @Test public void test_wrapQuery_withSpaces() { assertEquals("*test query*", service.callWrapQuery("test query")); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 2.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
} @Override public String getTrackTotalHits() { return request.getParameter(Constants.TRACK_TOTAL_HITS); } @Override public String getQuery() { return request.getParameter("q"); } @Override public String[] getExtraQueries() { return getParamValueArray(request, "ex_q");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 27 13:56:32 GMT 2026 - 55.4K bytes - Click Count (1) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/DocGenerationException.java
* limitations under the License. */ package gradlebuild.docs; import org.gradle.internal.exceptions.Contextual; @Contextual public class DocGenerationException extends RuntimeException { public DocGenerationException(String message) { super(message); } public DocGenerationException(String message, Throwable throwable) { super(message, throwable); }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 968 bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ForwardingList.java
public int lastIndexOf(@Nullable Object element) { return delegate().lastIndexOf(element); } @Override public ListIterator<E> listIterator() { return delegate().listIterator(); } @Override public ListIterator<E> listIterator(int index) { return delegate().listIterator(index); } @CanIgnoreReturnValue @Override @ParametricNullness public E remove(int index) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 7.8K bytes - Click Count (0)