Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for doRace (0.12 sec)

  1. src/runtime/race/race_test.go

    // the name of the testcase and returns the result of this
    // comparison.
    func processLog(testName string, tsanLog []string) string {
    	if !strings.HasPrefix(testName, "Race") && !strings.HasPrefix(testName, "NoRace") {
    		return ""
    	}
    	gotRace := false
    	for _, s := range tsanLog {
    		if strings.Contains(s, "DATA RACE") {
    			gotRace = true
    			break
    		}
    	}
    
    	failing := strings.Contains(testName, "Failing")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 6K bytes
    - Viewed (0)
  2. src/internal/race/norace.go

    Dmitri Shuralyov <******@****.***> 1697570373 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 603 bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CacheSupport.java

            if (value == null) {
                value = factory.apply(key);
                doCache(key, value);
            }
    
            return value;
        }
    
        @Override
        public V getIfPresent(K key) {
            return doGet(key);
        }
    
        @Override
        public void put(K key, V value) {
            doCache(key, value);
        }
    
        abstract protected <T extends K> V doGet(T key);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. buildscripts/race.sh

    #!/usr/bin/env bash
    
    set -e
    
    export GORACE="history_size=7"
    export MINIO_API_REQUESTS_MAX=10000
    
    for d in $(go list ./...); do
    	CGO_ENABLED=1 go test -v -race --timeout 100m "$d"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 26 05:07:25 UTC 2023
    - 184 bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/MapBackedCache.java

            this.map = map;
        }
    
        @Override
        protected <T extends K> V doGet(T key) {
            return map.get(key);
        }
    
        @Override
        protected <T extends K, N extends V> void doCache(T key, N value) {
            map.put(key, value);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata/list2.txt

    -- input --
    Text.
     1. Uno
       2) Dos
     3. Tres
       5. Cinco
     7. Siete
       11. Once
     12. Doce
     13. Trece.
    
    -- gofmt --
    Text.
     1. Uno
     2. Dos
     3. Tres
     5. Cinco
     7. Siete
     11. Once
     12. Doce
     13. Trece.
    
    -- text --
    Text.
     1. Uno
     2. Dos
     3. Tres
     5. Cinco
     7. Siete
     11. Once
     12. Doce
     13. Trece.
    
    -- markdown --
    Text.
    
     1. Uno
     2. Dos
     3. Tres
     5. Cinco
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 529 bytes
    - Viewed (0)
  7. src/runtime/race/output_test.go

    			if strings.HasPrefix(env, "GODEBUG=") ||
    				strings.HasPrefix(env, "GOMAXPROCS=") ||
    				strings.HasPrefix(env, "GORACE=") {
    				continue
    			}
    			cmd.Env = append(cmd.Env, env)
    		}
    		cmd.Env = append(cmd.Env,
    			"GOMAXPROCS=1", // see comment in race_test.go
    			"GORACE="+test.gorace,
    		)
    		got, _ := cmd.CombinedOutput()
    		matched := false
    		for _, re := range test.re {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 20:44:25 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. src/main/webapp/js/admin/plugins/form-validator/lang/de.js

    muss dazwischen sein ",lengthBadEnd:"  Zeichen",lengthTooLongStart:"Der eingegebene Wert ist größer als ",lengthTooShortStart:"Der eingegebene Wert ist kleiner als ",notConfirmed:"Die Eingaben sind unterschiedlich",badDomain:"Sie haben die falsche Domäne eingetragen",badUrl:"Sie haben nicht die richtige URL eingegeben",badCustomVal:"Eingabe einer falschen Antwort",andSpaces:" und Leerzeichen",badInt:"Sie haben keine Nummer eingegeben",badSecurityNumber:"Sie haben eine falsche Sozialversicherungsnummer...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  9. src/runtime/coro.go

    	systemstack(func() {
    		mp := gp.m
    		start := corostart
    		startfv := *(**funcval)(unsafe.Pointer(&start))
    		gp = newproc1(startfv, gp, pc, true, waitReasonCoroutine)
    
    		// Scribble down locked thread state if needed and/or donate
    		// thread-lock state to the new goroutine.
    		if mp.lockedExt+mp.lockedInt != 0 {
    			c.mp = mp
    			c.lockedExt = mp.lockedExt
    			c.lockedInt = mp.lockedInt
    		}
    	})
    	gp.coroarg = c
    	c.gp.set(gp)
    	return c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. README.md

    License
    -------
    This code is under the [Apache License, Version 2.0, January 2004][license].
    
    See the [`NOTICE`](./NOTICE) file for required notices and attributions.
    
    Donations
    ---------
    Do you like Apache Maven? Then [donate back to the ASF](https://www.apache.org/foundation/contributing.html) to support the development.
    
    Quick Build
    -------
    If you want to bootstrap Maven, you'll need:
    - Java 17+
    - Maven 3.6.3 or later
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top