Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for runEnv (0.11 sec)

  1. .idea/dictionaries/hungnv.xml

    <component name="ProjectDictionaryState">
      <dictionary name="hungnv">
        <words>
          <w>externalizers</w>
          <w>granularities</w>
          <w>multifile</w>
          <w>relocatability</w>
          <w>shrinker</w>
          <w>snapshotter</w>
          <w>snapshotter's</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 16 13:40:19 UTC 2023
    - 303 bytes
    - Viewed (0)
  2. pkg/test/framework/integration/framework_test.go

    				subTest.Run(child.runInternal)
    			}
    		}
    	}
    	tst.runEnd = time.Now()
    }
    
    func (tst *test) timeRange() timeRange {
    	return timeRange{
    		start: tst.runStart,
    		end:   tst.cleanupEnd,
    	}
    }
    
    func (tst *test) doCheck() error {
    	// Make sure the component was closed after the test's run method exited.
    	if tst.componentCloseStart.Before(tst.runEnd) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. pilot/pkg/leaderelection/leaderelection.go

    	mu sync.RWMutex
    }
    
    // Run will start leader election, calling all runFns when we become the leader.
    // If leader election is disabled, it skips straight to the runFns.
    func (l *LeaderElection) Run(stop <-chan struct{}) {
    	if !l.enabled {
    		log.Infof("bypassing leader election: %v", l.electionID)
    		for _, f := range l.runFns {
    			go f(stop)
    		}
    		<-stop
    		return
    	}
    	if l.defaultWatcher != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/AntProjectIntegrationTest.groovy

    ant.importBuild(file('build.xml')) { antTaskName ->
        antTaskName == 'b' ? 'ant-b' : antTaskName
    }
    
    task runAnt(dependsOn: 'a')
    """
            inTestDirectory().withTasks('runAnt').run().assertTasksExecutedInOrder(':c', ':ant-b', ':a', ':runAnt')
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. 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)
  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)
Back to top