- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 171 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) -
cmd/admin-heal-ops.go
// was this heal sequence force started? forceStarted bool // heal settings applied to this heal sequence settings madmin.HealOpts // current accumulated status of the heal sequence currentStatus healSequenceStatus // channel signaled by background routine when traversal has // completed traverseAndHealDoneCh chan error // canceler to cancel heal sequence. cancelCtx context.CancelFunc
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 25.4K 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) -
android/guava/src/com/google/common/base/CharMatcher.java
* sequence. Returns a bogus matcher if the sequence contains supplementary characters. */ public static CharMatcher anyOf(CharSequence sequence) { switch (sequence.length()) { case 0: return none(); case 1: return is(sequence.charAt(0)); case 2: return isEither(sequence.charAt(0), sequence.charAt(1)); default:
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 53.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/test/java/jcifs/pac/kerberos/KerberosApRequestTest.java
} @Test @DisplayName("byte[] ctor: top-level non-SEQUENCE triggers PACDecodingException (type mismatch)") void byteArrayConstructor_topLevelNotSequence_throws() throws Exception { // Arrange: Encoded INTEGER instead of SEQUENCE byte[] notASequence = new ASN1Integer(42).getEncoded(); // Act + Assert
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java
int index = offset; update(data, index, SmbConstants.SIGNATURE_OFFSET); index += SmbConstants.SIGNATURE_OFFSET; final byte[] sequence = new byte[8]; SMBUtil.writeInt4(msg.getSignSeq(), sequence, 0); update(sequence, 0, sequence.length); index += 8; if (msg.getCommand() == ServerMessageBlock.SMB_COM_READ_ANDX) { /*
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.9K 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)