- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 2,598 for creates (0.04 sec)
-
src/main/java/jcifs/internal/witness/WitnessHeartbeatRequest.java
/** * Represents a witness heartbeat request as defined in MS-SWN specification. * Used to maintain active witness registrations. */ public class WitnessHeartbeatRequest { /** * Creates a new witness heartbeat request. */ public WitnessHeartbeatRequest() { // Default constructor } private String registrationId; private long sequenceNumber;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java
item1.id = 300L; assertEquals(300L, item1.getId()); assertEquals(200L, item2.getId()); } public void test_constructor() { // Test that constructor creates a valid instance TestDictionaryItem newItem = new TestDictionaryItem(); assertNotNull(newItem); assertEquals(0L, newItem.getId()); } public void test_idFieldAccess() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.1K bytes - Viewed (0) -
cmd/xl-storage-free-version.go
package cmd import ( "bytes" "fmt" "github.com/google/uuid" "github.com/minio/minio/internal/bucket/lifecycle" ) const freeVersion = "free-version" // InitFreeVersion creates a free-version to track the tiered-content of j. If j has // no tiered content, it returns false. func (j xlMetaV2Object) InitFreeVersion(fi FileInfo) (xlMetaV2Version, bool) { if fi.SkipTierFreeVersion() {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Mar 02 05:11:03 UTC 2024 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java
/** * Factory for managing CORS handlers based on origin. * Maintains a registry of CORS handlers for different origins and provides lookup functionality. */ public class CorsHandlerFactory { /** * Creates a new instance of CorsHandlerFactory. */ public CorsHandlerFactory() { // Default constructor } private static final Logger logger = LogManager.getLogger(CorsHandlerFactory.class);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcLsarOpenPolicy2.java
* This class provides functionality to open a handle to the LSA policy * database on a remote server using the LSA RPC interface. */ public class MsrpcLsarOpenPolicy2 extends lsarpc.LsarOpenPolicy2 { /** * Creates a new request to open an LSA policy handle. * * @param server the server name to connect to * @param access the desired access rights * @param policyHandle the policy handle to be populated */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
} /** * Internal method to create crawling configuration based on form data. * Determines whether to create a web or file crawler configuration. * * @param form the form containing crawling configuration data * @return the name of the created configuration */ protected String crawlingConfigInternal(final CrawlingConfigForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/TrailersSource.kt
* [IOException]. * * Most callers won't need this interface, and should use [Response.trailers] instead. * * This interface is for test and production code that creates [Response] instances without making * an HTTP call to a remote server. */ interface TrailersSource { @Throws(IOException::class) fun peek(): Headers? = null @Throws(IOException::class)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 18:57:05 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/design/EditForm.java
* This form handles the editing of template and design files used * for customizing the search interface appearance and layout. */ public class EditForm { /** * Creates a new EditForm instance. */ public EditForm() { // Default constructor } /** * The name of the design file being edited.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
} /** Return value from the RPC call. */ public int retval; /** Policy handle to be closed. */ public rpc.policy_handle handle; /** * Creates a new LsarClose message. * * @param handle the policy handle to close */ public LsarClose(final rpc.policy_handle handle) { this.handle = handle; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 44.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcShareEnum.java
MsrpcShareInfo1(final srvsvc.ShareInfo1 info1) { this.netName = info1.netname; this.type = info1.type; this.remark = info1.remark; } } /** * Creates a new request to enumerate shares on a server. * * @param server the server name to enumerate shares from */ public MsrpcShareEnum(final String server) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0)