Search Options

Results per page
Sort
Preferred Languages
Advance

Results 731 - 740 of 950 for arra (0.25 sec)

  1. src/test/java/jcifs/internal/smb1/trans/TransCallNamedPipeTest.java

            // Then
            assertEquals(maxData.length, bytesWritten);
        }
    
        @Test
        @DisplayName("Test zero-length write with valid data array")
        void testZeroLengthWrite() {
            // Given
            transCallNamedPipe = new TransCallNamedPipe(mockConfig, TEST_PIPE_NAME, TEST_DATA, 0, 0);
            byte[] dst = new byte[100];
    
            // When
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/NetbiosAddress.java

        /**
         * Retrieves the MAC address of the remote network interface. Samba returns all zeros.
         *
         * @param tc
         *            context to use
         *
         * @return the MAC address as an array of six bytes
         * @throws UnknownHostException
         *             if the host cannot be resolved to
         *             determine the MAC address.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbTransportInternalTest.java

            when(transport.getServerEncryptionKey()).thenReturn(key);
            assertArrayEquals(key, transport.getServerEncryptionKey());
            verify(transport).getServerEncryptionKey();
    
            // Empty array
            byte[] empty = new byte[0];
            when(transport.getServerEncryptionKey()).thenReturn(empty);
            assertArrayEquals(empty, transport.getServerEncryptionKey());
    
            // Null
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/grafana/node/minio-node.json

          "gridPos": {
            "h": 5,
            "w": 6,
            "x": 0,
            "y": 0
          },
          "id": 21,
          "maxDataPoints": 100,
          "options": {
            "colorMode": "value",
            "graphMode": "area",
            "justifyMode": "auto",
            "orientation": "auto",
            "reduceOptions": {
              "calcs": [
                "mean"
              ],
              "fields": "",
              "values": false
            },
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Aug 04 01:46:49 UTC 2025
    - 22.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/io/Smb2FlushResponseTest.java

                assertEquals(0, response.writeBytesWireFormat(dst, 50));
                assertEquals(0, response.writeBytesWireFormat(dst, 99));
            }
    
            @Test
            @DisplayName("Should return 0 with empty array")
            void testWriteBytesWireFormatWithEmptyArray() {
                // Given
                byte[] dst = new byte[0];
    
                // When
                int result = response.writeBytesWireFormat(dst, 0);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  6. docs/em/docs/tutorial/body-nested-models.md

    {* ../../docs_src/body_nested_models/tutorial007.py hl[9,14,20,23,27] *}
    
    /// info
    
    πŸ‘€ ❔ `Offer` βœ”οΈ πŸ“‡ `Item`β“‚, ❔ πŸ”„ βœ”οΈ πŸ“¦ πŸ“‡ `Image`β“‚
    
    ///
    
    ## πŸ’ͺ 😁 πŸ“‡
    
    πŸš₯ πŸ” 🎚 πŸ’² 🎻 πŸ’ͺ πŸ‘† βŒ› 🎻 `array` (🐍 `list`), πŸ‘† πŸ’ͺ πŸ“£ πŸ†Ž πŸ”’ πŸ”’, 🎏 Pydantic 🏷:
    
    ```Python
    images: List[Image]
    ```
    
    βš–οΈ 🐍 3️⃣.9️⃣ & πŸ”›:
    
    ```Python
    images: list[Image]
    ```
    
    :
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. ci/official/containers/ml_build_arm64/builder.devtoolset/build_devtoolset.sh

          --disable-libunwind-exceptions \
          --disable-lto \
          --disable-multilib \
          --enable-__cxa_atexit \
          --enable-gnu-indirect-function \
          --enable-gnu-unique-object \
          --enable-initfini-array \
          --enable-languages="c,c++" \
          --enable-linker-build-id \
          --enable-plugin \
          --enable-shared \
          --enable-threads=posix \
          --with-default-libstdcxx-abi=${LIBSTDCXX_ABI} \
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Mon Nov 11 19:25:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. docs/es/docs/python-types.md

    En Python 3.10 tambiΓ©n hay una **nueva sintaxis** donde puedes poner los posibles tipos separados por una <abbr title='tambiΓ©n llamado "operador OR a nivel de bits", pero ese significado no es relevante aquΓ­'>barra vertical (`|`)</abbr>.
    
    //// tab | Python 3.10+
    
    ```Python hl_lines="1"
    {!> ../../docs_src/python_types/tutorial008b_py310.py!}
    ```
    
    ////
    
    //// tab | Python 3.8+
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 17:46:44 UTC 2024
    - 17.6K bytes
    - Viewed (1)
  9. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

            assertEquals(1, chain3.updateCallCount);
        }
    
        // Test addChain null handling
        public void test_addChain_withNull() {
            // ArrayUtils.addAll handles null gracefully by adding it to the array
            authenticationManager.addChain(null);
    
            // Verify null chain doesn't cause issues during operations
            User user = createTestUser("testuser");
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/entity/FacetInfoTest.java

            facetInfo.sort = "key.ASC";
            order = facetInfo.getBucketOrder();
            assertNotNull(order);
            assertEquals(BucketOrder.key(true), order);
        }
    
        // Test addQuery with null query array
        public void test_addQuery_nullArray() {
            assertNull(facetInfo.query);
            facetInfo.addQuery("query1");
            assertNotNull(facetInfo.query);
            assertEquals(1, facetInfo.query.length);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
Back to top