- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 96 for sequence (0.04 sec)
-
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
* * <p>Each mapping item consists of one or more input character sequences that are mapped to a single output * character sequence. The mapping supports both original values and new values for update operations.</p> */ public class CharMappingItem extends DictionaryItem { /** * Array of input character sequences that will be mapped to the output sequence. * These represent the original/current input values for this mapping rule.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Utf8.java
* time and space. * * @throws IllegalArgumentException if {@code sequence} contains ill-formed UTF-16 (unpaired * surrogates) */ public static int encodedLength(CharSequence sequence) { // Warning to maintainers: this implementation is highly optimized. int utf16Length = sequence.length(); int utf8Length = utf16Length; int i = 0; // This loop optimizes for pure ASCII.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessHeartbeatMessage.java
} /** * Sets the sequence number for this heartbeat. * The sequence number should be incremented for each heartbeat request. * * @param sequenceNumber the sequence number */ public void setSequenceNumber(long sequenceNumber) { this.sequenceNumber = sequenceNumber; } /** * Gets the sequence number. * * @return the sequence number */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 5.8K bytes - Viewed (0) -
src/test/java/jcifs/pac/ASN1UtilTest.java
// Test failed casting from sequence ASN1EncodableVector vector = new ASN1EncodableVector(); vector.add(new ASN1Integer(10)); ASN1Sequence sequence = new DERSequence(vector); assertThrows(PACDecodingException.class, () -> { ASN1Util.as(ASN1Boolean.class, sequence, 0); }, "Should throw PACDecodingException for incompatible types in sequence"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt
* 124 : Mapped inline to the sequence: [b2, b3]. * 125 : Mapped inline to the sequence: [b2a, b3]. * 126 : Mapped inline to the sequence: [b2, b3a]. * 127 : Mapped inline to the sequence: [b2a, b3a]. * * The range goes until the beginning of the next range. * * When b2 and b3 are unused, their values are set to 0x2d ('-'). * * Section Index (1,240 bytes) * =========================== *
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 9K bytes - Viewed (0) -
src/main/java/jcifs/pac/ASN1Util.java
throws PACDecodingException { return as(type, sequence, index); } /** * Gets an element from an ASN1Sequence at the specified index and casts it to the specified type * @param <T> the target ASN.1 primitive type * @param type the target class type * @param sequence the ASN1Sequence
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.2K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosApRequest.java
} ASN1Sequence sequence; try { try (ASN1InputStream stream = new ASN1InputStream(new ByteArrayInputStream(token))) { sequence = ASN1Util.as(ASN1Sequence.class, stream); } } catch (IOException e) { throw new PACDecodingException("Malformed Kerberos Ticket", e); } return sequence; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessHeartbeatRequest.java
this.registrationId = registrationId; } /** * Gets the sequence number. * * @return the sequence number */ public long getSequenceNumber() { return sequenceNumber; } /** * Sets the sequence number. * * @param sequenceNumber the sequence number */ public void setSequenceNumber(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/main/java/jcifs/internal/witness/WitnessHeartbeatResponse.java
return returnCode == 0; } /** * Gets the sequence number. * * @return the sequence number */ public long getSequenceNumber() { return sequenceNumber; } /** * Sets the sequence number. * * @param sequenceNumber the sequence number */ public void setSequenceNumber(long sequenceNumber) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 3K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosEncDataTest.java
authDataVector.add(new DERSequence(authElementVector)); vector.add(new DERTaggedObject(10, new DERSequence(authDataVector))); DERSequence sequence = new DERSequence(vector); byte[] encoded = new DERTaggedObject(false, BERTags.APPLICATION, 1, sequence).getEncoded(); KerberosEncData encData = new KerberosEncData(encoded, Collections.emptyMap()); assertEquals("TEST.REALM", encData.getUserRealm());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.7K bytes - Viewed (0)