Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 338 for initVal (0.12 sec)

  1. src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java

        public void test_getResponse_withMetadataType() {
            // Setup - Test with null response initially
            ActionResponse result = authenticator.getResponse(SsoResponseType.METADATA);
    
            // Verify initial state
            assertNull(result);
    
            // Setup with JSON response (easier to create without LastaFlute context)
            JsonResponse<?> expectedResponse = new JsonResponse<>(new HashMap<>());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java

        }
    
        // Test source map modifications
        public void test_sourceMapModifications() {
            TestSearchLogEvent event = new TestSearchLogEvent("id", 1L, "type");
    
            // Initial empty map
            Map<String, Object> map1 = new HashMap<>();
            event.setSourceMap(map1);
            assertEquals(0, event.toSource().size());
    
            // Add elements to the map
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/TestLockingTest.java

            }
        }
    
        @Test
        @DisplayName("ltime field is mutable")
        void testLtimeField() {
            TestLocking t = new TestLocking();
    
            // Initial value
            assertEquals(0L, t.ltime, "ltime should start at 0");
    
            // Set new value
            long currentTime = System.currentTimeMillis();
            t.ltime = currentTime;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

         */
        public final int getCommonCapabilities() {
            return this.commonCapabilities;
        }
    
        /**
         * Gets the initial security blob for authentication negotiation.
         *
         * @return initial security blob
         */
        public byte[] getSecurityBlob() {
            return this.securityBuffer;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java

            // Given
            Smb2EncryptionContext context = new Smb2EncryptionContext(EncryptionNegotiateContext.CIPHER_AES128_GCM, DialectVersion.SMB311,
                    testEncryptionKey, testEncryptionKey);
    
            // Test initial encryption
            byte[] plaintext1 = "Before rotation".getBytes();
            byte[] encrypted1 = context.encryptMessage(plaintext1, 1L);
            byte[] decrypted1 = context.decryptMessage(encrypted1);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 44.1K bytes
    - Viewed (0)
  6. docs/kms/README.md

    ### 1. Fetch the root identity
    
    As the initial step, fetch the private key and certificate of the root identity:
    
    ```sh
    curl -sSL --tlsv1.2 \
         -O 'https://raw.githubusercontent.com/minio/kes/master/root.key' \
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/CompactLinkedHashSet.java

        CompactLinkedHashSet<E> set = createWithExpectedSize(elements.length);
        Collections.addAll(set, elements);
        return set;
      }
    
      /**
       * Creates a {@code CompactLinkedHashSet} instance, with a high enough "initial capacity" that it
       * <i>should</i> hold {@code expectedSize} elements without rebuilding internal data structures.
       *
       * @param expectedSize the number of elements you expect to add to the returned set
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 14:59:07 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  8. src/test/java/jcifs/http/NtlmServletTest.java

         */
        @Test
        void testService_NtlmAuth_Failure() throws Exception {
            ntlmServlet.init(servletConfig);
            setupMocksForAuth();
    
            // Return null from NtlmSsp.authenticate to simulate initial NTLM handshake
            try (MockedStatic<NtlmSsp> ntlmSspMock = Mockito.mockStatic(NtlmSsp.class)) {
                ntlmSspMock.when(() -> NtlmSsp.authenticate(any(), any(), any(), any())).thenReturn(null);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 04:51:33 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

    public interface ModelBuilderRequest extends Request<Session> {
    
        /**
         * The possible request types for building a model.
         */
        enum RequestType {
            /**
             * The request is for building an initial model from a POM file in a project on the filesystem.
             */
            BUILD_PROJECT,
            /**
             * The request is for rebuilding the effective POM in a project on the filesystem.
             */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Mar 26 20:54:22 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  10. src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java

            infoField.setAccessible(true);
            srvsvc.ShareInfo502 info502 = (srvsvc.ShareInfo502) infoField.get(msrpcShareGetInfo);
    
            assertNotNull(info502);
            // Initial state of ShareInfo502 fields
            assertNull(info502.netname);
            assertNull(info502.remark);
            assertNull(info502.path);
            assertNull(info502.password);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.3K bytes
    - Viewed (0)
Back to top