Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for rss (0.82 sec)

  1. src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java

         *
         * @return true if IPv6, false if IPv4
         */
        public boolean isIpv6() {
            return ipv6;
        }
    
        /**
         * Check if RSS is supported
         *
         * @return true if RSS capable
         */
        public boolean isRssCapable() {
            return rssCapable;
        }
    
        /**
         * Check if RDMA is supported
         *
         * @return true if RDMA capable
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  2. docs/smb3-features/03-multi-channel-design.md

            
            if (rssCapable) score += 1000;   // Prefer RSS-capable
            if (rdmaCapable) score += 2000;  // Prefer RDMA-capable
            if (!ipv6) score += 100;         // Slight preference for IPv4
            
            return score;
        }
        
        private boolean checkRSSCapability() {
            // Platform-specific RSS detection
            // Simplified implementation
            try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    			<li class="nav-item has-treeview <c:if test="${param.menuCategoryType=='log'}">menu-open</c:if>">
    				<a href="#" class="nav-link <c:if test="${param.menuCategoryType=='log'}">active</c:if>">
    					<em class='nav-icon fa fa-rss'>
    					<p>
    						<la:message key="labels.menu_system_log" />
    						<i class="right fas fa-angle-left"></i>
    					</p>
    				</a>
    				<ul class="nav nav-treeview">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Apr 15 20:55:28 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.2.md

    * Fix gce.getDiskByNameUnknownZone logic. ([#24452](https://github.com/kubernetes/kubernetes/pull/24452), [@a-robinson](https://github.com/a-robinson))
    * kubelet: add RSS memory to the summary API ([#24015](https://github.com/kubernetes/kubernetes/pull/24015), [@yujuhong](https://github.com/yujuhong))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
Back to top