Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for bh (0.03 sec)

  1. platforms/core-runtime/base-services/src/jmh/java/org/gradle/internal/reflect/CachedConstructorsBenchmark.java

            }
        }
    
        private int i;
    
        @Benchmark
        public void uncached(Blackhole bh) {
            bh.consume(randomClasses[++i % ARR_LEN].getConstructors());
        }
    
        @Benchmark
        public void cached(Blackhole bh) {
            bh.consume(cache.get(randomClasses[++i % ARR_LEN], EMPTY));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache/src/jmh/java/org/gradle/OptionalBenchmark.java

    public class OptionalBenchmark {
    
        final Path path = Paths.get(".");
        final Path pathRoot = Paths.get(".").toAbsolutePath().getRoot();
    
        @Benchmark
        public void nullCheck(Blackhole bh) {
            bh.consume(nullCheck(path));
            bh.consume(nullCheck(pathRoot));
        }
    
        private static Object nullCheck(Path path) {
            Path fileName = path.getFileName();
            if (fileName != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/jmh/java/org/gradle/internal/deprecation/DeprecationIdCreationBenchmark.java

    @SuppressWarnings("Since15")
    @Threads(2)
    @Warmup(iterations = 5)
    @Measurement(iterations = 5)
    @State(Scope.Benchmark)
    public class DeprecationIdCreationBenchmark {
    
        @Benchmark
        public void idCreation(Blackhole bh) {
            bh.consume(createDefaultDeprecationId("The detachedConfiguration1 configuration has been deprecated for consumption."));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 06:13:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. cmd/http-stats.go

    	return &bucketHTTPStats{
    		httpStats: make(map[string]bucketHTTPAPIStats),
    	}
    }
    
    func (bh *bucketHTTPStats) delete(bucket string) {
    	bh.Lock()
    	defer bh.Unlock()
    
    	delete(bh.httpStats, bucket)
    }
    
    func (bh *bucketHTTPStats) updateHTTPStats(bucket, api string, w *xhttp.ResponseRecorder) {
    	if bh == nil {
    		return
    	}
    
    	if w != nil && api == apiGetObject {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/native/src/jmh/java/org/gradle/internal/nativeintegration/filesystem/FileMetadataAccessorBenchmark.java

        @Benchmark
        public void stat_missing_file(Blackhole bh) {
            bh.consume(getAccessor(accessorClassName).stat(missing));
        }
    
        @Benchmark
        public void stat_directory(Blackhole bh) {
            bh.consume(getAccessor(accessorClassName).stat(directory));
        }
    
        @Benchmark
        public void stat_existing(Blackhole bh) {
            bh.consume(getAccessor(accessorClassName).stat(realFile));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. test/codegen/memcombine.go

    	// arm64:`MOVWU\s\(R[0-9]+\),`,-`MOV[BH]`
    	// ppc64le:`MOVWZ\s`,-`MOV[BH]Z\s`
    	// ppc64:`MOVWBR\s`,-`MOV[BH]Z\s`
    	return binary.LittleEndian.Uint32(b)
    }
    
    func load_le32_idx(b []byte, idx int) uint32 {
    	// amd64:`MOVL\s\(.*\)\(.*\*1\),`,-`MOV[BW]`,-`OR`
    	// 386:`MOVL\s\(.*\)\(.*\*1\),`,-`MOV[BW]`,-`OR`
    	// s390x:`MOVWBR\s\(.*\)\(.*\*1\),`
    	// arm64:`MOVWU\s\(R[0-9]+\)\(R[0-9]+\),`,-`MOV[BH]`
    	// ppc64le:`MOVWZ\s`,-`MOV[BH]Z\s`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/jmh/java/org/gradle/api/internal/provider/EvaluationContextPerfTest.java

            property.set(new TransformBackedProvider<>(String.class, new DefaultProvider<>(() -> value), v -> v + v));
        }
    
        @Benchmark
        public void getPropertyValue(Blackhole bh) {
            bh.consume(property.get());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:31 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    		}
    
    		if at != 1 && startArg > 0 && bh <= 0 {
    			str := fmt.Sprintf("b%s", sfx)
    			if startArg > 1 && (cr != 0 || bh > 0) {
    				str += fmt.Sprintf(" cr%d", cr)
    				sep = ","
    			}
    			buf.WriteString(str)
    			if startArg < 2 && bh == 0 {
    				str := fmt.Sprintf(" %s",
    					gnuArg(&inst, 1, inst.Args[1], PC))
    				buf.WriteString(str)
    				startArg = 3
    			} else if bh == 0 {
    				startArg = 3
    			}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/plan9x.go

    	XADD:      true,
    	XCHG:      true,
    	XOR:       true,
    }
    
    var plan9Reg = [...]string{
    	AL:   "AL",
    	CL:   "CL",
    	BL:   "BL",
    	DL:   "DL",
    	AH:   "AH",
    	CH:   "CH",
    	BH:   "BH",
    	DH:   "DH",
    	SPB:  "SP",
    	BPB:  "BP",
    	SIB:  "SI",
    	DIB:  "DI",
    	R8B:  "R8",
    	R9B:  "R9",
    	R10B: "R10",
    	R11B: "R11",
    	R12B: "R12",
    	R13B: "R13",
    	R14B: "R14",
    	R15B: "R15",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. docs/language_names.yml

    ae: avesta
    af: Afrikaans
    ak: Akan
    am: አማርኛ
    an: aragonés
    ar: اللغة العربية
    as: অসমীয়া
    av: авар мацӀ
    ay: aymar aru
    az: azərbaycan dili
    ba: башҡорт теле
    be: беларуская мова
    bg: български език
    bh: भोजपुरी
    bi: Bislama
    bm: bamanankan
    bn: বাংলা
    bo: བོད་ཡིག
    br: brezhoneg
    bs: bosanski jezik
    ca: Català
    ce: нохчийн мотт
    ch: Chamoru
    co: corsu
    cr: ᓀᐦᐃᔭᐍᐏᐣ
    cs: čeština
    cu: ѩзыкъ словѣньскъ
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:42:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top