Searched refs:StoreConfig (Results 1 - 25 of 25) sorted by relevance

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/
H A DStoreConfig.java6 * $Id: StoreConfig.java,v 1.1 2008/02/07 17:12:26 mark Exp $
23 * <p>{@code StoreConfig} objects are thread-safe. Multiple threads may safely
24 * call the methods of a shared {@code StoreConfig} object.</p>
27 * summary example</a>} for an example of using a {@code StoreConfig}.</p>
31 public class StoreConfig implements Cloneable { class in inherits:Cloneable
37 public static final StoreConfig DEFAULT = new StoreConfig();
51 public StoreConfig() { method in class:StoreConfig
57 public StoreConfig cloneConfig() {
59 return (StoreConfig) clon
[all...]
H A DEntityStore.java103 public EntityStore(Environment env, String storeName, StoreConfig config)
130 public StoreConfig getConfig() {
293 * {@link StoreConfig#setMutations StoreConfig.setMutations}.</p>
406 * if the store is not {@link StoreConfig#setReadOnly ReadOnly}.</li>
451 * match {@link StoreConfig#setTransactional StoreConfig}.</li>
453 * if the store is not {@link StoreConfig#setReadOnly ReadOnly}.</li>
455 * {@link StoreConfig#setReadOnly StoreConfig}
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/raw/
H A DRawStore.java15 import com.sleepycat.persist.StoreConfig;
35 * StoreConfig#setModel}. In other words, the configured model must be
62 public RawStore(Environment env, String storeName, StoreConfig config)
101 public StoreConfig getConfig() {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/gettingStarted/
H A DSimpleStorePut.java10 import com.sleepycat.persist.StoreConfig;
28 StoreConfig storeConfig = new StoreConfig();
H A DSimpleStoreGet.java10 import com.sleepycat.persist.StoreConfig;
29 StoreConfig storeConfig = new StoreConfig();
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/persist/test/
H A DEvolveTestBase.java21 import com.sleepycat.persist.StoreConfig;
312 private boolean openStore(StoreConfig config)
343 StoreConfig config = new StoreConfig();
351 StoreConfig config = new StoreConfig();
374 StoreConfig config = new StoreConfig();
H A DJoinTest.java25 import com.sleepycat.persist.StoreConfig;
54 StoreConfig config = new StoreConfig();
H A DSubclassIndexTest.java25 import com.sleepycat.persist.StoreConfig;
71 StoreConfig storeConfig = new StoreConfig();
H A DNegativeTest.java19 import com.sleepycat.persist.StoreConfig;
43 StoreConfig config = new StoreConfig();
H A DSequenceTest.java21 import com.sleepycat.persist.StoreConfig;
89 StoreConfig storeConfig = new StoreConfig();
H A DOperationTest.java32 import com.sleepycat.persist.StoreConfig;
60 StoreConfig config = new StoreConfig();
68 StoreConfig config = new StoreConfig();
73 private void open(StoreConfig config)
663 StoreConfig config = new StoreConfig();
827 StoreConfig config = new StoreConfig();
[all...]
H A DForeignKeyTest.java26 import com.sleepycat.persist.StoreConfig;
92 StoreConfig config = new StoreConfig();
H A DEvolveCase.java18 import com.sleepycat.persist.StoreConfig;
37 void configure(EntityModel model, StoreConfig config) {
H A DIndexTest.java37 import com.sleepycat.persist.StoreConfig;
82 StoreConfig config = new StoreConfig();
H A DEvolveClasses.java26 import com.sleepycat.persist.StoreConfig;
5258 void configure(EntityModel model, StoreConfig config) {
5370 void configure(EntityModel model, StoreConfig config) {
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/
H A DCustomKeyOrderExample.java20 import com.sleepycat.persist.StoreConfig;
93 StoreConfig storeConfig = new StoreConfig();
H A DDplDump.java20 import com.sleepycat.persist.StoreConfig;
122 StoreConfig storeConfig = new StoreConfig();
H A DEventExampleDPL.java29 import com.sleepycat.persist.StoreConfig;
168 StoreConfig storeConfig = new StoreConfig();
H A DPersonExample.java24 import com.sleepycat.persist.StoreConfig;
163 StoreConfig storeConfig = new StoreConfig();
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/persist/txn/
H A DTxnGuideDPL.java14 import com.sleepycat.persist.StoreConfig;
85 StoreConfig myStoreConfig = new StoreConfig();
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/model/
H A DSecondaryKey.java21 import com.sleepycat.persist.StoreConfig;
144 * StoreConfig#setTransactional}.</p>
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/evolve/
H A DMutations.java17 import com.sleepycat.persist.StoreConfig;
23 * StoreConfig#setMutations StoreConfig.setMutations}. For example:</p>
28 * StoreConfig config = new StoreConfig();
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/impl/
H A DStore.java42 import com.sleepycat.persist.StoreConfig;
89 private StoreConfig storeConfig;
105 StoreConfig config,
122 storeConfig = StoreConfig.DEFAULT;
251 public StoreConfig getConfig() {
669 * doNotCreate is true when StoreConfig.getSecondaryBulkLoad is true
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/build_unix/
H A DMakefile439 $(JAVA_SLEEPYCAT)/persist/StoreConfig.java \
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/dist/
H A DMakefile.in437 $(JAVA_SLEEPYCAT)/persist/StoreConfig.java \

Completed in 204 milliseconds