- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 962 for set_op (0.04 seconds)
-
src/test/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticatorTest.java
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInfo; public class SpnegoAuthenticatorTest extends UnitFessTestCase { @Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo); } @Override protected void tearDown(TestInfo testInfo) throws Exception { super.tearDown(testInfo); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 4.8K bytes - Click Count (0) -
src/test/java/jcifs/SmbWatchHandleTest.java
@BeforeEach void setUp() { mockNotifications = new ArrayList<>(); mockNotifications.add(fileNotifyInfo1); mockNotifications.add(fileNotifyInfo2); mockNotifications.add(fileNotifyInfo3); } /** * Test watch() method returning notifications */ @Test void testWatch() throws CIFSException { // Setup mock behaviorCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 13.2K bytes - Click Count (1) -
src/test/java/jcifs/BaseTest.java
* All test classes should extend this to ensure consistent test setup. */ @ExtendWith(MockitoExtension.class) public abstract class BaseTest { protected final Logger logger = LoggerFactory.getLogger(getClass()); @BeforeEach void baseSetUp() { // Common setup for all tests logger.debug("Setting up test: {}", getClass().getSimpleName()); } /**Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 1.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/duplicatehost/AdminDuplicatehostAction.java
RenderDataUtil.register(data, "duplicateHostItems", duplicateHostService.getDuplicateHostList(duplicateHostPager)); // page navi }).useForm(SearchForm.class, setup -> { setup.setup(form -> { copyBeanToBean(duplicateHostPager, form, op -> op.include("regularName", "duplicateHostName")); }); }); } private HtmlResponse asEditHtml() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 15.6K bytes - Click Count (0) -
cmd/xl-storage_test.go
func TestXLStorageListDir(t *testing.T) { // create xlStorage test setup xlStorage, _, err := newXLStorageTestSetup(t) if err != nil { t.Fatalf("Unable to create xlStorage test setup, %s", err) } // create xlStorage test setup. xlStorageDeletedStorage, diskPath, err := newXLStorageTestSetup(t) if err != nil { t.Fatalf("Unable to create xlStorage test setup, %s", err) }
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 66K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java
RenderDataUtil.register(data, "dataConfigItems", dataConfigService.getDataConfigList(dataConfigPager)); registerHandlerNames(data); }).useForm(SearchForm.class, setup -> { setup.setup(form -> { copyBeanToBean(dataConfigPager, form, op -> op.include("name", "handlerName", "description")); }); }); } private HtmlResponse asEditHtml() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 21K bytes - Click Count (0) -
android/guava-testlib/test/com/google/common/collect/testing/MapTestSuiteBuilderTests.java
AtomicBoolean setUpRan = new AtomicBoolean(); Runnable setUp = () -> assertFalse("previous tearDown should have run before setUp", setUpRan.getAndSet(true)); Runnable tearDown = () -> assertTrue("setUp should have run", setUpRan.getAndSet(false)); return MapTestSuiteBuilder.using(new CheckSetUpHashMapGenerator(setUpRan)) .named("setUpTearDown") .withFeatures(
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 19:26:39 GMT 2026 - 11.2K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/TransTransactNamedPipeResponseTest.java
@Mock private SmbNamedPipe mockPipe; @Mock private TransactNamedPipeInputStream mockPipeIn; @InjectMocks private TransTransactNamedPipeResponse response; @BeforeEach void setUp() { // Initialize mocks created above MockitoAnnotations.openMocks(this); // We need to manually inject the mock as we are not using @InjectMocks on the constructorCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 5.3K bytes - Click Count (0) -
.github/workflows/iam-integrations.yaml
- ldap: "localhost:389" openid: "http://127.0.0.1:5556/dex" steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: go-version: ${{ matrix.go-version }} check-latest: true - name: Test LDAP/OpenID/Etcd combo env: _MINIO_LDAP_TEST_SERVER: ${{ matrix.ldap }}Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Apr 09 14:28:39 GMT 2025 - 5.3K bytes - Click Count (0) -
android/guava-testlib/test/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilderTest.java
return Collections.<Class<? extends AbstractTester>>singletonList(MyTester.class); } } public void testLifecycle() { boolean[] setUp = {false}; Runnable setUpRunnable = () -> setUp[0] = true; boolean[] tearDown = {false}; Runnable tearDownRunnable = () -> tearDown[0] = true; MyTestSuiteBuilder builder = new MyTestSuiteBuilder(); Test test =
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 19:26:39 GMT 2026 - 2.1K bytes - Click Count (0)