Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 141 - 150 of 1,014 for new1 (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperty.java

            }
    
            public static AccessorKey of(String containingType, String methodName, String descriptor) {
                return new AccessorKey(containingType, methodName, descriptor);
            }
    
            public static AccessorKey ofUpgradedProperty(UpgradedProperty upgradedProperty) {
                return new AccessorKey(upgradedProperty.getContainingType(), upgradedProperty.getMethodName(), upgradedProperty.getMethodDescriptor());
            }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Aug 13 19:17:41 GMT 2024
    - 8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

        }
    
        @Test
        public void test_register_multipleAuthenticators() {
            TestSsoAuthenticator authenticator1 = new TestSsoAuthenticator();
            TestSsoAuthenticator authenticator2 = new TestSsoAuthenticator();
            TestSsoAuthenticator authenticator3 = new TestSsoAuthenticator();
    
            ssoManager.register(authenticator1);
            ssoManager.register(authenticator2);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/DslDocModel.groovy

            this.classMetaData = classMetaData
            this.extensionMetaData = extensionMetaData
            javadocConverter = new JavadocConverter(document, new JavadocLinkConverter(document, new TypeNameResolver(classMetaData), new LinkRenderer(document, this), classMetaData))
            docBuilder = new ClassDocBuilder(this, javadocConverter)
        }
    
        Collection<gradlebuild.docs.dsl.docbook.model.ClassDoc> getClasses() {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.9K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java

        }
    
        @Test
        public void test_multipleExceptionInstances() {
            // Test multiple instances are independent
            InvalidAccessTokenException exception1 = new InvalidAccessTokenException("Type1", "Message1");
            InvalidAccessTokenException exception2 = new InvalidAccessTokenException("Type2", "Message2");
    
            assertEquals("Type1", exception1.getType());
            assertEquals("Message1", exception1.getMessage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

            JavadocLexer lexer = new HtmlToXmlJavadocLexer(new BasicJavadocLexer(new JavadocScanner(rawCommentText)));
            DocBookBuilder nodes = new DocBookBuilder(document);
            final HtmlGeneratingTokenHandler handler = new HtmlGeneratingTokenHandler(nodes, document);
            handler.add(new HtmlElementTranslatingHandler(nodes, document));
            handler.add(new PreElementHandler(nodes, document));
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed May 21 06:20:45 GMT 2025
    - 29.3K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java

            // Write completely empty file
            try (java.io.FileWriter fw = new java.io.FileWriter(testFile)) {
                // Write nothing
            }
    
            // Create a new CharMappingFile instance to ensure clean state
            CharMappingFile emptyMappingFile = new CharMappingFile("empty_test", testFile.getAbsolutePath(), new Date());
            emptyMappingFile.manager(dictionaryManager);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/app/web/api/admin/scheduler/ApiAdminSchedulerActionTest.java

            // Setup: job with logging enabled
            final AtomicReference<LaunchNowOption> capturedOption = new AtomicReference<>();
            final ScheduledJob scheduledJob = createScheduledJob("job-1", "Test Job", true, true);
    
            registerMockJobManager("job-1", opCall -> {
                final LaunchNowOption option = new LaunchNowOption();
                opCall.callback(option);
                capturedOption.set(option);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java

            final String testKey = "domain.title";
            final int threadCount = 10;
            final Thread[] threads = new Thread[threadCount];
            final String[] results = new String[threadCount];
    
            for (int i = 0; i < threadCount; i++) {
                final int index = i;
                threads[i] = new Thread(() -> {
                    results[index] = fessConfig.get(testKey);
                });
            }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.9K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java

            UnsupportedSearchException exception = new UnsupportedSearchException(message);
    
            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        @Test
        public void test_constructor_withEmptyMessage() {
            // Test with empty message
            String message = "";
            UnsupportedSearchException exception = new UnsupportedSearchException(message);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

            final Pattern parsePattern = Pattern.compile("(.*?)\\s*+=>\\s*+(.*?)\\s*+$");
            final List<CharMappingItem> itemList = new ArrayList<>();
            try (BufferedReader reader = new BufferedReader(new InputStreamReader(in, Constants.UTF_8))) {
                long id = 0;
                String line = null;
                while ((line = reader.readLine()) != null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 15.3K bytes
    - Click Count (0)
Back to Top