- Sort Score
- Num 10 results
- Language All
Results 401 - 410 of 731 for register (0.13 seconds)
-
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
default: throw new ConfigPropertyNotFoundException(propertyKey); } } }; ComponentUtil.register(fessConfig, "fessConfig"); } @Override protected void tearDown(TestInfo testInfo) throws Exception { ComponentUtil.setFessConfig(null); super.tearDown(testInfo); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.9K bytes - Click Count (0) -
android/guava/src/com/google/common/io/Files.java
checkNotNull(file); checkNotNull(mode); Closer closer = Closer.create(); try { RandomAccessFile raf = closer.register(new RandomAccessFile(file, mode == MapMode.READ_ONLY ? "r" : "rw")); FileChannel channel = closer.register(raf.getChannel()); return channel.map(mode, 0, size == -1 ? channel.size() : size); } catch (Throwable e) { throw closer.rethrow(e); } finally {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jan 05 22:13:21 GMT 2026 - 32.8K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java
private final Cleanable cleanable; MyServerExampleWithCleaner(AtomicBoolean cleanerRan) throws IOException { this.serverSocket = new ServerSocket(0); this.cleanable = cleaner.register(this, closeServerSocketRunnable(serverSocket, cleanerRan)); } @Override public void close() { cleanable.clean(); } } @SuppressWarnings("Java8ApiChecker")Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Feb 27 21:20:19 GMT 2026 - 8.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ldap/LdapManagerTest.java
public class LdapManagerTest extends UnitFessTestCase { @Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo); ComponentUtil.register(new SystemHelper(), "systemHelper"); } @SuppressWarnings("serial") @Test public void test_getSearchRoleName() { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/LogNotificationAppenderTest.java
private LogNotificationAppender appender; @Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo); ComponentUtil.register(new LogNotificationHelper(), "logNotificationHelper"); ComponentUtil.getLogNotificationHelper().drainAll(); ComponentUtil.getFessConfig().setLogNotificationEnabled(true);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 10.7K bytes - Click Count (0) -
build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/test/AntFixture.groovy
private TaskProvider<AntFixtureStop> createStopTask() { final AntFixture fixture = this TaskProvider<AntFixtureStop> stop = project.tasks.register("${name}#stop", AntFixtureStop) stop.configure { it.fixture = fixture } fixture.finalizedBy(stop) return stop } /**
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 10.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardActionTest.java
return "file,smb,smb1,ftp,storage,s3,gcs"; } }); final ProtocolHelper protocolHelper = new ProtocolHelper(); protocolHelper.init(); ComponentUtil.register(protocolHelper, "protocolHelper"); wizardAction = new TestableAdminWizardAction(); } @Override protected void tearDown(TestInfo testInfo) throws Exception {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 9.9K bytes - Click Count (0) -
src/cmd/asm/internal/asm/testdata/arm.s
// ($1 << 20) | /* MCR/MRC */ // (($2^C_SCOND_XOR) << 28) | /* scond */ // (($3 & 15) << 8) | /* coprocessor number */ // (($5 & 7) << 21) | /* coprocessor operation */ // (($7 & 15) << 12) | /* arm register */ // (($9 & 15) << 16) | /* Crn */ // (($11 & 15) << 0) | /* Crm */ // (($12 & 7) << 5) | /* coprocessor information */ // (1<<4)); /* must be set */ // outcode(AMRC, Always, &nullgen, 0, &g); // }
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Dec 15 20:51:01 GMT 2023 - 69K bytes - Click Count (0) -
okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat
viterbo.it vr.it vs.it vt.it vv.it // je : http://www.channelisles.net/register-domains/ // Confirmed by registry <******@****.***> 2013-11-28 je co.je net.je org.je // jm : http://www.com.jm/register.html *.jm // jo : https://www.dns.jo/JoFamily.aspx // Confirmed by registry <******@****.***> 2024-11-17 jo agri.jo ai.jo com.jo edu.jo eng.jo
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Dec 27 13:39:56 GMT 2024 - 309.7K bytes - Click Count (1) -
android/guava/src/com/google/common/util/concurrent/ClosingFuture.java
this(future, new CloseableList()); } private ClosingFuture(ListenableFuture<V> future, CloseableList closeables) { this.state = new State<>(FluentFuture.from(future), closeables); FinalizableReference.register(this); } /** * Returns a future that finishes when this step does. Calling {@code get()} on the returned * future returns {@code null} if the step is successful or throws the same exception that would
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 101.7K bytes - Click Count (0)