- Sort Score
- Result 10 results
- Languages All
Results 731 - 740 of 1,033 for greatest (1.76 sec)
-
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
failureUrlBhv.queryDelete(cb -> { cb.query().setConfigId_Equal(configId); }); } /** * Stores a new failure URL or updates an existing one with error information. * Creates a new failure URL entry or increments the error count for an existing URL. * * @param crawlingConfig the crawling configuration associated with the failure * @param errorName the name/type of the error that occurred
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/AbstractStreamingHasherTest.java
assertThrows(IndexOutOfBoundsException.class, () -> sink.putBytes(new byte[8], 0, 16)); assertThrows(IndexOutOfBoundsException.class, () -> sink.putBytes(new byte[8], 0, -1)); } /** * This test creates a long random sequence of inputs, then a lot of differently configured sinks * process it; all should produce the same answer, the only difference should be the number of
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/SmbTransportPool.java
*/ SmbTransport getSmbTransport(CIFSContext tc, Address address, int port, InetAddress localAddr, int localPort, String hostName, boolean exclusive); /** * Gets or creates an SMB transport for the given context. * * @param tc * context to use * @param address the server address * @param port the port number
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/ParamMap.java
* * @param <K> the key type * @param <V> the value type */ public class ParamMap<K, V> implements Map<K, V> { private final Map<K, V> parent; /** * Creates a new parameter map. * * @param parent the parent map */ public ParamMap(final Map<K, V> parent) { this.parent = parent; } /** * Gets the parent map. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/CharSequenceReaderTest.java
assertThrows(IOException.class, () -> reader.ready()); assertThrows(IOException.class, () -> reader.mark(10)); assertThrows(IOException.class, () -> reader.reset()); } /** * Creates a CharSequenceReader wrapping the given CharSequence and tests that the reader produces * the same sequence when read using each type of read method it provides. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmContext.java
String workstation; boolean isEstablished = false; byte[] serverChallenge = null; byte[] signingKey = null; String netbiosName = null; int state = 1; LogStream log; /** * Creates a new NTLM context for SMB1 authentication. * @param auth the NTLM authentication credentials * @param doSigning whether to enable message signing */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7K bytes - Viewed (0) -
cmd/signature-v4-parser_test.go
"abcd", }, // Date queryTime, // Expires. 100 * time.Second, }, expectedErrCode: ErrNone, }, // Test case - 9. // Test case with value greater than 604800 in X-Amz-Expires header. { inputQueryKeyVals: []string{ // valid "X-Amz-Algorithm" header. "X-Amz-Algorithm", signV4Algorithm, // valid "X-Amz-Credential" header.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 27.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/Fingerprint2011Test.java
assertThat(fingerprint(stringA.getBytes(UTF_8))) .isNotEqualTo(fingerprint(stringB.getBytes(UTF_8))); // ISO 8859-1 only has 0-255 (ubyte) representation so throws away UTF-8 characters // greater than 127 (ie with their top bit set). // Don't attempt to do this in real code. assertEquals( fingerprint(stringA.getBytes(ISO_8859_1)), fingerprint(stringB.getBytes(ISO_8859_1))); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 7.8K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/GraphBuilder.java
* constructed based on an existing {@code Graph} using {@link #from(Graph)}. * @since 20.0 */ @Beta @DoNotMock public final class GraphBuilder<N> extends AbstractGraphBuilder<N> { /** Creates a new instance with the specified edge directionality. */ private GraphBuilder(boolean directed) { super(directed); } /** Returns a {@link GraphBuilder} for building directed graphs. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/BeanDesc.java
/** * Returns an {@link Iterable} of {@link FieldDesc}. * * @return An {@link Iterable} of {@link FieldDesc} */ Iterable<FieldDesc> getFieldDescs(); /** * Creates a new instance. * * @param <T> * The type of the Bean class * @param args * The arguments to pass to the constructor * @return A new instance */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 7.9K bytes - Viewed (0)