Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 190 for Indexes (2.07 sec)

  1. src/vendor/golang.org/x/net/http2/hpack/encode.go

    	return appendHpackString(dst, f.Value)
    }
    
    // appendIndexedName appends f and index i referring indexed name
    // entry, as encoded in one of "Literal Header field - Indexed Name"
    // representation variants, to dst and returns the extended buffer.
    //
    // If f.Sensitive is true, "Never Indexed" representation is used. If
    // f.Sensitive is false and indexing is true, "Incremental Indexing"
    // representation is used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/storage_decorator.go

    	resourcePrefix string,
    	keyFunc func(obj runtime.Object) (string, error),
    	newFunc func() runtime.Object,
    	newListFunc func() runtime.Object,
    	getAttrsFunc storage.AttrFunc,
    	trigger storage.IndexerFuncs,
    	indexers *cache.Indexers) (storage.Interface, factory.DestroyFunc, error)
    
    // UndecoratedStorage returns the given a new storage from the given config
    // without any decoration.
    func UndecoratedStorage(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemSpec.java

         * @param path the file location
         * @param line the one-indexed line number
         * @return this
         * @since 8.6
         */
        ProblemSpec lineInFileLocation(String path, int line);
    
        /**
         * Declares that this problem is in a file with on a line at a certain position.
         * <p>
         *
         * @param path the file location
         * @param line the one-indexed line number
         * @param column the one-indexed column
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:08 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/OffsetInFileLocation.java

     * <p>
     * The coordinates are expected to be zero indexed.
     */
    public interface OffsetInFileLocation extends FileLocation {
    
        /**
         * The global offset from the beginning of the file.
         *
         * @return the zero-indexed the offset
         */
        int getOffset();
    
        /**
         * The content of the content starting from {@link #getOffset()}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:33:01 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval.go

    type indexValidator func(int) bool
    
    func newCacheInterval(startIndex, endIndex int, indexer indexerFunc, indexValidator indexValidator, locker sync.Locker) *watchCacheInterval {
    	return &watchCacheInterval{
    		startIndex:     startIndex,
    		endIndex:       endIndex,
    		indexer:        indexer,
    		indexValidator: indexValidator,
    		buffer:         &watchCacheIntervalBuffer{buffer: make([]*watchCacheEvent, bufferSize)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. README.ja.md

        client,
        suggester.settings(),
        "contentIndexName",
        "contentTypeName");
    suggester.indexer().indexFromDocument(reader, 2, 100).getResponse();
    ```
    
    ### Add suggest document from queryLog
    
    クエリーログ(query_string)を解析してサジェストドキュメントを登録
    
    ```java
    QueryLog queryLog = new QueryLog("field1:value1", null);
    suggester.indexer().indexFromQueryLog(queryLog);
    ```
    
    ### Add suggest document from search words
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Jul 27 10:00:55 UTC 2015
    - 2.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/storage_factory.go

    		keyFunc func(obj runtime.Object) (string, error),
    		newFunc func() runtime.Object,
    		newListFunc func() runtime.Object,
    		getAttrsFunc storage.AttrFunc,
    		triggerFuncs storage.IndexerFuncs,
    		indexers *cache.Indexers) (storage.Interface, factory.DestroyFunc, error) {
    
    		s, d, err := generic.NewRawStorage(storageConfig, newFunc, newListFunc, resourcePrefix)
    		if err != nil {
    			return s, d, err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/LineInFileLocation.java

     * <p>
     * The line and column coordinates are one-indexed so that they can be easily matched to the content of a UI editor interface.
     */
    public interface LineInFileLocation extends FileLocation {
    
        /**
         * The line number within the file.
         * <p>
         * The line is <b>one-indexed</b>, i.e. the first line in the file is line number 1.
         *
         * @return the line number
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. pkg/api/job/warnings_test.go

    				},
    			},
    			wantWarningsCount: 1,
    		},
    		"valid Indexed low completions low parallelism": {
    			spec: &batch.JobSpec{
    				CompletionMode: completionModePtr(batch.IndexedCompletion),
    				Completions:    pointer.Int32(10_000),
    				Parallelism:    pointer.Int32(10_000),
    				Template:       validPodTemplate,
    			},
    		},
    		"valid Indexed high completions low parallelism": {
    			spec: &batch.JobSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 14 14:38:42 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. pkg/registry/resource/resourceslice/strategy.go

    	"nodeName": nodeNameTriggerFunc,
    }
    
    func nodeNameTriggerFunc(obj runtime.Object) string {
    	return obj.(*resource.ResourceSlice).NodeName
    }
    
    // Indexers returns the indexers for ResourceSlice.
    func Indexers() *cache.Indexers {
    	return &cache.Indexers{
    		storage.FieldIndex("nodeName"): nodeNameIndexFunc,
    	}
    }
    
    func nodeNameIndexFunc(obj interface{}) ([]string, error) {
    	slice, ok := obj.(*resource.ResourceSlice)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top