- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 162 for ridentifier (0.54 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Protocol.kt
* * [iana]: https://www.iana.org/assignments/tls-extensiontype-values */ override fun toString(): String = protocol companion object { /** * Returns the protocol identified by `protocol`. * * @throws IOException if `protocol` is unknown. */ @JvmStatic @Throws(IOException::class) fun get(protocol: String): Protocol {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jun 23 18:58:57 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/UploadForm.java
* This form is used in the admin interface to upload custom protected words dictionary files. */ public class UploadForm { /** * The dictionary ID that identifies which protected words dictionary configuration to update. * This ID corresponds to a specific protected words dictionary instance in the system. */ @Required public String dictId; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
if (isTeredoAddress(ip)) { return false; } byte[] bytes = ip.getAddress(); if ((bytes[8] | (byte) 0x03) != (byte) 0x03) { // Verify that high byte of the 64 bit identifier is zero, modulo // the U/L and G bits, with which we are not concerned. return false; } return (bytes[9] == (byte) 0x00) && (bytes[10] == (byte) 0x5e) && (bytes[11] == (byte) 0xfe); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java
* The CRUD operation mode for this form. * Indicates whether this is a create, read, update, or delete operation. */ @ValidateTypeFailure public Integer crudMode; /** * The unique identifier of the failure URL record being edited. * This is a required field for identifying which failure record to update. */ @Required @Size(max = 1000) public String id; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.mobile=Mobile labels.user_postalAddress=Postal Address labels.postalAddress=Postal Address labels.user_city=City labels.city=City labels.user_teletexTerminalIdentifier=Teletex Terminal Identifier labels.teletexTerminalIdentifier=Teletex Terminal Identifier labels.user_x121Address=x121Address labels.x121Address=x121Address labels.user_businessCategory=Business Category labels.businessCategory=Business Category
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
kotlin-js-store/yarn.lock
integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== dependencies: is-number "^7.0.0" toidentifier@1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jul 22 12:28:51 UTC 2023 - 87.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java
* Number of records to display per page. */ private int pageSize; /** * Current page number being displayed. */ private int currentPageNumber; /** * Unique identifier for the related query. */ public String id; /** * Search term for the related query. */ public String term; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/JobLogService.java
}).createPageNumberList()); return jobLogList; } /** * Retrieves a specific job log by its ID. * * @param id the unique identifier of the job log * @return an optional entity containing the job log if found */ public OptionalEntity<JobLog> getJobLog(final String id) { return jobLogBhv.selectByPK(id); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
throw new DictionaryException("Failed to access dictionaries", e); } } /** * Retrieves a specific dictionary file by its ID. * * @param id the unique identifier of the dictionary file to retrieve * @return an OptionalEntity containing the dictionary file if found, empty otherwise */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
* <li>Process isolation with separate JVM</li> * </ul> */ public class CrawlJob extends ExecJob { private static final Logger logger = LogManager.getLogger(CrawlJob.class); /** * The namespace identifier for the crawling session. * Used to organize and identify crawling activities in the system. * Defaults to the system crawling info name. */ protected String namespace = Constants.CRAWLING_INFO_SYSTEM_NAME;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.6K bytes - Viewed (0)