- Sort Score
- Result 10 results
- Languages All
Results 2041 - 2050 of 2,200 for _default (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
* * This class extends FessBaseAction and serves as the foundation for all search-related * web actions in the application. */ public abstract class FessSearchAction extends FessBaseAction { /** * Default constructor. */ public FessSearchAction() { super(); } /** The field name used for label-based search filtering. */ protected static final String LABEL_FIELD = "label";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/Utf8Test.java
expected[112] = 786432; expected[118] = 786432; expected[119] = 1048576; expected[120] = 458752; expected[121] = 524288; expected[122] = 65536; // Anything not assigned was the default 0. return expected; } /** * Helper to run the loop to test all the permutations for the number of bytes specified. * * @param numBytes the number of bytes in the byte array
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SpnegoContext.java
try { spnegoToken = switch (token[0]) { case (byte) 0x60 -> new NegTokenInit(token); case (byte) 0xa1 -> new NegTokenTarg(token); default -> throw new SpnegoException("Invalid token type"); }; return spnegoToken; } catch (final IOException e) { throw new SpnegoException("Invalid token"); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SIDCacheImpl.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 13.6K bytes - Viewed (0) -
cmd/perf-tests.go
type netperfReader struct { n uint64 eof chan struct{} buf []byte } func (m *netperfReader) Read(b []byte) (int, error) { select { case <-m.eof: return 0, io.EOF default: } n := copy(b, m.buf) atomic.AddUint64(&m.n, uint64(n)) return n, nil } func netperf(ctx context.Context, duration time.Duration) madmin.NetperfNodeResult {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 11.7K bytes - Viewed (0) -
docs/debugging/inspect/export.go
return nil, e } enc := json.NewEncoder(buf) if e := enc.Encode(struct { Versions []version }{Versions: versions}); e != nil { return nil, e } data = b default: return nil, fmt.Errorf("unknown metadata version %d", minor) } if datajson { b, e := data.json() if e != nil { return nil, e } buf = bytes.NewBuffer(b) }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jan 17 19:38:44 UTC 2025 - 9.1K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java
public ActionResponse getResponse(final SsoResponseType responseType) { return switch (responseType) { case METADATA -> getMetadataResponse(); case LOGOUT -> getLogoutResponse(); default -> null; }; } /** * Gets the metadata response. * @return The metadata response. */ protected ActionResponse getMetadataResponse() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.4K bytes - Viewed (3) -
cmd/peer-rest-server.go
blockSize, err := strconv.ParseUint(blockSizeStr, 10, 64) if err != nil { blockSize = 4 * humanize.MiByte // default value } fileSize, err := strconv.ParseUint(fileSizeStr, 10, 64) if err != nil { fileSize = 1 * humanize.GiByte // default value } opts := madmin.DriveSpeedTestOpts{ Serial: serial, BlockSize: blockSize, FileSize: fileSize, }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 53.4K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Strings.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 27 17:53:41 UTC 2025 - 12.2K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedSet.java
Comparator<? super E> comparator, E... elements) { checkNotNull(elements); switch (elements.length) { case 0: return emptySet(comparator); default: SortedSet<E> delegate = new TreeSet<E>(comparator); for (E element : elements) { checkNotNull(element); delegate.add(element); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 15.5K bytes - Viewed (0)