Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for weekend (0.16 sec)

  1. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

    today's date
    L787:                    if (calendar[row][col].isSame(new Date(), "day"))
    L788:                        classes.push('today');
    L789:
    L790:                    //highlight weekends
    L791:                    if (calendar[row][col].isoWeekday() > 5)
    L792:                        classes.push('weekend');
    L793:
    L794:                    //grey out the dates in other months displayed at beginning and end of this calendar
    L795:                    if (calendar[row][col].month() != calendar[1][1].month())
    ...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 65.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

          hasPeeked = false;
          peekedElement = null;
          return result;
        }
    
        @Override
        public void remove() {
          checkState(!hasPeeked, "Can't remove after you've peeked at next");
          iterator.remove();
        }
    
        @Override
        @ParametricNullness
        public E peek() {
          if (!hasPeeked) {
            peekedElement = iterator.next();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Sat Apr 20 03:33:06 GMT 2024
    - 50.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Iterators.java

          hasPeeked = false;
          peekedElement = null;
          return result;
        }
    
        @Override
        public void remove() {
          checkState(!hasPeeked, "Can't remove after you've peeked at next");
          iterator.remove();
        }
    
        @Override
        @ParametricNullness
        public E peek() {
          if (!hasPeeked) {
            peekedElement = iterator.next();
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jan 30 00:14:39 GMT 2024
    - 50.5K bytes
    - Viewed (0)
Back to top