- Sort Score
- Result 10 results
- Languages All
Results 561 - 570 of 1,439 for result1 (0.04 sec)
-
android/guava/src/com/google/common/math/LinearTransformation.java
public double transform(double x) { return x * slope + yIntercept; } @Override public LinearTransformation inverse() { LinearTransformation result = inverse; return (result == null) ? inverse = createInverse() : result; } @Override public String toString() { return String.format("y = %g * x + %g", slope, yIntercept); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 9.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/TreeTraverser.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileStandardInfoTest.java
// Test toString String result = fileStandardInfo.toString(); // Verify string contains expected values assertTrue(result.contains("SmbQueryInfoStandard")); assertTrue(result.contains("allocationSize=" + expectedAllocationSize)); assertTrue(result.contains("endOfFile=" + expectedEndOfFile)); assertTrue(result.contains("numberOfLinks=" + expectedNumberOfLinks));Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2FindNext2Test.java
String result = trans2FindNext2.toString(); assertNotNull(result); assertTrue(result.contains("Trans2FindNext2")); assertTrue(result.contains("sid=" + TEST_SID)); assertTrue(result.contains("searchCount=50")); assertTrue(result.contains("informationLevel=0x")); assertTrue(result.contains("resumeKey=0x" + Hexdump.toHexString(TEST_RESUME_KEY, 4)));Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java
FileBothDirectoryInfo e; int lastNameBufferIndex = bufferIndex + this.lastNameOffset; final FileBothDirectoryInfo[] results = new FileBothDirectoryInfo[getNumEntries()]; for (int i = 0; i < getNumEntries(); i++) { results[i] = e = new FileBothDirectoryInfo(getConfig(), isUseUnicode()); e.decode(buffer, bufferIndex, len); /*Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java
})) .status(ApiResult.Status.OK) .result()); } /** * Creates a new synonym dictionary item. * * @param dictId the dictionary ID * @param body the request body containing synonym item information * @return JSON response with result status */ // POST /api/admin/dict/synonym/setting/{dictId} @ExecuteRegistered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/FakeTimeLimiterTest.java
super.setUp(); timeLimiter = new FakeTimeLimiter(); } public void testCallWithTimeout_propagatesReturnValue() throws Exception { String result = timeLimiter.callWithTimeout(Callables.returning(RETURN_VALUE), DELAY_MS, MILLISECONDS); assertThat(result).isEqualTo(RETURN_VALUE); } public void testCallWithTimeout_wrapsCheckedException() throws Exception { Exception exception = new SampleCheckedException();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/io/ContentCacheTest.java
byte[] buffer = new byte[1024]; int bytesRead = stream.read(buffer); assertEquals(data.length, bytesRead); String result = new String(buffer, 0, bytesRead, "UTF-8"); assertEquals(testContent, result); } } @Test public void testFileBasedCacheGetInputStream() throws IOException { String testContent = "Hello, World!";
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 10.3K bytes - Viewed (0) -
cmd/iam-etcd-store_test.go
{"config/iam/groups/foo/config.json", "config/iam/groups/", "config.json", "foo"}, } for i, test := range specs { result := extractPathPrefixAndSuffix(test.path, test.prefix, test.suffix) if result != test.expected { t.Errorf("unexpected result on test[%v]: expected[%s] but had [%s]", i, test.expected, result) } }Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Apr 23 18:58:53 UTC 2021 - 1.5K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbRandomAccessFileTest.java
} return null; } }).when(smbFile).send(any(SmbComReadAndX.class), any(SmbComReadAndXResponse.class)); int result = smbRandomAccessFile.read(); assertEquals(42, result); assertEquals(1, smbRandomAccessFile.getFilePointer()); } @Test void testReadEOF() throws SmbException { // Mock the read operation to return EOFRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.3K bytes - Viewed (0)