Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 84 for Federation (0.09 sec)

  1. src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java

            assertTrue(nonce1.length > 0, "Secure nonce should have proper length");
        }
    
        @Test
        @DisplayName("Should handle concurrent secure nonce generation safely")
        void testConcurrentSecureNonceGeneration() throws InterruptedException {
            // Given
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 44.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

            assertTrue(result.contains("Web  Config Id: ALL"));
            assertTrue(result.contains("File Config Id: ALL"));
            assertTrue(result.contains("Data Config Id: ALL"));
        }
    
        // Test session ID generation
        public void test_sessionIdGeneration() {
            crawlJob = new CrawlJob() {
                @Override
                protected int getRunningJobCount() {
                    return 0;
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 25K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            // Test that default sessionId is generated when not provided
            Crawler.Options options = new Crawler.Options();
            // Don't set sessionId to test default generation
    
            // Mock the container setup to avoid actual initialization
            try {
                // The process method will generate a default sessionId if not provided
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

            metrics.put("rotationTimeLimit", keyRotationTimeLimit);
            return metrics;
        }
    
        /**
         * Generate a unique nonce for encryption following SMB3 specification.
         * Uses SMB3-compliant nonce generation with guaranteed uniqueness.
         *
         * @return nonce appropriate for the dialect (16 bytes for GCM, 12 bytes for CCM)
         */
        public byte[] generateNonce() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

            }
        }
    
        // Test getExecuteType method
        public void test_getExecuteType() {
            assertEquals(Constants.EXECUTE_TYPE_SUGGEST, suggestJob.getExecuteType());
        }
    
        // Test session ID generation
        public void test_sessionIdGeneration() {
            assertNull(suggestJob.sessionId);
    
            mockProcessHelper.setExitValue(0);
            suggestJob.execute();
    
            assertNotNull(suggestJob.sessionId);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

       */
      private static final long UNEXPECTED_HANG_DELAY_MILLIS = 10000;
    
      /**
       * Various scenarios to be generated for each method under test. The actual scenario generation
       * (determining which scenarios are applicable to which methods and what the outcome should be)
       * takes place in {@link #addTests(TestSuite, Method)}.
       */
      private enum Scenario {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 27K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.33.md

    - Changed metadata management for Pods to populate `.metadata.generation` on writes. New pods will have a `metadata.generation` of 1; updates to mutable fields in the Pod `.spec` will result in `metadata.generation` being incremented by 1. ([#130181](https://github.com/kubernetes/kubernetes/pull/130181), [@natasha41575](https://github.com/natasha41575)) [SIG Apps, Node and Testing]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 13 19:46:23 UTC 2025
    - 294.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

     *
     * <p>The IndexingHelper manages bulk operations, handles retries on failures,
     * and provides various query-based operations for document management.
     * It also integrates with the thumbnail generation system and handles
     * the cleanup of old documents during updates.</p>
     */
    public class IndexingHelper {
        /** Logger for this class */
        private static final Logger logger = LogManager.getLogger(IndexingHelper.class);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/ntlmssp/Type2MessageTest.java

                // Then
                assertNotNull(parsedMessage);
                assertNull(parsedMessage.getTargetInformation());
            }
        }
    
        @Nested
        @DisplayName("Target Information Generation Tests")
        class TargetInformationTests {
    
            @Test
            @DisplayName("makeTargetInfo should generate correct structure with domain and host")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 38.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/Constants.java

        public static final String CRAWLING_USER_AGENT_SUFFIX = "; +http://fess.codelibs.org/bot.html)";
    
        /** Date format pattern for document index suffix generation. */
        public static final String DOCUMENT_INDEX_SUFFIX_PATTERN = "yyyyMMddHHmmssSSS";
    
        // ============================================================
        // System Property Keys
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
Back to top