- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 211 for has_value (0.07 sec)
-
tensorflow/c/c_api_experimental_test.cc
TF_NewShapeAndTypeList(input_shapes_vec.size()); for (size_t i = 0; i < input_shapes_vec.size(); ++i) { const auto& input_shape = input_shapes_vec[i]; if (input_shape.has_value()) { TF_ShapeAndTypeListSetShape(input_shapes, i, input_shape->data(), input_shape->size()); } else { TF_ShapeAndTypeListSetUnknownShape(input_shapes, i);
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Tue Jan 17 22:27:52 UTC 2023 - 13.1K bytes - Viewed (0) -
src/test/java/jcifs/util/ServerResponseValidatorTest.java
// Trigger integer overflow prevention try { validator.safeAdd(Integer.MAX_VALUE, Integer.MAX_VALUE); } catch (SmbException e) { // Expected } try { validator.safeMultiply(Integer.MAX_VALUE, 2); } catch (SmbException e) { // Expected }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/SmbNegotiationResponseTest.java
when(negotiationResponse.getSendBufferSize()).thenReturn(Integer.MAX_VALUE); when(negotiationResponse.getReceiveBufferSize()).thenReturn(Integer.MAX_VALUE); when(negotiationResponse.getTransactionBufferSize()).thenReturn(Integer.MAX_VALUE); assertEquals(Integer.MAX_VALUE, negotiationResponse.getSendBufferSize()); assertEquals(Integer.MAX_VALUE, negotiationResponse.getReceiveBufferSize());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileEndOfFileInformationTest.java
assertEquals("EndOfFileInformation[endOfFile=0]", info2.toString()); // Test max value FileEndOfFileInformation info3 = new FileEndOfFileInformation(Long.MAX_VALUE); assertEquals("EndOfFileInformation[endOfFile=" + Long.MAX_VALUE + "]", info3.toString()); } @Test @DisplayName("Test multiple encode operations") void testMultipleEncodeOperations() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopyTest.java
// Given byte[] maxKey = new byte[SOURCE_KEY_SIZE]; Arrays.fill(maxKey, (byte) 0xFF); SrvCopychunk chunk = new SrvCopychunk(Long.MAX_VALUE, Long.MAX_VALUE, Integer.MAX_VALUE); SrvCopychunkCopy copy = new SrvCopychunkCopy(maxKey, chunk); byte[] buffer = new byte[100]; // When int bytesWritten = copy.encode(buffer, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.1K bytes - Viewed (0) -
guava/src/com/google/common/math/LongMath.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Aug 29 16:20:07 UTC 2025 - 46.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/jcifs/SidResolverTest.java
when(sidResolver.getGroupMemberSids(any(CIFSContext.class), anyString(), any(SID.class), eq(Integer.MAX_VALUE), anyInt())) .thenReturn(new SID[0]); SID[] result = sidResolver.getGroupMemberSids(mockContext, testServerName, mockDomainSid, Integer.MAX_VALUE, 0); assertNotNull(result); } @Test void testGetGroupMemberSids_ZeroRid() throws CIFSException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 15.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java
// The comparator b2 - b1 with MAX_VALUE and MIN_VALUE causes overflow List<Integer> executionOrder = PriorityTrackingBooster.getExecutionOrder(); assertEquals(3, executionOrder.size()); assertEquals(Integer.valueOf(Integer.MIN_VALUE), executionOrder.get(0)); assertEquals(Integer.valueOf(Integer.MAX_VALUE), executionOrder.get(1));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ContiguousSetTest.java
ContiguousSet.closed(Integer.MIN_VALUE, Integer.MAX_VALUE), ContiguousSet.create(Range.<Integer>all(), integers())); assertEquals( ContiguousSet.closed(Integer.MIN_VALUE, Integer.MAX_VALUE), ContiguousSet.create(Range.atLeast(Integer.MIN_VALUE), integers())); assertEquals( ContiguousSet.closed(Integer.MIN_VALUE, Integer.MAX_VALUE),
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 19.6K bytes - Viewed (0)