- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 1,008 for greatest (0.46 sec)
-
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrConnect2.java
* This class provides functionality to establish a connection to the * Security Account Manager (SAM) database using the SAMR RPC interface. */ public class MsrpcSamrConnect2 extends samr.SamrConnect2 { /** * Creates a new request to connect to the SAM service. * * @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 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
return true; } /** * Creates a property item from a system property key. * * @param key the property key * @return map containing the key-value pair */ protected static Map<String, String> createPropItem(final String key) { return createItem(key, System.getProperty(key)); } /** * Creates a key-value item map for display. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/CreateForm.java
* Mapping dictionaries allow administrators to define synonym mappings * where multiple input terms can be mapped to a single output term for search normalization. * */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { // Default constructor } /** Dictionary identifier */ @Required public String dictId;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/CreateForm.java
* This form handles the creation of synonym mappings that expand * search queries to include related terms. * */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { } /** The dictionary ID to which this synonym entry belongs */ @Required public String dictId;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrOpenDomain.java
* This class implements the SAMR OpenDomain operation for obtaining * a handle to a specific domain in the Security Account Manager. */ public class MsrpcSamrOpenDomain extends samr.SamrOpenDomain { /** * Creates a new request to open a domain handle. * * @param handle the SAM policy handle * @param access the desired access rights * @param sid the security identifier of the domain
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessVersion.java
*/ VERSION_1(0x00010001), /** * Witness Protocol Version 2 - Windows Server 2012 R2 and later */ VERSION_2(0x00020000); private final int version; /** * Creates a new WitnessVersion with the specified version value. * * @param version the numeric version value */ WitnessVersion(int version) { this.version = version; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComBlankResponse.java
* * This is a generic response message for SMB commands that don't * return specific data in their response. */ public class SmbComBlankResponse extends ServerMessageBlock { /** * Creates a new blank SMB1 response. * * @param config the CIFS configuration */ public SmbComBlankResponse(final Configuration config) { super(config); } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PythonJob.java
*/ public class PythonJob extends ExecJob { /** Logger instance for this class */ static final Logger logger = LogManager.getLogger(PythonJob.class); /** * Default constructor for PythonJob. * Creates a new instance of the Python job with default settings. */ public PythonJob() { super(); } /** The Python script filename to execute */ protected String filename;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.2K bytes - Viewed (0) -
docs/uk/docs/tutorial/path-params-numeric-validations.md
## Валідація числових даних: float, більше ніж і менше ніж Валідація чисел також працює для значень типу `float`. Ось де стає важливо мати можливість оголошувати <abbr title="greater than (більше ніж)"><code>gt</code></abbr>, а не тільки <abbr title="greater than or equal (більше або дорівнює)"><code>ge</code></abbr>. Це дозволяє, наприклад, вимагати, щоб значення було більше `0`, навіть якщо воно менше `1`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 13:35:49 UTC 2025 - 9.9K bytes - Viewed (0)