- Sort Score
 - Result 10 results
 - Languages All
 
Results 1971 - 1980 of 2,125 for DEFAULT (0.09 sec)
- 
				
				
src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java
QueryBuilder result = matchAllQueryCommand.execute(context, query, boost); assertNotNull(result); assertTrue(result instanceof MatchAllQueryBuilder); // Verify the default normalized boost String json = result.toString().replaceAll("[\\s\\n]", ""); assertEquals("{\"match_all\":{\"boost\":1.0}}", json); } public void test_execute_withEmptyContext() {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.7K bytes - Viewed (0) - 
				
				
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) - 
				
				
guava/src/com/google/common/net/MediaType.java
* Content-Type} header and as such has no support for header-specific considerations such as line * folding and comments. * * <p>For media types that take a charset the predefined constants default to UTF-8 and have a * "_UTF_8" suffix. To get a version without a character set, use {@link #withoutParameters}. * * @since 12.0 * @author Gregory Kick */ @GwtCompatible @Immutable
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) - 
				
				
src/test/java/jcifs/netbios/SessionServicePacketTest.java
} // Concrete implementation for testing abstract class private static class TestSessionServicePacket extends SessionServicePacket { int trailerLength = 10; // Default trailer length for testing int trailerBytesRead = 0; @Override int writeTrailerWireFormat(byte[] dst, int dstIndex) { // Simple mock implementationRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.5K bytes - Viewed (0)