- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 618 for setting (0.29 sec)
-
src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java
} @Override public String toImplementationClassName(String className) { return className + "Impl"; } @Override public String fromActionNameToPath(String actionName) { return "/" + actionName.toLowerCase(); } @Override public String fromPathToActionName(String path) { return path.substring(1).toLowerCase();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NbtAddressTest.java
NbtAddress nbtAddress = new NbtAddress(mockName, testAddressInt, false, NbtAddress.H_NODE); assertFalse(nbtAddress.isGroupAddress(mockContext)); // No need to verify since we're not setting up the mock context } @Test void testGetNodeType_CheckDataCalled() throws UnknownHostException { // Test getNodeType when checkData is called (hostName is unknown)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.4K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/testing/FakeTickerTest.java
* See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.testing; import static com.google.common.testing.ReflectionFreeAssertThrows.assertThrows; import static java.util.concurrent.Executors.newFixedThreadPool; import static java.util.concurrent.TimeUnit.MILLISECONDS;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java
assertNull(response.getResults()); } @Test @DisplayName("Test buffer management") void testBufferManagement() { // Test buffer setting and releasing byte[] testBuffer = new byte[1024]; response.setBuffer(testBuffer); byte[] releasedBuffer = response.releaseBuffer(); assertSame(testBuffer, releasedBuffer);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
} } } static String queryLookup(final String query, final String param) { final char in[] = query.toCharArray(); int i, ch, st, eq; st = eq = 0; for (i = 0; i < in.length; i++) { ch = in[i]; if (ch == '&') { if (eq > st) { final String p = new String(in, st, eq - st);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java
* Gets a duplicate host entity from the form, setting audit fields. * * @param form the form containing duplicate host data * @return optional duplicate host entity with audit fields set */ public static OptionalEntity<DuplicateHost> getDuplicateHost(final CreateForm form) { final SystemHelper systemHelper = ComponentUtil.getSystemHelper(); final String username = systemHelper.getUsername();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java
return super.hashCode(); } @Override public String toString() { return getClass().getSimpleName() + ":" + doBuildColumnString(", ") + "@" + Integer.toHexString(hashCode()); } protected abstract String doBuildColumnString(String dm); @Override public String toStringWithRelation() { // #pending return toString(); } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractEntity.java
return super.hashCode(); } @Override public String toString() { return getClass().getSimpleName() + ":" + doBuildColumnString(", ") + "@" + Integer.toHexString(hashCode()); } protected abstract String doBuildColumnString(String dm); @Override public String toStringWithRelation() { // #pending return toString(); } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionResponseTest.java
} @Test @DisplayName("Test hasMoreElements method") void testHasMoreElements() { // Test initial state assertTrue(response.hasMoreElements()); // Test after setting error code (not status) response.setTestErrorCode(1); // Non-zero errorCode indicates error assertFalse(response.hasMoreElements()); // Reset error and test hasMore flag
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderRequest.java
return new ProjectBuilderRequestBuilder(); } /** * Builder for creating ProjectBuilderRequest instances. * This builder provides a fluent API for setting the various properties of a request. */ @NotThreadSafe class ProjectBuilderRequestBuilder { Session session; RequestTrace trace; Path path; Source source;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 11.7K bytes - Viewed (0)