Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 491 for xlarge (0.05 sec)

  1. CITATION.cff

    cff-version: 1.2.0
    message: "If you use TensorFlow in your research, please cite it using these metadata. Software is available from tensorflow.org."
    title: TensorFlow, Large-scale machine learning on heterogeneous systems
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Sep 06 15:26:23 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilJvm.kt

      require(millis <= Integer.MAX_VALUE) { "$name too large" }
      require(millis != 0L || duration <= 0L) { "$name too small" }
      return millis.toInt()
    }
    
    internal fun checkDuration(
      name: String,
      duration: Duration,
    ): Int {
      check(!duration.isNegative()) { "$name < 0" }
      val millis = duration.inWholeMilliseconds
      require(millis <= Integer.MAX_VALUE) { "$name too large" }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 10.2K bytes
    - Viewed (1)
  3. android/guava/src/com/google/common/collect/CartesianList.java

            axesSizeProduct[i] = Math.multiplyExact(axesSizeProduct[i + 1], axes.get(i).size());
          }
        } catch (ArithmeticException e) {
          throw new IllegalArgumentException(
              "Cartesian product too large; must have size at most Integer.MAX_VALUE");
        }
        this.axesSizeProduct = axesSizeProduct;
      }
    
      private int getAxisIndexForProductIndex(int index, int axis) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 31 13:15:26 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  4. docs/smb3-features/05-rdma-smb-direct-design.md

            
            int dataSize = getDataSize(request);
            return dataSize > 8192 && dataSize <= maxReadWriteSize;  // Use RDMA for large transfers
        }
        
        private void sendWithRdmaReadWrite(ServerMessageBlock2 request) throws IOException {
            // For large data transfers, use RDMA read/write
            
            if (request instanceof Smb2ReadRequest) {
                handleRdmaRead((Smb2ReadRequest) request);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb1/com/ServerDataTest.java

            assertEquals(Integer.MIN_VALUE, serverData.scapabilities);
        }
    
        /**
         * Test large byte arrays
         */
        @Test
        @DisplayName("Test large byte arrays")
        public void testLargeByteArrays() {
            // Test with large encryption key
            byte[] largeKey = new byte[256];
            for (int i = 0; i < largeKey.length; i++) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb1/smb1/NtlmChallengeTest.java

                // With size = 6 * 2 = 12, should produce "000F107F80FF"
                assertTrue(result.contains("000F107F80FF"));
            }
    
            @Test
            @DisplayName("Large challenge array is handled correctly")
            void testLargeChallengeArray() {
                byte[] challenge = new byte[16];
                for (int i = 0; i < 16; i++) {
                    challenge[i] = (byte) i;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/tflite-op-request.md

    **Any other info / logs**
    
    Include any logs or source code that would be helpful to diagnose the problem.
    If including tracebacks, please include the full traceback. Large logs and files
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Jun 15 03:35:58 UTC 2022
    - 879 bytes
    - Viewed (0)
  8. src/main/java/jcifs/SmbConstants.java

         */
        int CAP_NT_FIND = 0x0200;
        /**
         * DFS operations are supported capability.
         */
        int CAP_DFS = 0x1000;
        /**
         * Large read operations are supported capability.
         */
        int CAP_LARGE_READX = 0x4000;
        /**
         * Large write operations are supported capability.
         */
        int CAP_LARGE_WRITEX = 0x8000;
        /**
         * Extended security exchanges are supported capability.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:49:49 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/com/SmbComLockingAndXTest.java

            assertEquals(1, SMBUtil.readInt2(buffer, 8));
            assertEquals(1, SMBUtil.readInt2(buffer, 10));
        }
    
        /**
         * Test that a large file lock (bit 0x10 set) is encoded and decoded correctly.
         */
        @ParameterizedTest
        @ValueSource(ints = { 0x10, 0x11 })
        void largeFileFlagSet_and_decoded_according_to_type(int type) throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/CommonServerMessageBlockRequestTest.java

            int result = request.size();
    
            // Then
            assertEquals(0, result);
            verify(request, times(1)).size();
        }
    
        @Test
        @DisplayName("Test size returns large value for large message")
        void testSizeReturnsLargeValue() {
            // Given
            int largeSize = Integer.MAX_VALUE;
            when(request.size()).thenReturn(largeSize);
    
            // When
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.1K bytes
    - Viewed (0)
Back to top