Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 963 for name3 (0.02 sec)

  1. src/test/java/org/codelibs/fess/util/ComponentUtilTest.java

            Integer comp3 = 123;
    
            ComponentUtil.register(comp1, "name1");
            ComponentUtil.register(comp2, "name2");
            ComponentUtil.register(comp3, "name3");
    
            assertEquals(comp1, ComponentUtil.getComponent("name1"));
            assertEquals(comp2, ComponentUtil.getComponent("name2"));
            assertEquals(comp3, ComponentUtil.getComponent("name3"));
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/dfs/ReferralTest.java

            for (String name : expectedNames) {
                bb.put(name.getBytes(StandardCharsets.UTF_16LE));
                bb.putShort((short) 0);
            }
    
            referral.decode(testBuffer, 0, testBuffer.length);
    
            assertArrayEquals(expectedNames, referral.getExpandedNames());
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 22K bytes
    - Viewed (0)
  3. src/test/java/jcifs/netbios/NodeStatusResponseTest.java

            // Second name entry (18 bytes)
            String name2 = "DOMAIN          ";
            System.arraycopy(name2.getBytes("US-ASCII"), 0, src, srcIndex + 19, 16);
            src[srcIndex + 34] = 0x00; // hex code
            src[srcIndex + 35] = (byte) 0x84; // flags: group, active
    
            // Third name entry (18 bytes) - matching queryAddress
            String name3 = "TEST            ";
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/Name.java

         *
         * @param cfg the configuration to use
         * @param name the NetbiosName to copy from
         */
        public Name(final Configuration cfg, final NetbiosName name) {
            this.config = cfg;
            this.name = name.getName();
            this.hexCode = name.getNameType();
            this.scope = name.getScope();
            if (name instanceof Name) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/netbios/Name.java

        Name() {
        }
    
        /**
         * Creates a NetBIOS name with the specified attributes.
         *
         * @param name the NetBIOS name (will be truncated to 15 characters if longer)
         * @param hexCode the NetBIOS name type/suffix
         * @param scope the NetBIOS scope identifier (uses default if null or empty)
         */
        public Name(String name, final int hexCode, final String scope) {
            if (name.length() > 15) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  6. src/test/java/jcifs/netbios/NameTest.java

            assertFalse(name1.equals(name2));
        }
    
        @Test
        void equals_withBothNullScope_shouldReturnTrue() {
            Name name1 = new Name(mockConfig, "TEST", 0x20, null);
            name1.scope = null;
            Name name2 = new Name(mockConfig, "TEST", 0x20, null);
            name2.scope = null;
    
            assertTrue(name1.equals(name2));
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  7. api/maven-api-di/src/main/java/org/apache/maven/di/tool/DiIndexProcessor.java

    import java.util.Set;
    import java.util.TreeSet;
    
    import org.apache.maven.api.di.Named;
    
    /**
     * Annotation processor that generates an index file for classes annotated with {@link Named}.
     * This processor scans for classes with the {@code @Named} annotation and creates a file
     * at {@code META-INF/maven/org.apache.maven.api.di.Inject} containing the fully qualified
     * names of these classes.
     *
     * @since 4.0.0
     */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  8. cmd/os-readdir_test.go

    		}
    		// Symlink will not be added to entries.
    		if err := os.Symlink(filepath.Join(dir, name1), filepath.Join(dir, name2)); err != nil {
    			t.Fatalf("Unable to create a symlink, %s", err)
    		}
    		// Add to entries.
    		entries = append(entries, name1)
    		// Symlinks are preserved for regular files
    		entries = append(entries, name2)
    	}
    	if err := os.MkdirAll(filepath.Join(dir, "mydir"), 0o777); err != nil {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue May 27 15:19:03 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java

            assertEquals(engine2, retrievedByClass);
    
            // But original names should still work
            assertEquals(engine1, scriptEngineFactory.getScriptEngine("name1"));
            assertEquals(engine2, scriptEngineFactory.getScriptEngine("name2"));
        }
    
        // Test with engine that has very long class name
        public void test_add_longClassName() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SIDCacheImpl.java

         *            return names for SIDs corresponding to local accounts for which the domain controller is not an
         *            authority.
         * @param tc
         *            The context that should be used to communicate with the named server.
         * @param sids
         *            The SIDs that should be resolved. After this function is called, the names associated with the SIDs
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 13.6K bytes
    - Viewed (0)
Back to top