Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for runEnv (0.15 sec)

  1. src/vendor/golang.org/x/text/unicode/bidi/core.go

    		if t == ET {
    			// locate end of sequence
    			runStart := i
    			runEnd := s.findRunLimit(runStart, ET)
    
    			// check values at ends of sequence
    			t := s.sos
    			if runStart > 0 {
    				t = s.types[runStart-1]
    			}
    			if t != EN {
    				t = s.eos
    				if runEnd < len(s.types) {
    					t = s.types[runEnd]
    				}
    			}
    			if t == EN {
    				setTypes(s.types[runStart:runEnd], EN)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  2. src/runtime/runtime_test.go

    			b.ReportMetric(float64(latencies[len(latencies)*99/100]), "p99-ns")
    		}
    		return func(b *testing.B) {
    			b.Run("idle", runOne)
    
    			b.Run("loaded", func(b *testing.B) {
    				stop := applyGCLoad(b)
    				runOne(b)
    				// Make sure to stop the timer before we wait! The load created above
    				// is very heavy-weight and not easy to stop, so we could end up
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/go/doc/testdata/benchmark.go

    func (b *B) SetBytes(n int64) { b.bytes = n }
    
    func (b *B) nsPerOp() int64 {
    	if b.N <= 0 {
    		return 0
    	}
    	return b.duration.Nanoseconds() / int64(b.N)
    }
    
    // runN runs a single benchmark for the specified number of iterations.
    func (b *B) runN(n int) {
    	// Try to get a comparable environment for each run
    	// by clearing garbage from previous runs.
    	runtime.GC()
    	b.N = n
    	b.ResetTimer()
    	b.StartTimer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  4. src/testing/benchmark.go

    // benchmark function that calls ReportAllocs.
    func (b *B) ReportAllocs() {
    	b.showAllocResult = true
    }
    
    // runN runs a single benchmark for the specified number of iterations.
    func (b *B) runN(n int) {
    	benchmarkLock.Lock()
    	defer benchmarkLock.Unlock()
    	defer func() {
    		b.runCleanup(normalPanic)
    		b.checkRaces()
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    		broken = runY
    		b.Disable = false
    
    	case !runN.Success && runY.Success:
    		b.Logf("target fails with no changes, succeeds with all changes")
    		b.Logf("searching for minimal set of disabled changes causing failure")
    		broken = runN
    		b.Disable = true
    
    	case runN.Success && runY.Success:
    		b.Fatalf("target succeeds with no changes and all changes")
    
    	case !runN.Success && !runY.Success:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  6. src/go/doc/testdata/testing.1.golden

    	func (c *B) log(s string)
    
    	// 
    	func (b *B) nsPerOp() int64
    
    	// run times the benchmark function in a separate goroutine. 
    	func (b *B) run() BenchmarkResult
    
    	// runN runs a single benchmark for the specified number of ...
    	func (b *B) runN(n int)
    
    	// trimOutput shortens the output from a benchmark, which can be ...
    	func (b *B) trimOutput()
    
    	// The results of a benchmark run. 
    	type BenchmarkResult struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  7. pilot/pkg/leaderelection/leaderelection_test.go

    	}, retry.Timeout(time.Second))
    }
    
    func TestLeaderElectionDisabled(t *testing.T) {
    	client := fake.NewSimpleClientset()
    	watcher := &fakeDefaultWatcher{}
    	// Prevent LeaderElection from creating a lease, so that the runFn only runs
    	// if leader election is disabled.
    	client.Fake.PrependReactor("*", "*", func(action k8stesting.Action) (bool, runtime.Object, error) {
    		return true, nil, fmt.Errorf("nope, out of luck")
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. src/testing/sub_test.go

    				benchTime: durationOrCountFlag{d: 1 * time.Microsecond},
    			}
    			if tc.chatty {
    				root.chatty = newChattyPrinter(root.w)
    			}
    			root.runN(1)
    			if ok != !tc.failed {
    				t.Errorf("%s:ok: got %v; want %v", tc.desc, ok, !tc.failed)
    			}
    			if !ok != root.Failed() {
    				t.Errorf("%s:root failed: got %v; want %v", tc.desc, !ok, root.Failed())
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/rs/zerolog,v1.16.0,h1:AaELmZdcJHT8m6oZ5py4213cdFK8XGXkB3dFdAQ+P7Q=,64e248c1fa3c62e2d904868b49acf906d0cb04a00a323d2562ea9ce7c6f154e1
    github.com/rubenv/sql-migrate,v0.0.0-20191025130928-9355dd04f4b3,h1:lwDYefgiwhjuAuVnMVUYknoF+Yg9CBUykYGvYoPCNnQ=,4d4e9e2c7387542b26a1cd9fbfcbdab7b75dce807877d5a0a501180b584c60f2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.21.md

    - Add missing `--kube-api-content-type` in kubemark hollow template ([#98911](https://github.com/kubernetes/kubernetes/pull/98911), [@Jeffwan](https://github.com/Jeffwan)) [SIG Scalability and Testing]
    - Avoid duplicate error messages when runing kubectl edit quota ([#98201](https://github.com/kubernetes/kubernetes/pull/98201), [@pacoxu](https://github.com/pacoxu)) [SIG API Machinery and Apps]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
Back to top