- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 247 for LABEL (0.02 sec)
-
.github/PULL_REQUEST_TEMPLATE.md
2. Please label this pull request according to what type of issue you are addressing, especially if this is a release targeted pull request. For reference on required PR/issue labels, read here: https://git.k8s.io/community/contributors/devel/sig-release/release.md#issuepr-kind-label
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Fri Jun 06 14:40:00 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServicePacket.java
} int writeResourceRecordWireFormat(final byte[] dst, int dstIndex) { final int start = dstIndex; if (this.recordName == this.questionName) { dst[dstIndex] = (byte) 0xC0; // label string pointer to dstIndex++; dst[dstIndex++] = (byte) 0x0C; // questionName (offset 12) } else { dstIndex += this.recordName.writeWireFormat(dst, dstIndex); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NameServicePacket.java
} int writeResourceRecordWireFormat(final byte[] dst, int dstIndex) { final int start = dstIndex; if (recordName == questionName) { dst[dstIndex] = (byte) 0xC0; // label string pointer to dstIndex++; dst[dstIndex++] = (byte) 0x0C; // questionName (offset 12) } else { dstIndex += recordName.writeWireFormat(dst, dstIndex); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/dtyp/SecurityInfo.java
/** * Flag indicating that system access control list (SACL) information is requested or being set. */ int SACL_SECURITY_INFO = 0x8; /** * Flag indicating that mandatory label information is requested or being set. */ int LABEL_SECURITY_INFO = 0x10; /** * Flag indicating that attribute security information is requested or being set. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/webapp/css/admin/bootstrap.min.css.map
#b3d7ff;\n}\n\n.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {\n color: #6c757d;\n}\n\n.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {\n background-color: #e9ecef;\n}\n\n.custom-control-label {\n position: relative;\n margin-bottom: 0;\n vertical-align: top;\n}\n\n.custom-control-label::before {\n position: absolute;\n top: 0.25rem;\n left: -1.5rem;\n...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 639.3K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
return getAllWebConfigList(true, true, false, idList); } /** * Retrieves web crawling configurations with various filtering options. * * @param withLabelType whether to include label type information (currently not used in implementation) * @param withRoleType whether to include role type information (currently not used in implementation) * @param available whether to filter only available configurations
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.5K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js
}, clickRange: function(e) { var label = e.target.getAttribute('data-range-key'); this.chosenLabel = label; if (label == this.locale.customRangeLabel) { this.showCalendars(); } else { var dates = this.ranges[label]; this.startDate = dates[0]; this.endDate = dates[1];
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 64.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileconfig/CreateForm.java
/** * The create form for File Config. * */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { } /** The IDs of label types associated with this file configuration. */ public String[] labelTypeIds; /** The CRUD operation mode for this form. */ @ValidateTypeFailure public Integer crudMode;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig_details.jsp
items="${handlerNameItems}"> <c:if test="${handlerName==f:u(hn.value)}"> ${f:h(hn.label)}<br/> </c:if> </c:forEach> <la:hidden property="handlerName"/></td> </tr>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 7.7K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt
var certificatePem: String? = null var pkcs8Base64: String? = null for (match in PEM_REGEX.findAll(certificateAndPrivateKeyPem)) { when (val label = match.groups[1]!!.value) { "CERTIFICATE" -> { require(certificatePem == null) { "string includes multiple certificates" }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 21.6K bytes - Viewed (0)