Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for indexName (0.13 sec)

  1. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    final String indexName;
                    if (isFessIndex) {
                        final boolean exists = existsIndex(fessConfig.getIndexDocumentUpdateIndex());
                        if (!exists) {
                            indexName = generateNewIndexName(configIndex);
                            createIndex(configIndex, indexName);
                            createAlias(configIndex, indexName);
                        } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    }
    
    // validateIndexers will check the prefix of indexers.
    func validateIndexers(indexers *cache.Indexers) error {
    	if indexers == nil {
    		return nil
    	}
    	for indexName := range *indexers {
    		if len(indexName) <= 2 || (indexName[:2] != "l:" && indexName[:2] != "f:") {
    			return fmt.Errorf("index must prefix with \"l:\" or \"f:\"")
    		}
    	}
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			expiredWatchers = append(expiredWatchers, watchers)
    		}
    	}
    	return expiredWatchers
    }
    
    type filterWithAttrsFunc func(key string, l labels.Set, f fields.Set) bool
    
    type indexedTriggerFunc struct {
    	indexName   string
    	indexerFunc storage.IndexerFunc
    }
    
    // Cacher is responsible for serving WATCH and LIST requests for a given
    // resource from its internal cache and updating its cache in the background
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. tests/migrate_test.go

    		}
    		assert.ElementsMatch(t, expected, indexes)
    	}
    
    	uniqueIndex := &migrator.Index{TableName: table, NameValue: DB.Config.NamingStrategy.IndexName(table, "name"), ColumnList: []string{"name"}, PrimaryKeyValue: sql.NullBool{Bool: false, Valid: true}, UniqueValue: sql.NullBool{Bool: true, Valid: true}}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
Back to top