Package xbird.util.concurrent.lock

Examples of xbird.util.concurrent.lock.NoopLock


        long[][] dist = readDistribution(file, threads, round);

        System.gc();

        // GClock       
        runBenchmarkWithZipfDistribution1(new NoopLock(), filename, threads, capacity, round, scanPercentage, scanLength, ReplacementAlgorithm.GClock, pageSize, dist);
    }
View Full Code Here


        long[][] dist = readDistribution(file, threads, round);

        System.gc();

        // GClock       
        runBenchmarkWithZipfDistribution1(new NoopLock(), filename, threads, capacity, round, scanPercentage, scanLength, ReplacementAlgorithm.GClockK, pageSize, dist);
    }
View Full Code Here

        System.gc();

        // GClockK
        String filename = FileUtils.basename(inputFile);
        BufferedReader reader = new BufferedReader(new FileReader(file));
        runBenchmarkWithZipfDistribution1(new NoopLock(), filename, threads, capacity, round, scanPercentage, scanLength, ReplacementAlgorithm.GClockK, pageSize, reader);
        IOUtils.closeQuietly(reader);
    }
View Full Code Here

        System.gc();

        // GClock
        String filename = FileUtils.basename(inputFile);
        BufferedReader reader = new BufferedReader(new FileReader(file));
        runBenchmarkWithZipfDistribution1(new NoopLock(), filename, threads, capacity, round, scanPercentage, scanLength, ReplacementAlgorithm.GClock, pageSize, reader);
        IOUtils.closeQuietly(reader);
    }
View Full Code Here

        String filename = FileUtils.basename(inputFile);

        System.gc();

        // GClock
        runBenchmarkWithZipfDistribution1(new NoopLock(), filename, threads, capacity, round, scanPercentage, scanLength, ReplacementAlgorithm.NbGClock, pageSize, distribution);
    }
View Full Code Here

        String filename = FileUtils.basename(inputFile);

        System.gc();

        // GClock
        runBenchmarkWithZipfDistribution1(new NoopLock(), filename, threads, capacity, round, scanPercentage, scanLength, ReplacementAlgorithm.NbGClockK, pageSize, distribution);
    }
View Full Code Here

        long[][] dist = readDistribution(file, threads, round);

        System.gc();

        // GClock       
        runBenchmarkWithZipfDistribution1(false, new NoopLock(), filename, threads, capacity, round, scanPercentage, scanLength, ReplacementAlgorithm.NbGClock, pageSize, dist);
    }
View Full Code Here

        long[][] dist = readDistribution(file, threads, round);

        System.gc();

        // GClock       
        runBenchmarkWithZipfDistribution1(false, new NoopLock(), filename, threads, capacity, round, scanPercentage, scanLength, ReplacementAlgorithm.NbGClockK, pageSize, dist);
    }
View Full Code Here

        String filename = FileUtils.basename(inputFile);

        System.gc();

        // GClock
        runBenchmarkWithZipfDistribution1(new NoopLock(), filename, threads, capacity, round, scanPercentage, scanLength, ReplacementAlgorithm.NbGClock, pageSize, distribution);
    }
View Full Code Here

        String filename = FileUtils.basename(inputFile);

        System.gc();

        // GClock
        runBenchmarkWithZipfDistribution1(new NoopLock(), filename, threads, capacity, round, scanPercentage, scanLength, ReplacementAlgorithm.NbGClockK, pageSize, distribution);
    }
View Full Code Here

TOP

Related Classes of xbird.util.concurrent.lock.NoopLock

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.