Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 204 for sido (0.02 sec)

  1. src/main/java/jcifs/internal/smb2/ioctl/SrvCopychunk.java

     */
    package jcifs.internal.smb2.ioctl;
    
    import jcifs.Encodable;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * SMB2 SRV_COPYCHUNK data structure. This structure represents a single chunk specification
     * for server-side copy operations.
     *
     * @author mbechler
     *
     */
    public class SrvCopychunk implements Encodable {
    
        private final long sourceOffset;
        private final long targetOffset;
        private final int length;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ioctl/SrvCopychunkCopy.java

     */
    package jcifs.internal.smb2.ioctl;
    
    import jcifs.Encodable;
    import jcifs.internal.util.SMBUtil;
    
    /**
     * SMB2 SRV_COPYCHUNK_COPY data structure. This structure is used to perform server-side
     * copy operations with multiple chunk specifications.
     *
     * @author mbechler
     *
     */
    public class SrvCopychunkCopy implements Encodable {
    
        private final byte[] sourceKey;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/lang/StringUtil.java

        }
    
        /**
         * Removes whitespace from the left side of the string.
         *
         * @param text
         *            The text to trim
         * @return The resulting string
         */
        public static final String ltrim(final String text) {
            return ltrim(text, null);
        }
    
        /**
         * Removes the specified characters from the left side of the string.
         *
         * @param text
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  4. docs/es/docs/advanced/advanced-dependencies.md

    Pero queremos poder parametrizar ese contenido fijo.
    
    ## Una *instance* "callable"
    
    En Python hay una forma de hacer que una instance de una clase sea un "callable".
    
    No la clase en sí (que ya es un callable), sino una instance de esa clase.
    
    Para hacer eso, declaramos un método `__call__`:
    
    {* ../../docs_src/dependencies/tutorial011_an_py39.py hl[12] *}
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java

                // Then: Should have correct values
                assertEquals(0x21, message.getOpnum());
                assertEquals(mockPolicyHandle, message.alias_handle);
                assertEquals(mockLsarSidArray, message.sids);
            }
    
            @Test
            @DisplayName("Should encode input correctly")
            void testEncodeIn() throws NdrException {
                // Given: Get members message
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.6K bytes
    - Viewed (0)
  6. src/test/java/jcifs/context/BaseContextTest.java

        }
    
        @Test
        @DisplayName("getSIDResolver should return initialized SID resolver")
        void testGetSIDResolver() {
            // When
            SidResolver sidResolver = context.getSIDResolver();
    
            // Then
            assertNotNull(sidResolver, "SID resolver should not be null");
            assertSame(sidResolver, context.getSIDResolver(), "Should return same instance on multiple calls");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  7. docs/es/docs/advanced/dataclasses.md

    9. Esta *path operation function* no está devolviendo dataclasses (aunque podría), sino una lista de diccionarios con datos internos.
    
        FastAPI usará el parámetro `response_model` (que incluye dataclasses) para convertir el response.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. docs/es/docs/advanced/index.md

    Y muestra su verdadero compromiso con FastAPI y su **comunidad** (tú), ya que no solo quieren brindarte una **buena experiencia de aprendizaje** sino que también quieren asegurarse de que tengas un **buen y saludable framework**, FastAPI. 🙇
    
    Podrías querer probar sus cursos:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 17:46:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/DosFileFilterTest.java

         * Tests the constructor of DosFileFilter.
         * This test ensures that the constructor runs without errors and correctly initializes the object.
         * The wildcard parameter is stored but its filtering logic is handled server-side,
         * so we only verify its acceptance here.
         */
        @Test
        void testConstructor() {
            // The constructor should not throw any exceptions with valid inputs.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/escape/ArrayBasedCharEscaperTest.java

              @Override
              protected char[] escapeUnsafe(char c) {
                return ("{" + c + "}").toCharArray();
              }
            };
        EscaperAsserts.assertBasic(wrappingEscaper);
        // '[' and '@' lie either side of [A-Z].
        assertThat(wrappingEscaper.escape("[FOO@BAR]")).isEqualTo("{[}FOO{@}BAR{]}");
      }
    
      public void testSafeRange_maxLessThanMin() throws IOException {
        // Basic escaping of unsafe chars (wrap them in {,}'s)
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Feb 18 15:41:04 UTC 2025
    - 3.6K bytes
    - Viewed (0)
Back to top