Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 594 for netName (0.04 sec)

  1. src/main/java/org/codelibs/fess/script/AbstractScriptEngine.java

        /**
         * Register this script engine.
         */
        public void register() {
            ComponentUtil.getScriptEngineFactory().add(getName(), this);
        }
    
        /**
         * Get the name of this script engine.
         * @return The name of this script engine.
         */
        protected abstract String getName();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/JobProcessTest.java

            assertNotNull(jobProcess);
            assertSame(mockProcess, jobProcess.getProcess());
            assertNotNull(jobProcess.getInputStreamThread());
            assertEquals("InputStreamThread", jobProcess.getInputStreamThread().getName());
        }
    
        public void test_constructor_withBufferSizeAndCallback() throws IOException {
            Process mockProcess = createMockProcess("callback test\nanother line");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  3. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/MavenArtifact.java

        }
    
        @Override
        public String getName() {
            String name = resource.getName();
    
            if (name == null) {
                name = "";
            } else if (name.startsWith("/")) {
                name = name.substring(1);
            }
    
            return name;
        }
    
        @Override
        public String getUrl() {
            return getRepositoryUrl() + getName();
        }
    
        @Override
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/smb1/NtlmPasswordAuthenticationTest.java

            assertArrayEquals(unicodeHash, auth.getUnicodeHash(challenge));
        }
    
        // Test getName method
        @Test
        void testGetName() {
            NtlmPasswordAuthentication auth = new NtlmPasswordAuthentication("DOMAIN", "user", "password");
            assertEquals("DOMAIN\\user", auth.getName());
        }
    
        // Test getName method with default domain
        @Test
        void testGetNameWithDefaultDomain() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

                    final PropertyDescImpl pd = (PropertyDescImpl) propertyDescCache.get(field.getName());
                    pd.setField(field);
                    continue;
                }
                if (FieldUtil.isPublicField(field)) {
                    final PropertyDescImpl pd = new PropertyDescImpl(field.getName(), field.getType(), null, null, field, this);
                    propertyDescCache.put(fname, pd);
                }
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 25.8K bytes
    - Viewed (1)
  6. src/test/java/org/codelibs/fess/cors/CorsHandlerFactoryTest.java

            CorsHandler result = corsHandlerFactory.get(origin);
    
            // Verify
            assertNotNull(result);
            assertEquals(handler, result);
            assertEquals("example-handler", ((TestCorsHandler) result).getName());
        }
    
        public void test_add_and_get_multipleOrigins() {
            // Setup
            String origin1 = "https://example1.com";
            String origin2 = "https://example2.com";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  7. compat/maven-compat/src/test/java/org/apache/maven/profiles/manager/DefaultProfileManagerTest.java

            syspropActivated.setId("syspropActivated");
    
            Activation syspropActivation = new Activation();
    
            ActivationProperty syspropProperty = new ActivationProperty();
            syspropProperty.setName("java.version");
    
            syspropActivation.setProperty(syspropProperty);
    
            syspropActivated.setActivation(syspropActivation);
    
            Profile defaultActivated = new Profile();
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun Mar 30 23:08:36 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

                    if (field.getType().equals(HtmlNext.class)) {
                        Object value = field.get(null);
                        assertNotNull("Field " + field.getName() + " should not be null", value);
                        assertTrue("Field " + field.getName() + " should be HtmlNext instance", value instanceof HtmlNext);
                    }
                }
            }
        }
    
        public void test_pathValues() throws Exception {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/lease/DirectoryCacheEntryTest.java

            // Verify all children are present
            assertTrue(children.stream().anyMatch(f -> "file1.txt".equals(f.getName())));
            assertTrue(children.stream().anyMatch(f -> "file2.txt".equals(f.getName())));
            assertTrue(children.stream().anyMatch(f -> "dir1".equals(f.getName())));
        }
    
        @Test
        public void testMarkComplete() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 01:47:47 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/validation/FessActionValidatorTest.java

            assertEquals("Type parameter should be MESSAGES", "MESSAGES", typeParameters[0].getName());
        }
    
        public void test_packageStructure() {
            final Package pkg = FessActionValidator.class.getPackage();
            assertNotNull("Package should not be null", pkg);
            assertEquals("Should be in correct package", "org.codelibs.fess.validation", pkg.getName());
        }
    
        public void test_isPublicClass() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 2.7K bytes
    - Viewed (0)
Back to top