- Sort Score
- Num 10 results
- Language All
Results 191 - 200 of 501 for Register (0.16 seconds)
-
src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java
}); } /** * Registers available roles and labels for use in web config forms. * Includes role types, label types, and label setting configuration. * * @param data the render data to register the roles and labels with */ protected void registerRolesAndLabels(final RenderData data) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 22.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
protected int maxRedirectCount = 10; /** Availability status of this generator. */ protected Boolean available = null; /** * Registers this thumbnail generator with the thumbnail manager. */ public void register() { ComponentUtil.getThumbnailManager().add(this); } /** * Default constructor for BaseThumbnailGenerator. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 13.4K bytes - Click Count (0) -
src/main/java/jcifs/internal/witness/WitnessRegisterMessage.java
import java.nio.charset.StandardCharsets; import jcifs.dcerpc.ndr.NdrBuffer; import jcifs.dcerpc.ndr.NdrException; /** * WitnessRegister RPC message implementation for MS-SWN specification. * This message is used to register for witness notifications on a specific resource. */ public class WitnessRegisterMessage extends WitnessRpcMessage { // Input parameters for WitnessRegister private WitnessVersion version;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 09:06:40 GMT 2025 - 8.6K bytes - Click Count (0) -
src/cmd/asm/internal/arch/arm.go
(op1 << 20) | // MCR/MRC ((int64(bits) ^ arm.C_SCOND_XOR) << 28) | // scond ((x0 & 15) << 8) | //coprocessor number ((x1 & 7) << 21) | // coprocessor operation ((x2 & 15) << 12) | // ARM register ((x3 & 15) << 16) | // Crn ((x4 & 15) << 0) | // Crm ((x5 & 7) << 5) | // coprocessor information (1 << 4) /* must be set */ return offset, arm.AMRC, true }
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Wed Oct 23 15:18:14 GMT 2024 - 6.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.java
} private void setupVirtualHostHelper(String... paths) { // Register VirtualHostHelper in ComponentUtil VirtualHostHelper virtualHostHelper = new VirtualHostHelper() { @Override public String[] getVirtualHostPaths() { return paths; } }; ComponentUtil.register(virtualHostHelper, "virtualHostHelper");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 13.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/script/groovy/GroovyEngine.java
scriptCache.invalidateAll(); scriptCache.cleanUp(); } /** * Returns the name identifier for this script engine. * * @return "groovy" - the identifier used to register and retrieve this engine */ @Override protected String getName() { return "groovy"; } /** * Gets the current scheduled job from the thread-local job runtime. *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 11.9K bytes - Click Count (0) -
tensorflow/c/eager/c_api_distributed_test.cc
composite_device_name); EXPECT_EQ(TFE_TensorHandleBackingDeviceName(packed_handle, status), composite_device_name); ASSERT_EQ(TF_GetCode(status), TF_OK) << TF_Message(status); // Register and run a function which returns the sum of 3 variables. const string function_def = AddVariablesFunction(); TFE_ContextAddFunctionDef(ctx, function_def.data(), function_def.size(), status);
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Sat Oct 12 05:11:17 GMT 2024 - 23.4K bytes - Click Count (0) -
docs/features/interceptors.md
### Application Interceptors Interceptors are registered as either _application_ or _network_ interceptors. We'll use the `LoggingInterceptor` defined above to show the difference. Register an _application_ interceptor by calling `addInterceptor()` on `OkHttpClient.Builder`: ```java OkHttpClient client = new OkHttpClient.Builder() .addInterceptor(new LoggingInterceptor()) .build();
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Feb 06 02:19:09 GMT 2022 - 8.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
// Register mock helpers ComponentUtil.register(new SystemHelper() { @Override public String getLogFilePath() { return tempDir.getAbsolutePath(); } }, "systemHelper"); ComponentUtil.register(new ProcessHelper() { @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.8K bytes - Click Count (0) -
android/guava/src/com/google/common/io/FileBackedOutputStream.java
FinalizableReference.register(byteSource); } } private static final class FinalizableReference extends FinalizablePhantomReference<ByteSource> { static final FinalizableReferenceQueue referenceQueue = new FinalizableReferenceQueue(); static final Set<FinalizableReference> references = newConcurrentHashSet(); static void register(FbosByteSource referent) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Mar 07 17:30:49 GMT 2026 - 12.4K bytes - Click Count (0)