Search Options

Results per page
Sort
Preferred Languages
Advance

Results 381 - 390 of 452 for stateFa (0.1 sec)

  1. android/guava/src/com/google/common/collect/Ordering.java

       * Returns an ordering which tries each given comparator in order until a non-zero result is
       * found, returning that result, and returning zero only if all comparators return zero. The
       * returned ordering is based on the state of the {@code comparators} iterable at the time it was
       * provided to this method.
       *
       * <p>The returned ordering is equivalent to that produced using {@code
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Lists.java

       * containing two inner lists of three and two elements, all in the original order.
       *
       * <p>The outer list is unmodifiable, but reflects the latest state of the source list. The inner
       * lists are sublist views of the original list, produced on demand using {@link List#subList(int,
       * int)}, and are subject to all the usual caveats about modification as explained in that API.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  3. src/bufio/bufio.go

    	return NewReaderSize(rd, defaultBufSize)
    }
    
    // Size returns the size of the underlying buffer in bytes.
    func (b *Reader) Size() int { return len(b.buf) }
    
    // Reset discards any buffered data, resets all state, and switches
    // the buffered reader to read from r.
    // Calling Reset on the zero value of [Reader] initializes the internal buffer
    // to the default size.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: State */
        public static final String LABELS_user_state = "{labels.user_state}";
    
        /** The key of the message: State */
        public static final String LABELS_STATE = "{labels.state}";
    
        /** The key of the message: Employee Type */
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_fr.properties

    labels.destinationIndicator	=	Indicateur de destination
    labels.user_internationaliSDNNumber	=	Numéro ISDN international
    labels.internationaliSDNNumber	=	Numéro ISDN international
    labels.user_state	=	État
    labels.state	=	État
    labels.user_employeeType	=	Type d'employé
    labels.employeeType	=	Type d'employé
    labels.user_facsimileTelephoneNumber	=	Numéro de téléphone du télécopieur
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  6. cmd/xl-storage-disk-id-check.go

    	}
    	return nil
    }
    
    // diskHealthCheckOK will check if the provided error is nil
    // and update disk status if good.
    // For convenience a bool is returned to indicate any error state
    // that is not io.EOF.
    func diskHealthCheckOK(ctx context.Context, err error) bool {
    	// Check if context has a disk health check.
    	tracker, ok := ctx.Value(healthDiskCtxKey{}).(*healthDiskCtxValue)
    	if !ok {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Oct 26 09:56:26 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                daysOfWeek: moment.weekdaysMin(),
                monthNames: moment.monthsShort(),
                firstDay: moment.localeData().firstDayOfWeek()
            };
    
            this.callback = function() { };
    
            //some state information
            this.isShowing = false;
            this.leftCalendar = {};
            this.rightCalendar = {};
    
            //custom options from user
            if (typeof options !== 'object' || options === null)
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  8. cmd/server-main.go

    		// Initialize bucket metadata sub-system.
    		bootstrapTrace("globalBucketMetadataSys.Init", func() {
    			globalBucketMetadataSys.Init(GlobalContext, buckets, newObject)
    		})
    
    		// initialize replication resync state.
    		bootstrapTrace("initResync", func() {
    			globalReplicationPool.Get().initResync(GlobalContext, buckets, newObject)
    		})
    
    		// Initialize site replication manager after bucket metadata
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 24 21:50:11 UTC 2024
    - 35.2K bytes
    - Viewed (1)
  9. src/main/resources/fess_label_ko.properties

    labels.user_destinationIndicator = 특송 서비스 주소 정보
    labels.destinationIndicator = 특송 서비스 주소 정보
    labels.user_internationaliSDNNumber = 국제 ISDN 번호
    labels.internationaliSDNNumber = 국제 ISDN 번호
    labels.user_state = 도시
    labels.state = 도시
    labels.user_employeeType = 고용 형태
    labels.employeeType = 고용 형태
    labels.user_facsimileTelephoneNumber = FAX 번호
    labels.facsimileTelephoneNumber = FAX 번호
    labels.user_postOfficeBox = 사서함
    labels.postOfficeBox = 사서함
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

          IdentityHashMap<K, V> newIdentityHashMap() {
        return new IdentityHashMap<>();
      }
    
      /**
       * Computes the difference between two maps. This difference is an immutable snapshot of the state
       * of the maps at the time this method is called. It will never change, even if the maps change at
       * a later time.
       *
       * <p>Since this method uses {@code HashMap} instances internally, the keys of the supplied maps
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top