- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 375 for Returns (0.03 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResult.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.2K bytes - Viewed (0) -
src/bufio/bufio.go
return &Writer{ buf: make([]byte, size), wr: w, } } // NewWriter returns a new [Writer] whose buffer has the default size. // If the argument io.Writer is already a [Writer] with large enough buffer size, // it returns the underlying [Writer]. func NewWriter(w io.Writer) *Writer { return NewWriterSize(w, defaultBufSize) } // Size returns the size of the underlying buffer in bytes.Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Sep 03 14:04:47 UTC 2025 - 22K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/util/OpenSearchCrawlerConfig.java
/** * Returns the filter index name. * @return The filter index name. */ public String getFilterIndex() { return filterIndex; } /** * Sets the filter index name. * @param filterIndex The filter index name. */ public void setFilterIndex(final String filterIndex) { this.filterIndex = filterIndex; } /**Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java
} /** * Returns the access count. * @return The access count. */ public long getAccessCount() { return accessCount.get(); } /** * Increments the access count and returns the new value. * @return The incremented access count. */ public long incrementAndGetAccessCount() { return accessCount.incrementAndGet(); }Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
* Returns the SuggestSettings instance. * @return The SuggestSettings instance. */ public SuggestSettings settings() { return suggestSettings; } /** * Returns the ReadingConverter instance. * @return The ReadingConverter instance. */ public ReadingConverter getReadingConverter() { return readingConverter; } /**Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 20.7K bytes - Viewed (3) -
misc/cgo/gmp/gmp.go
} return z } func (z *Int) Int64() int64 { if !z.init { return 0 } return int64(C.mpz_get_si(&z.i[0])) } // Neg sets z = -x and returns z. func (z *Int) Neg(x *Int) *Int { x.doinit() z.doinit() C.mpz_neg(&z.i[0], &x.i[0]) return z } // Abs sets z to the absolute value of x and returns z. func (z *Int) Abs(x *Int) *Int {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Apr 11 16:34:30 UTC 2022 - 9.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java
} return new XPathAPI(); } } /** * Returns the header for the result data. * @return The result data header. */ protected String getResultDataHeader() { // TODO support other type return "<?xml version=\"1.0\"?>\n<doc>\n"; } /** * Returns the body of the result data for a single value.Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 23.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
/** * Returns the indices timeout. * @return The indices timeout. */ public String getIndicesTimeout() { return timeoutSettings.indicesTimeout; } /** * Returns the bulk timeout. * @return The bulk timeout. */ public String getBulkTimeout() { return timeoutSettings.bulkTimeout; } /** * Returns the cluster timeout.Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 18.7K bytes - Viewed (0) -
src/bytes/buffer.go
// // To build strings more efficiently, see the [strings.Builder] type. func (b *Buffer) String() string { if b == nil { // Special case, useful in debugging. return "<nil>" } return string(b.buf[b.off:]) } // empty reports whether the unread portion of the buffer is empty. func (b *Buffer) empty() bool { return len(b.buf) <= b.off }
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon May 19 17:38:56 UTC 2025 - 16K bytes - Viewed (0) -
src/bytes/bytes.go
if i := Index(s, sep); i >= 0 { return s[:i], s[i+len(sep):], true } return s, nil, false } // Clone returns a copy of b[:len(b)]. // The result may have additional unused capacity. // Clone(nil) returns nil. func Clone(b []byte) []byte { if b == nil { return nil } return append([]byte{}, b...) } // CutPrefix returns s without the provided leading prefix byte slice
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Sep 03 14:04:47 UTC 2025 - 35.5K bytes - Viewed (0)