Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 322 for Escape (0.94 sec)

  1. src/main/java/jcifs/netbios/NameServiceClientImpl.java

        }
    
        @Override
        public NbtAddress getNbtByName(final String host, final int type, final String scope) throws UnknownHostException {
            return getNbtByName(host, type, scope, null);
        }
    
        @Override
        public NbtAddress getNbtByName(final String host, final int type, final String scope, final InetAddress svr)
                throws UnknownHostException {
    
            if (host == null || host.length() == 0) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  2. api/maven-api-di/src/main/java/org/apache/maven/api/di/Singleton.java

     * Maven execution. This scope should be used for stateless services or components
     * that can be safely shared across the entire build process.
     * <p>
     * Example usage:
     * <pre>
     * {@literal @}Singleton
     * public class GlobalConfiguration {
     *     // Implementation
     * }
     * </pre>
     *
     * @see Scope
     * @since 4.0.0
     */
    @Scope
    @Documented
    @Retention(RUNTIME)
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jan 30 23:28:59 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  3. docs/smb3-features/04-directory-leasing-design.md

        private volatile boolean hasChanges;  // True if changes detected
        private DirectoryCacheScope scope;
        private long maxAge;
        
        public DirectoryCacheEntry(String path, Smb2LeaseKey key, DirectoryCacheScope scope) {
            this.directoryPath = path;
            this.leaseKey = key;
            this.scope = scope;
            this.createTime = System.currentTimeMillis();
            this.lastUpdateTime = createTime;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/netbios/NodeStatusResponse.java

            final int start = srcIndex;
    
            this.addressArray = new NbtAddress[this.numberOfNames];
    
            String n;
            int hexCode;
            final String scope = this.queryAddress.hostName.scope;
            boolean groupName;
            int ownerNodeType;
            boolean isBeingDeleted;
            boolean isInConflict;
            boolean isActive;
            boolean isPermanent;
            int j;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            return StringUtil.EMPTY;
        }
    
        /**
         * Escapes HTML and applies highlighting to text.
         * Handles boundary position detection if enabled.
         *
         * @param text the text to process
         * @return the escaped and highlighted text
         */
        protected String escapeHighlight(final String text) {
            final String escaped = LaFunctions.h(text);
            final String value;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java

                // Expected due to missing dependencies in test environment
                assertTrue(true);
                return;
            }
            // assertEquals(0, result.size()); // Commented out due to variable scope
        }
    
        public void test_getBoostedDocumentList_withVirtualHost() {
            KeyMatch keyMatch = new KeyMatch();
            keyMatch.setId("km1");
            keyMatch.setTerm("java");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/common/admin/head.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
    <meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <link href="${fe:url('/css/admin/bootstrap.min.css')}" rel="stylesheet" type="text/css" />
    <link href="${fe:url('/css/admin/font-awesome.min.css')}" rel="stylesheet" type="text/css" />
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 12:21:50 UTC 2020
    - 984 bytes
    - Viewed (0)
  8. src/test/java/jcifs/NetbiosNameTest.java

            assertEquals("", name);
        }
    
        @Test
        @DisplayName("Should handle null scope")
        void testNullScope() {
            // Given
            when(mockNetbiosName.getScope()).thenReturn(null);
    
            // When
            String scope = mockNetbiosName.getScope();
    
            // Then
            assertNull(scope);
        }
    
        @Test
        @DisplayName("Should handle various name lengths")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/netbios/NbtAddress.java

         * a fairly complete list of NetBIOS hex codes. Scope is not used but is
         * still functional in other NetBIOS products and so for completeness it has been
         * implemented. A <code>scope</code> of <code>null</code> or <code>""</code>
         * signifies no scope.
         *
         * @param host the name to resolve
         * @param type the hex code of the name
         * @param scope the scope of the name
         * @return the resolved NetBIOS address
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/NetbiosName.java

     */
    public interface NetbiosName {
    
        /**
         * Returns the NetBIOS name.
         *
         * @return the name
         */
        String getName();
    
        /**
         * Returns the NetBIOS scope identifier.
         *
         * @return the scope id
         */
        String getScope();
    
        /**
         * Returns the NetBIOS name type.
         *
         * @return the name type
         */
        int getNameType();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.2K bytes
    - Viewed (0)
Back to top