Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 321 for exceeded (0.19 sec)

  1. src/main/resources/fess_label_fr.properties

    labels.file_crawling_title_details	=	Configuration de l'exploration de fichiers
    labels.included_paths	=	Chemins inclus pour l'exploration
    labels.excluded_paths	=	Chemins exclus pour l'exploration
    labels.included_doc_paths	=	Chemins inclus pour l'indexation
    labels.excluded_doc_paths	=	Chemins exclus pour l'indexation
    labels.config_parameter	=	Paramètres de configuration
    labels.max_access_count	=	Nombre d'accès maximum
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_ko.properties

    labels.header_form_option_btn = 옵션
    labels.file_crawling_configuration = 파일 크롤링
    labels.file_crawling_title_details = 파일 크롤링 설정
    labels.included_paths = 크롤링 경로
    labels.excluded_paths = 크롤링에서 제외 경로
    labels.included_doc_paths = 검색 대상으로하는 경로
    labels.excluded_doc_paths = 검색에서 제외 경로
    labels.config_parameter = 구성 매개 변수
    labels.max_access_count = 최대 접속 수
    labels.number_of_thread = 스레드 수
    labels.interval_time = 간격
    labels.millisec = 밀리초
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 44K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2.go

    	if !ver.Valid() {
    		return errors.New("attempted to add invalid version")
    	}
    	encoded, err := ver.MarshalMsg(nil)
    	if err != nil {
    		return err
    	}
    
    	// returns error if we have exceeded configured object max versions
    	if int64(len(x.versions)+1) > globalAPIConfig.getObjectMaxVersions() {
    		return errMaxVersionsExceeded
    	}
    
    	// Add space at the end.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  4. src/main/resources/fess_label_ja.properties

    labels.header_form_option_btn=オプション
    labels.file_crawling_configuration=ファイルのクロール
    labels.file_crawling_title_details=ファイルクロールの設定
    labels.included_paths=クロール対象とするパス
    labels.excluded_paths=クロール対象から除外するパス
    labels.included_doc_paths=検索対象とするパス
    labels.excluded_doc_paths=検索対象から除外するパス
    labels.config_parameter=設定パラメーター
    labels.max_access_count=最大アクセス数
    labels.number_of_thread=スレッド数
    labels.interval_time=間隔
    labels.millisec=ミリ秒
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  5. tensorflow/c/c_api_test.cc

      EXPECT_EQ(TF_INVALID_ARGUMENT,
                static_cast<TF_Code>(absl::StatusCode::kInvalidArgument));
      EXPECT_EQ(TF_DEADLINE_EXCEEDED,
                static_cast<TF_Code>(tensorflow::error::DEADLINE_EXCEEDED));
      EXPECT_EQ(TF_NOT_FOUND, static_cast<TF_Code>(tensorflow::error::NOT_FOUND));
      EXPECT_EQ(TF_ALREADY_EXISTS,
                static_cast<TF_Code>(tensorflow::error::ALREADY_EXISTS));
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
  6. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                if (offset > fessConfig.getQueryMaxSearchResultOffsetAsInteger()) {
                    throw new ResultOffsetExceededException("The number of result size is exceeded.");
                }
    
                final QueryContext queryContext = buildQueryContext(queryHelper, queryFieldConfig, fessConfig);
    
                searchRequestBuilder.setFrom(offset).setSize(size);
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    		}
    	}
    }
    
    func (p *ReplicationPool) queueMRFSave(entry MRFReplicateEntry) {
    	if !p.initialized() {
    		return
    	}
    	if entry.RetryCount > mrfRetryLimit { // let scanner catch up if retry count exceeded
    		atomic.AddUint64(&globalReplicationStats.mrfStats.TotalDroppedCount, 1)
    		atomic.AddUint64(&globalReplicationStats.mrfStats.TotalDroppedBytes, uint64(entry.sz))
    		return
    	}
    
    	select {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  8. cmd/xl-storage.go

    				return nil
    			}
    			continue
    		}
    		diskHealthCheckOK(ctx, nil)
    		if req.MaxSize > 0 && int64(len(data)) > req.MaxSize {
    			r.Exists = true
    			r.Error = fmt.Sprintf("max size (%d) exceeded: %d", req.MaxSize, len(data))
    			select {
    			case <-ctx.Done():
    				return ctx.Err()
    			case resp <- r:
    				continue
    			}
    		}
    		found++
    		r.Exists = true
    		r.Data = data
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

       *
       * If a maximum size is specified, a best-effort bounding is performed per segment, using a
       * page-replacement algorithm to determine which entries to evict when the capacity has been
       * exceeded.
       *
       * The page replacement algorithm's data structures are kept casually consistent with the map. The
       * ordering of writes to a segment is sequentially consistent. An update to the map and recording
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

       *
       * If a maximum size is specified, a best-effort bounding is performed per segment, using a
       * page-replacement algorithm to determine which entries to evict when the capacity has been
       * exceeded.
       *
       * The page replacement algorithm's data structures are kept casually consistent with the map. The
       * ordering of writes to a segment is sequentially consistent. An update to the map and recording
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
Back to top