- Sort Score
- Result 10 results
- Languages All
Results 201 - 210 of 1,068 for setOut (0.48 sec)
-
src/main/java/org/codelibs/core/text/Tokenizer.java
private int ttype = TT_NOTHING; private String sval; private char[] buf = new char[20]; private int peekc = NEED_CHAR; private byte peekct = 0; static { setup(defaultCtype); } /** * Creates a {@link Tokenizer}. * * @param str * The string. Must not be {@literal null}. */ public Tokenizer(final String str) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 8.8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponseTest.java
/** * Unit tests for Trans2QueryPathInformationResponse */ class Trans2QueryPathInformationResponseTest { private Trans2QueryPathInformationResponse response; @BeforeEach void setUp() { response = new Trans2QueryPathInformationResponse(Trans2QueryPathInformationResponse.SMB_QUERY_FILE_BASIC_INFO); } @Nested @DisplayName("Constructor Tests") class ConstructorTests {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java
assertEquals(expectedSize, request.size()); } @Test @DisplayName("Test encode with name only (no timeout specified)") void testEncodeWithNameOnly() { // Setup String pipeName = "TestPipe"; FsctlPipeWaitRequest request = new FsctlPipeWaitRequest(pipeName); byte[] nameBytes = pipeName.getBytes(StandardCharsets.UTF_16LE); byte[] buffer = new byte[100];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/IndexForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.wizard; /** * Form class for the admin wizard index page. * This form handles the initial setup and configuration * in the administrative wizard interface. */ public class IndexForm { /** * Default constructor for index form. * Creates a new instance with default values. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/synonym/SynonymFileTest.java
public class SynonymFileTest extends UnitFessTestCase { private SynonymFile synonymFile; // TODO /* private File file1; @Override public void setUp() throws Exception { super.setUp(); file1 = File.createTempFile("synonym", ".txt"); FileUtil.writeBytes(file1.getAbsolutePath(), "a1=>A1\nb1,b2 => B1\nc1 => C1, C2\nx1,X1\ny1, Y1, y2"
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http/CancelTest.kt
val handshakeCertificates = platform.localhostHandshakeCertificates() private lateinit var server: MockWebServer private lateinit var client: OkHttpClient val listener = RecordingEventListener() fun setUp(mode: Pair<CancelMode, ConnectionType>) { this.cancelMode = mode.first this.connectionType = mode.second if (connectionType == H2) { platform.assumeHttp2Support() }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 9.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SpnegoContextTest.java
// The mock setup is unnecessary since we never call it assertFalse(ctx.isEstablished()); verify(this.mechContext, never()).isEstablished(); } @Test @DisplayName("getNetbiosName returns null and does not call delegate") void testGetNetbiosName() { SpnegoContext ctx = newContext(); // The mock setup is unnecessary since we never call it
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/boostdoc/AdminBoostdocAction.java
RenderDataUtil.register(data, "boostDocumentRuleItems", boostDocumentRuleService.getBoostDocumentRuleList(boostDocPager)); }).useForm(SearchForm.class, setup -> { setup.setup(form -> { copyBeanToBean(boostDocPager, form, op -> op.include("urlExpr", "boostExpr")); }); }); } private HtmlResponse asEditHtml() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java
return asHtml(path_AdminRole_AdminRoleJsp).renderWith(data -> { RenderDataUtil.register(data, "roleItems", roleService.getRoleList(rolePager)); // page navi }).useForm(SearchForm.class, setup -> { setup.setup(form -> { copyBeanToBean(rolePager, form, op -> op.include("id")); }); }); } private HtmlResponse asEditHtml() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.2K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/collect/SetIterationBenchmark.java
@Param("1234") private SpecialRandom random; @Param({"ImmutableSetImpl", "HashSetImpl"}) private SetImpl impl; // the following must be set during setUp private Set<Element> setToTest; @BeforeExperiment void setUp() { CollectionBenchmarkSampleData sampleData = new CollectionBenchmarkSampleData(true, random, 0.8, size); setToTest = (Set<Element>) impl.create(sampleData.getValuesInSet());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2K bytes - Viewed (0)