Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 238 for signed (0.05 sec)

  1. src/test/java/jcifs/internal/smb2/lock/Smb2LockRequestTest.java

            }
    
            @Test
            @DisplayName("Should align size to 8-byte boundary")
            void testSizeAlignment() {
                int size = request.size();
                assertEquals(0, size % 8, "Size should be aligned to 8-byte boundary");
            }
    
            @ParameterizedTest
            @DisplayName("Should calculate size for various lock counts")
            @ValueSource(ints = { 0, 1, 2, 5, 10, 20, 50, 100 })
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.3K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/RealWebSocket.kt

      private val originalRequest: Request,
      internal val listener: WebSocketListener,
      private val random: Random,
      private val pingIntervalMillis: Long,
      /**
       * For clients this is initially null, and will be assigned to the agreed-upon extensions. For
       * servers, it should be the agreed-upon extensions immediately.
       */
      private var extensions: WebSocketExtensions?,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 31 04:18:40 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/msrpc/samr.java

        public static final int SE_GROUP_ENABLED_BY_DEFAULT = 2;
        /** Security group attribute: Group is enabled for use */
        public static final int SE_GROUP_ENABLED = 4;
        /** Security group attribute: Group can be assigned as owner of objects */
        public static final int SE_GROUP_OWNER = 8;
        /** Security group attribute: Group is used for deny-only checks */
        public static final int SE_GROUP_USE_FOR_DENY_ONLY = 16;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

        public static final int SE_GROUP_ENABLED_BY_DEFAULT = 2;
        /** Security group attribute: Group is enabled for use */
        public static final int SE_GROUP_ENABLED = 4;
        /** Security group attribute: Group can be assigned as owner of objects */
        public static final int SE_GROUP_OWNER = 8;
        /** Security group attribute: Group is used for deny-only checks */
        public static final int SE_GROUP_USE_FOR_DENY_ONLY = 16;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.1K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.17.md

    - The certificate signer no longer accepts ca.key passwords via the `CFSSL_CA_PK_PASSWORD` environment variable. This capability was not prompted by user request, never advertised, and recommended against in the security audit. ([#84677](https://github.com/kubernetes/kub...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  6. src/main/java/jcifs/Configuration.java

         */
        boolean isAllowCompound(String command);
    
        /**
         * Machine identifier
         *
         * ClientGuid, ... are derived from this value.
         *
         * Normally this should be randomly assigned for each client instance/configuration.
         *
         * @return machine identifier (32 byte)
         */
        byte[] getMachineId();
    
        /**
         *
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/sql-databases.md

    If you check the previous app, in the UI you can see that, up to now, it lets the client decide the `id` of the `Hero` to create. 😱
    
    We shouldn't let that happen, they could overwrite an `id` we already have assigned in the DB. Deciding the `id` should be done by the **backend** or the **database**, **not by the client**.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/lang/ClassUtil.java

            assertArgumentNotEmpty("className", className);
    
            return (T) newInstance(forName(className, loader));
        }
    
        /**
         * Returns whether the class can be assigned from another class.
         *
         * @param toClass
         *            The target class. Must not be {@literal null}.
         * @param fromClass
         *            The source class. Must not be {@literal null}.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseTest.java

            when(mockRequest.getCapabilities()).thenReturn(0);
    
            // When
            boolean valid = response.isValid(mockContext, mockRequest);
    
            // Then
            assertTrue(valid);
            // Should be aligned to 8-byte boundary
            assertEquals(32768 & ~0x7, response.getReceiveBufferSize());
            assertEquals(32768 & ~0x7, response.getSendBufferSize());
            assertTrue(response.getTransactionBufferSize() <= 65536);
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  10. docs/hu/docs/index.md

    ---
    
    "_If anyone is looking to build a production Python API, I would highly recommend **FastAPI**. It is **beautifully designed**, **simple to use** and **highly scalable**, it has become a **key component** in our API first development strategy and is driving many automations and services such as our Virtual TAC Engineer._"
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 20.2K bytes
    - Viewed (0)
Back to top