- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 19 for nextToken (0.06 sec)
-
src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java
finalOffset = correctOffset(blkStart + nextToken.endOffset); offsetAttr.setOffset(correctOffset(blkStart + nextToken.startOffset), finalOffset); posIncAttr.setPositionIncrement(nextToken.posInc); return true; } } } static MyToken getNextUniqueToken(final PriorityQueue<MyToken> que, final MyToken prev) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sat Mar 15 06:51:20 UTC 2025 - 17K bytes - Viewed (0) -
src/test/java/org/codelibs/core/text/TokenizerTest.java
assertThat(tokenizer.nextToken(), is(Tokenizer.TT_EOF)); assertThat(tokenizer.nextToken(), is(Tokenizer.TT_EOF)); } /** * @throws Exception */ @Test public void testWhitespace() throws Exception { final Tokenizer tokenizer = new Tokenizer("\t \n"); assertThat(tokenizer.nextToken(), is(Tokenizer.TT_EOF)); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
try (final JsonParser jsonParser = jsonFactory.createJsonParser(jwtClaim)) { while (jsonParser.nextToken() != JsonToken.END_OBJECT) { final String name = jsonParser.getCurrentName(); if (name != null) { jsonParser.nextToken(); if (jsonParser.getCurrentToken() == JsonToken.START_ARRAY) { // Handle array type
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
final StringTokenizer st = new StringTokenizer(textual, "-"); if (st.countTokens() < 3 || !st.nextToken().equals("S")) { // need S-N-M throw new SmbException("Bad textual SID format: " + textual); } this.revision = Byte.parseByte(st.nextToken()); final String tmp = st.nextToken(); long id = 0; if (tmp.startsWith("0x")) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16K bytes - Viewed (0) -
cmd/s3-zip-handlers.go
Name: objName, Size: int64(file.UncompressedSize64), ModTime: zipObjInfo.ModTime, }) count++ } next: nextToken = objName } if isTruncated { listObjectsInfo.IsTruncated = true listObjectsInfo.NextContinuationToken = nextToken } return listObjectsInfo, nil } // getFilesFromZIPObject reads a partial stream of a zip file to build the zipindex.Files index
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/text/Tokenizer.java
*/ public String getStringValue() { return sval; } /** * Advances to the next token. * * @return The type of the token. */ public int nextToken() { initVal(); if (processEOF()) { return ttype; } if (processWhitespace()) { return ttype; } if (processWord()) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/Handler.java
final StringTokenizer tokenizer = new StringTokenizer(path, "|"); while (tokenizer.hasMoreTokens()) { final String provider = tokenizer.nextToken().trim(); if (provider.equals("jcifs.smb1")) { continue; } final String className = provider + "." + protocol + ".Handler";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
src/archive/tar/reader.go
buf.Write(blk[:]) for _, c := range blk { if c == '\n' { cntNewline++ } } } return nil } // nextToken gets the next token delimited by a newline. This assumes that // at least one newline exists in the buffer. nextToken := func() string { cntNewline-- tok, _ := buf.ReadString('\n') return strings.TrimRight(tok, "\n") } // Parse for the number of entries.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Mar 08 01:59:14 UTC 2024 - 26.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SID.java
final StringTokenizer st = new StringTokenizer(textual, "-"); if (st.countTokens() < 3 || !st.nextToken().equals("S")) { // need S-N-M throw new SmbException("Bad textual SID format: " + textual); } this.revision = Byte.parseByte(st.nextToken()); final String tmp = st.nextToken(); long id = 0; if (tmp.startsWith("0x")) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.5K bytes - Viewed (0) -
src/cmd/asm/internal/asm/parse.go
break } operands = operands1 p.symDefRef(w, word, operands) } return p.errorCount == 0 } // nextToken returns the next non-build-comment token from the lexer. // It reports misplaced //go:build comments but otherwise discards them. func (p *Parser) nextToken() lex.ScanToken { for { tok := p.lex.Next() if tok == lex.BuildComment { if p.sawCode {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 14 15:13:11 UTC 2025 - 37.3K bytes - Viewed (0)