- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 68 for SEQUENCE (0.16 sec)
-
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) -
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) -
android/guava/src/com/google/common/base/Utf8.java
* Returns the number of bytes in the UTF-8-encoded form of {@code sequence}. For a string, this * method is equivalent to {@code string.getBytes(UTF_8).length}, but is more efficient in both * time and space. * * @throws IllegalArgumentException if {@code sequence} contains ill-formed UTF-16 (unpaired * surrogates) */ public static int encodedLength(CharSequence sequence) {
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/org/codelibs/fess/dict/mapping/CharMappingItem.java
* When not null, indicates this item has pending updates. */ private String newOutput; /** * Constructs a new CharMappingItem with the specified ID, input sequences, and output sequence. * * @param id the unique identifier for this mapping item * @param inputs array of input character sequences that will be mapped to the output
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K 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) -
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/pac/ASN1Util.java
* @param sequence the DLSequence * @param index the element index * @return sequence element cast to type * @throws PACDecodingException if types are incompatible */ public static <T extends ASN1Primitive> T as(final Class<T> type, final DLSequence sequence, final int index) throws PACDecodingException { return as(type, sequence, index); } /**
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/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)