Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for bookstore (0.12 sec)

  1. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

            try {
                doOpen();
            } catch (CorruptedCacheException e) {
                rebuild();
            }
        }
    
        private void doOpen() throws Exception {
            BlockStore.Factory factory = new BlockStore.Factory() {
                @Override
                public Object create(Class<? extends BlockPayload> type) {
                    if (type == HeaderBlock.class) {
                        return new HeaderBlock();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/FileBackedBlockStore.java

    import java.io.DataOutputStream;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.RandomAccessFile;
    
    public class FileBackedBlockStore implements BlockStore {
        private final File cacheFile;
        private RandomAccessFile file;
        private ByteOutput output;
        private ByteInput input;
        private long nextBlock;
        private Factory factory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. docs/bigdata/README.md

    ![hive-config](https://github.com/minio/minio/blob/master/docs/bigdata/images/image11.png?raw=true "hive advanced config")
    
    Add the following optimal entries for `hive-site.xml` to configure Hive with **MinIO**.
    
    ```
    hive.blobstore.use.blobstore.as.scratchdir=true
    hive.exec.input.listing.max.threads=50
    hive.load.dynamic.partitions.thread=25
    hive.metastore.fshandler.threads=50
    hive.mv.files.threads=40
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.cache.internal.btree.BlockStore$Factory> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (BlockStore.java:0)
    Class <org.gradle.cache.internal.btree.BlockStore> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (BlockStore.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top