- Sort Score
- Result 10 results
- Languages All
Results 711 - 720 of 1,735 for Result (0.04 sec)
-
src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java
byte[] buffer = new byte[1024]; int result = request.readBytesWireFormat(buffer, 0); assertEquals(0, result); } @Test @DisplayName("Should return 0 regardless of buffer position") void testReadBytesWireFormatDifferentPosition() { byte[] buffer = new byte[1024]; int result = request.readBytesWireFormat(buffer, 100);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/ListMultimapTestSuiteBuilder.java
public static <K, V> ListMultimapTestSuiteBuilder<K, V> using( TestListMultimapGenerator<K, V> generator) { ListMultimapTestSuiteBuilder<K, V> result = new ListMultimapTestSuiteBuilder<>(); result.usingGenerator(generator); return result; } @SuppressWarnings("rawtypes") // class literals @Override protected List<Class<? extends AbstractTester>> getTesters() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/writer/SuggestWriter.java
* @param items an array of suggest items to be written to the index * @param update a boolean flag indicating whether to update existing items * @return a result object containing information about the write operation */ SuggestWriterResult write(Client client, SuggestSettings settings, String index, SuggestItem[] items, boolean update); /**
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/StatementUtil.java
logger.log(format("ECL0017", e.getMessage()), e); } } /** * Returns the result set. * * @param statement * {@link Statement}. Must not be {@literal null}. * @return The result set. */ public static ResultSet getResultSet(final Statement statement) { assertArgumentNotNull("statement", statement);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResultData.java
/** * This class represents the result data of a crawl. */ public class ResultData implements Serializable { private static final long serialVersionUID = 1L; /** The name of the transformer. */ protected String transformerName; /** The data of the result. */ protected byte[] data; /** The encoding of the result. */ protected String encoding;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.7K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/TestProjectBuilder.java
throws ProjectBuildingException { ProjectBuildingResult result = super.build(pomFile, configuration); result.getProject().setRemoteArtifactRepositories(Collections.emptyList()); return result; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
guava/src/com/google/common/hash/LittleEndianByteArray.java
return byteArray.getLongLittleEndian(input, offset); } /** * Similar to load64, but allows offset + 8 > input.length, padding the result with zeroes. This * has to explicitly reverse the order of the bytes as it packs them into the result which makes * it slower than the native version. * * @param input the input bytes * @param offset the offset into the array at which to start reading
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 12.3K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/math/BigIntegerMathBenchmark.java
assert n1 <= n2; if (IntMath.log2(n2, CEILING) * (n2 - n1) < Long.SIZE - 1) { // the result will definitely fit into a long long result = 1; for (int i = n1 + 1; i <= n2; i++) { result *= i; } return BigInteger.valueOf(result); } /* * We want each multiplication to have both sides with approximately the same number of digits.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/fileauth/ApiAdminFileauthAction.java
.total(pager.getAllRecordCount()) .status(ApiResult.Status.OK) .result()); } // GET /api/admin/fileauth/setting/{id} /** * Returns specific file authentication setting by ID. * * @param id the file authentication setting ID
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java
.total(pager.getAllRecordCount()) .status(ApiResult.Status.OK) .result()); } // GET /api/admin/elevateword/{id} /** * Retrieves a specific elevate word setting by ID. * * @param id the ID of the elevate word to retrieve
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.8K bytes - Viewed (0)