Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 158 for love (0.01 sec)

  1. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    						<c:otherwise>class="page-item"</c:otherwise>
    					</c:choose>>
    					<la:link styleClass="page-link"
    						href="/search/move?q=${f:u(q)}&pn=${f:u(pageNumber)}&num=${f:u(pageSize)}&sdh=${f:u(fe:sdh(sdh))}${fe:pagingQuery(null)}${fe:facetQuery()}${fe:geoQuery()}">${f:h(pageNumber)}</la:link>
    				</li>
    			</c:forEach>
    			<c:if test="${existNextPage}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 05:32:37 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/UnsignedLongs.java

              new NumberFormatException("Error parsing value: " + stringValue);
          decodeException.initCause(e);
          throw decodeException;
        }
      }
    
      /*
       * We move the static constants into this class so ProGuard can inline UnsignedLongs entirely
       * unless the user is actually calling a parse method.
       */
      private static final class ParseOverflowDetection {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.5.md

      * `kubectl get podsecuritypolicies -o yaml > psp.yaml`
    2. Review and delete any PodSecurityPolicy objects you do not want all pod-creating users to be able to use (NOTE: Privileged users that were making use of those policies will also lose access to those policies). For example:
      * `kubectl delete podsecuritypolicies/my-privileged-policy`
    3. After upgrading to 1.5.5, re-create the exported PodSecurityPolicy objects:
      * `kubectl create -f psp.yaml`
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.4.md

    * Move HighWaterMark to the top of the struct in order to fix arm ([#33117](https://github.com/kubernetes/kubernetes/pull/33117), [@luxas](https://github.com/luxas))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Multiset.java

       * An unmodifiable element-count pair for a multiset. The {@link Multiset#entrySet} method returns
       * a view of the multiset whose elements are of this class. A multiset implementation may return
       * Entry instances that are either live "read-through" views to the Multiset, or immutable
       * snapshots. Note that this type is unrelated to the similarly-named type {@code Map.Entry}.
       *
       * @since 2.0
       */
      interface Entry<E extends @Nullable Object> {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 20.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

                    + (this.expiration - System.currentTimeMillis()) + "]";
        }
    
        /**
         * Get the time to live for this referral
         *
         * @return the ttl
         */
        public long getTtl() {
            return this.ttl;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see java.lang.Object#hashCode()
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb/DirFileEntryAdapterIteratorTest.java

                @Override
                protected SmbResource adapt(FileEntry e) {
                    return mockResource1;
                }
            };
    
            // When
            iterator.next(); // Move to first element
            iterator.remove();
    
            // Then
            verify(mockDelegate).remove();
        }
    
        /**
         * Test multiple calls to hasNext without calling next.
         */
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/TreeBasedTable.java

        super(new TreeMap<R, Map<C, V>>(rowComparator), new Factory<C, V>(columnComparator));
        this.columnComparator = columnComparator;
      }
    
      // TODO(jlevy): Move to StandardRowSortedTable?
    
      /**
       * Returns the comparator that orders the rows. With natural ordering, {@link Ordering#natural()}
       * is returned.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 18 15:05:43 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

         *           sed -e 's#^//*#/#' )
         *       B=$( cd /b/c && cd ${X[1]} && pwd )
         *       cmp -s <(echo $A) <(echo $B) || echo "$X[0] -> $A vs. $B"
         *     done | tee testoutput
         * - Move that testcases file to the appropriate name under testdata.
         *
         * The last test will take hours, and if it passes, the output will be empty.
         */
        doExtensiveTest("testdata/simplifypathnoprefixtests.txt");
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb/DirFileEntryEnumIteratorBaseTest.java

            }
    
            @Override
            protected boolean fetchMore() throws CIFSException {
                if (throwOnFetch)
                    throw new CIFSException("fetchMore fail");
                // Move to next page if available
                if (staticPages != null && pageIdx + 1 < staticPages.size()) {
                    pageIdx++;
                    return true;
                }
                // No more pages
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.5K bytes
    - Viewed (0)
Back to top