Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for alternate (0.13 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapAlternateLink.java

     */
    package org.codelibs.fess.crawler.entity;
    
    import java.io.Serializable;
    
    /**
     * Represents an alternate link entry within a sitemap URL.
     * This class encapsulates the properties of an alternate link as defined in the hreflang annotation.
     *
     * <p>
     * The hreflang attribute tells search engines about alternate versions of a page in different languages
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java

        /**
         * Notify when alternate data stream name changes
         */
        public static final int FILE_NOTIFY_CHANGE_STREAM_NAME = 0x200;
        /**
         * Notify when alternate data stream size changes
         */
        public static final int FILE_NOTIFY_CHANGE_STREAM_SIZE = 0x400;
        /**
         * Notify when alternate data stream is written
         */
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

        /**
         * Gets the list of alternate links associated with this URL.
         * @return the list of alternate links, or an empty list if none
         */
        public List<SitemapAlternateLink> getAlternateLinks() {
            if (alternateLinks == null) {
                alternateLinks = new ArrayList<>();
            }
            return alternateLinks;
        }
    
        /**
         * Adds an alternate link to this sitemap URL.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 13 13:34:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/context/CIFSContextCredentialWrapper.java

    import jcifs.smb.NtlmAuthenticator;
    import jcifs.smb.NtlmPasswordAuthenticator;
    import jcifs.smb.SmbAuthException;
    import jcifs.smb.SmbRenewableCredentials;
    
    /**
     * Context wrapper supplying alternate credentials
     *
     * @author mbechler
     *
     */
    public final class CIFSContextCredentialWrapper extends CIFSContextWrapper implements CIFSContext {
    
        private Credentials creds;
    
        /**
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/dfs/Referral.java

    import jcifs.util.Strings;
    
    /**
     * Represents a DFS (Distributed File System) referral entry containing server redirection information.
     * This class handles DFS referral responses that redirect clients to alternate servers for accessing
     * distributed file system resources, supporting multiple DFS versions and referral types.
     */
    public class Referral implements Decodable {
    
        /**
         * Default constructor for Referral.
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/SitemapsHelper.java

                } else if (XHTML_LINK_ELEMENT.equals(elementName)) {
                    // Handle hreflang alternate links
                    final String rel = attributes.getValue("rel");
                    final String hreflang = attributes.getValue("hreflang");
                    final String href = attributes.getValue("href");
                    if ("alternate".equals(rel) && hreflang != null && href != null) {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 14 13:19:40 UTC 2025
    - 34.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/netbios/Lmhosts.java

                        }
                    } else if (line.startsWith("#BEGIN_ALTERNATE")) {} else if (line.startsWith("#END_ALTERNATE") && this.alt > 0) {
                        throw new IOException("no lmhosts alternate includes loaded");
                    }
                } else if (Character.isDigit(line.charAt(0))) {
                    final char[] data = line.toCharArray();
                    int ip, i, j;
                    Name name;
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/netbios/Lmhosts.java

                        alt++;
                    } else if (line.startsWith("#END_ALTERNATE") && alt > 0) {
                        alt--;
                        throw new IOException("no lmhosts alternate includes loaded");
                    }
                } else if (Character.isDigit(line.charAt(0))) {
                    final char[] data = line.toCharArray();
                    int ip, i, j;
                    Name name;
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponseTest.java

            SMBUtil.writeInt2(300, buffer, 18);
    
            // DFS path offset (2 bytes) - points to string data
            SMBUtil.writeInt2(stringDataStart - 8, buffer, 20); // Offset from start of referral
    
            // DFS alternate path offset (2 bytes)
            SMBUtil.writeInt2(0, buffer, 22);
    
            // Network address offset (2 bytes)
            SMBUtil.writeInt2(0, buffer, 24);
    
            // Padding to align string data
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancerTest.java

        void testRoundRobinStrategy() {
            loadBalancer.setStrategy(LoadBalancingStrategy.ROUND_ROBIN);
            when(mockChannelManager.getHealthyChannels()).thenReturn(Arrays.asList(channel1, channel2));
    
            // Should alternate between channels
            ChannelInfo first = loadBalancer.selectChannel(mockMessage);
            ChannelInfo second = loadBalancer.selectChannel(mockMessage);
    
            assertNotNull(first);
            assertNotNull(second);
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 7.7K bytes
    - Viewed (0)
Back to top