Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for paranoia (0.05 seconds)

  1. guava-tests/benchmark/com/google/common/collect/SetContainsBenchmark.java

        this.setToTest = (Set<Element>) impl.create(sampleData.getValuesInSet());
        this.queries = sampleData.getQueries();
      }
    
      @Benchmark
      boolean contains(int reps) {
        // Paranoia: acting on hearsay that accessing fields might be slow
        // Should write a benchmark to test that!
        Set<Element> set = setToTest;
        Element[] queries = this.queries;
    
        int mask = queries.length - 1;
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 2.5K bytes
    - Click Count (0)
  2. guava-tests/benchmark/com/google/common/collect/MapBenchmark.java

        } else {
          values = sampleData.getValuesInSet();
        }
        this.mapToTest = impl.create(values);
        this.queries = sampleData.getQueries();
      }
    
      @Benchmark
      boolean get(int reps) {
        // Paranoia: acting on hearsay that accessing fields might be slow
        // Should write a benchmark to test that!
        Map<Element, Element> map = mapToTest;
        Element[] queries = this.queries;
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue May 13 17:27:14 GMT 2025
    - 7.8K bytes
    - Click Count (0)
  3. benchmarks/src/main/java/org/elasticsearch/benchmark/search/aggregations/bucket/terms/LongKeyedBucketOrdsBenchmark.java

        private final BigArrays bigArrays = new BigArrays(recycler, null, "REQUEST");
    
        /**
         * Force loading all of the implementations just for extra paranoia's sake.
         * We really don't want the JVM to be able to eliminate one of them just
         * because we don't use it in the particular benchmark. That is totally a
         * thing it'd do. It is sneaky.
         */
        @Setup
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Feb 19 20:59:23 GMT 2021
    - 8.4K bytes
    - Click Count (0)
  4. docs/zh-hant/llm-prompt.md

    - Never change punctuation inside inline code, code blocks, URLs, or file paths.
    - For more details, please follow the [Chinese Copywriting Guidelines](https://github.com/sparanoid/chinese-copywriting-guidelines).
    
    ### Ellipsis
    
    - Keep ellipsis style consistent within each document, prefer `...` over `……`.
    - Never change ellipsis in code, URLs, or CLI examples.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Dec 29 18:54:20 GMT 2025
    - 2.2K bytes
    - Click Count (0)
  5. cmd/data-scanner-metric.go

    func (p *scannerMetrics) getCurrentPaths() []string {
    	var res []string
    	prefix := globalLocalNodeName + "/"
    	p.currentPaths.Range(func(key, value any) bool {
    		// We are a bit paranoid, but better miss an entry than crash.
    		name, ok := key.(string)
    		if !ok {
    			return true
    		}
    		obj, ok := value.(*currentPathTracker)
    		if !ok {
    			return true
    		}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Oct 01 06:06:01 GMT 2025
    - 9.4K bytes
    - Click Count (0)
Back to Top