Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 249 for bghelper (0.13 sec)

  1. internal/grid/benchmark_test.go

    			benchmarkGridRequests(b, n)
    		})
    	}
    }
    
    func benchmarkGridRequests(b *testing.B, n int) {
    	defer testlogger.T.SetErrorTB(b)()
    	errFatal := func(err error) {
    		b.Helper()
    		if err != nil {
    			b.Fatal(err)
    		}
    	}
    	rpc := NewSingleHandler[*testRequest, *testResponse](handlerTest2, newTestRequest, newTestResponse)
    	grid, err := SetupTestGrid(n)
    	errFatal(err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. api/maven-api-model/pom.xml

                  </params>
                </configuration>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>build-helper-maven-plugin</artifactId>
            <executions>
              <execution>
                <goals>
                  <goal>attach-artifact</goal>
                </goals>
                <configuration>
                  <artifacts>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/iter/pull_test.go

    	for end := 0; end <= 3; end++ {
    		t.Run(fmt.Sprint(end), func(t *testing.T) {
    			ng := stableNumGoroutine()
    			wantNG := func(want int) {
    				if xg := runtime.NumGoroutine() - ng; xg != want {
    					t.Helper()
    					t.Errorf("have %d extra goroutines, want %d", xg, want)
    				}
    			}
    			wantNG(0)
    			next, stop := Pull(count(3))
    			wantNG(1)
    			for i := range end {
    				v, ok := next()
    				if v != i || ok != true {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. pkg/proxy/util/utils.go

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/client-go/tools/events"
    	utilsysctl "k8s.io/component-helpers/node/util/sysctl"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/apis/core/v1/helper"
    	"k8s.io/kubernetes/pkg/features"
    	netutils "k8s.io/utils/net"
    )
    
    const (
    	// IPv4ZeroCIDR is the CIDR block for the whole IPv4 address space
    	IPv4ZeroCIDR = "0.0.0.0/0"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. pkg/api/pod/util.go

    	for resourceName, quantity := range container.Resources.Limits {
    		if helper.IsHugePageResourceName(resourceName) {
    			if !helper.IsHugePageResourceValueDivisible(resourceName, quantity) {
    				return true
    			}
    		}
    	}
    
    	for resourceName, quantity := range container.Resources.Requests {
    		if helper.IsHugePageResourceName(resourceName) {
    			if !helper.IsHugePageResourceValueDivisible(resourceName, quantity) {
    				return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/jvm/JavaToolchainFixture.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.internal.jvm.Jvm
    import org.gradle.internal.jvm.inspection.JvmInstallationMetadata
    import org.gradle.test.fixtures.file.TestFile
    
    /**
     * Introduces helper methods to write integration tests using Java toolchains.
     */
    @SelfType(AbstractIntegrationSpec)
    trait JavaToolchainFixture {
    
        TestFile configureJavaPluginToolchainVersion(Jvm jvm) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. pkg/controller/testutil/test_utils.go

    func CreateZoneID(region, zone string) string {
    	return region + ":\x00:" + zone
    }
    
    // GetKey is a helper function used by controllers unit tests to get the
    // key for a given kubernetes resource.
    func GetKey(obj interface{}, t *testing.T) string {
    	t.Helper()
    	tombstone, ok := obj.(cache.DeletedFinalStateUnknown)
    	if ok {
    		// if tombstone , try getting the value from tombstone.Obj
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/testprog/stress.go

    	if err != nil {
    		log.Fatalf("dial failed: %v", err)
    	}
    	var tmp [1]byte
    	c.Read(tmp[:])
    	c.Close()
    
    	go func() {
    		runtime.Gosched()
    		select {}
    	}()
    
    	// Unblock helper goroutines and wait them to finish.
    	wp.Write(tmp[:])
    	wp.Write(tmp[:])
    	close(done)
    	wg.Wait()
    
    	runtime.GOMAXPROCS(procs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/testprog/stress-start-stop.go

    			log.Fatalf("dial failed: %v", err)
    			return
    		}
    		var tmp [1]byte
    		c.Read(tmp[:])
    		c.Close()
    
    		go func() {
    			runtime.Gosched()
    			select {}
    		}()
    
    		// Unblock helper goroutines and wait them to finish.
    		wp.Write(tmp[:])
    		wp.Write(tmp[:])
    		close(done)
    		wg.Wait()
    	}()
    
    	const iters = 5
    	for i := 0; i < iters; i++ {
    		var w io.Writer
    		if i == iters-1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. maven-slf4j-provider/pom.xml

                  <goal>unpack</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
          <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>build-helper-maven-plugin</artifactId>
            <executions>
              <execution>
                <id>add-slf4j-simple</id>
                <goals>
                  <goal>add-source</goal>
                </goals>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top