Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 144 for bulk_6 (0.25 sec)

  1. src/main/resources/fess_label.properties

    labels.boost=Boost
    labels.crawlingConfigName=Name
    labels.crawlingConfigPath=Crawling Path
    labels.processType=Process Type
    labels.parameters=Parameters
    labels.designFile=Upload File
    labels.bulkFile=Bulk File
    labels.appendQueryParameter=Additional Query Parameters
    labels.configId=Config ID
    labels.configParameter=Config Parameters
    labels.content=Content
    labels.csvFileEncoding=CSV Encoding
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Multimap.java

       * @return {@code true} if the multimap changed
       */
      @CanIgnoreReturnValue
      boolean remove(
          @CompatibleWith("K") @CheckForNull Object key,
          @CompatibleWith("V") @CheckForNull Object value);
    
      // Bulk Operations
    
      /**
       * Stores a key-value pair in this multimap for each of {@code values}, all using the same key,
       * {@code key}. Equivalent to (but expected to be more efficient than):
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. src/runtime/preempt.go

    		// anything closely tied to the runtime. Known issues
    		// include: various points in the scheduler ("don't
    		// preempt between here and here"), much of the defer
    		// implementation (untyped info on stack), bulk write
    		// barriers (write barrier check),
    		// reflect.{makeFuncStub,methodValueCall}.
    		//
    		// TODO(austin): We should improve this, or opt things
    		// in incrementally.
    		return false, 0
    	}
    	switch up {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Multimap.java

       * @return {@code true} if the multimap changed
       */
      @CanIgnoreReturnValue
      boolean remove(
          @CompatibleWith("K") @CheckForNull Object key,
          @CompatibleWith("V") @CheckForNull Object value);
    
      // Bulk Operations
    
      /**
       * Stores a key-value pair in this multimap for each of {@code values}, all using the same key,
       * {@code key}. Equivalent to (but expected to be more efficient than):
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Jun 17 14:40:53 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    		return result.withError(fmt.Errorf("at least one resource must be specified to use a selector"))
    	}
    	if len(b.subresource) != 0 {
    		return result.withError(fmt.Errorf("subresource cannot be used when bulk resources are specified"))
    	}
    
    	mappings, err := b.resourceMappings()
    	if err != nil {
    		result.err = err
    		return result
    	}
    
    	var labelSelector, fieldSelector string
    	if b.labelSelector != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_ko.properties

    labels.crawlingThreadCount = 동시 크롤링 수
    labels.boost = 부스트 값
    labels.crawlingConfigName = 이름
    labels.crawlingConfigPath = 크롤링 경로
    labels.processType = 프로세스 타입
    labels.parameters = 매개 변수
    labels.designFile = 업로드 파일
    labels.bulkFile = Bulk 파일
    labels.appendQueryParameter = 검색 매개 변수 추가
    labels.configId = 설정 ID
    labels.configParameter = 구성 매개 변수
    labels.content = 콘텐츠
    labels.csvFileEncoding = CSV 인코딩
    labels.defaultLabelValue = 기본 레이블(Label)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/link.go

    // Each Prog is charged to a specific source line in the debug information,
    // specified by Pos.Line().
    // Every Prog has a Ctxt field that defines its context.
    // For performance reasons, Progs are usually bulk allocated, cached, and reused;
    // those bulk allocators should always be used, rather than new(Prog).
    //
    // The other fields not yet mentioned are for use by the back ends and should
    // be left zeroed by creators of Prog lists.
    type Prog struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Multimaps.java

       * {@code Set}.
       *
       * <p>The function is applied lazily, invoked when needed. This is necessary for the returned
       * multimap to be a view, but it means that the function will be applied many times for bulk
       * operations like {@link Multimap#containsValue} and {@code Multimap.toString()}. For this to
       * perform well, {@code function} should be fast. To avoid lazy evaluation when the returned
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Multimaps.java

       * {@code Set}.
       *
       * <p>The function is applied lazily, invoked when needed. This is necessary for the returned
       * multimap to be a view, but it means that the function will be applied many times for bulk
       * operations like {@link Multimap#containsValue} and {@code Multimap.toString()}. For this to
       * perform well, {@code function} should be fast. To avoid lazy evaluation when the returned
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  10. cmd/encryption-v1.go

    // Further, it decrypts all single-part SSE-S3 encrypted objects
    // and formats ETags of SSE-C / SSE-KMS encrypted objects to
    // be AWS S3 compliant.
    //
    // DecryptETags uses a KMS bulk decryption API, if available, which
    // is more efficient than decrypting ETags sequentually.
    func DecryptETags(ctx context.Context, k *kms.KMS, objects []ObjectInfo) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top