Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 249 for bghelper (0.71 sec)

  1. pilot/pkg/networking/core/listener_test.go

    	t.Helper()
    	for _, fc := range getFilterChains(l) {
    		for _, f := range fc.Filters {
    			if f.Name == wellknown.HTTPConnectionManager {
    				return fc
    			}
    		}
    	}
    	t.Fatalf("tcp filter chain not found")
    	return nil
    }
    
    func testInboundListenerConfig(t *testing.T, proxy *model.Proxy, services ...*model.Service) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. src/internal/trace/reader_test.go

    		}
    		if err := v.Event(ev); err != nil {
    			t.Error(err)
    		}
    	}
    	if err := exp.Check(nil); err != nil {
    		t.Error(err)
    	}
    }
    
    func dumpTraceToText(t *testing.T, b []byte) string {
    	t.Helper()
    
    	br, err := raw.NewReader(bytes.NewReader(b))
    	if err != nil {
    		t.Fatalf("dumping trace: %v", err)
    	}
    	var sb strings.Builder
    	tw, err := raw.NewTextWriter(&sb, version.Current)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/runtime/coro_test.go

    	} {
    		t.Run(test, func(t *testing.T) {
    			checkCoroTestProgOutput(t, runTestProg(t, "testprogcgo", test))
    		})
    	}
    }
    
    func checkCoroTestProgOutput(t *testing.T, output string) {
    	t.Helper()
    
    	c := strings.SplitN(output, "\n", 2)
    	if len(c) == 1 {
    		t.Fatalf("expected at least one complete line in the output, got:\n%s", output)
    	}
    	expect, ok := strings.CutPrefix(c[0], "expect: ")
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:36:37 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. tests/binary/binaries_test.go

    var denylistedFlags = []string{
    	"--test.memprofilerate",
    }
    
    func runBinariesTest(t *testing.T, f func(t *testing.T, name string)) {
    	t.Helper()
    	if *releasedir == "" {
    		t.Skip("release dir not set")
    	}
    	binariesToTest := strings.Split(*binaries, " ")
    	if len(binariesToTest) == 0 {
    		t.Fatal("No binaries to test. Pass the --binaries flag.")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

          }
        }
        return suite;
      }
    
      @Override
      public void runTest() throws Exception {
        // First ensure that our classloaders are initializing the correct helper versions
        checkHelperVersion(getClass().getClassLoader(), "UnsafeAtomicHelper");
        checkHelperVersion(NO_UNSAFE, "SafeAtomicHelper");
        checkHelperVersion(NO_ATOMIC_REFERENCE_FIELD_UPDATER, "SynchronizedHelper");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. src/syscall/exec_linux_test.go

    		}
    		t.Fatalf("unshare failed: %v\n%s", err, out)
    	} else if len(out) != 0 {
    		if bytes.HasPrefix(out, []byte(mountNotSupported)) {
    			t.Skipf("skipping: helper process reported %s", out)
    		}
    		t.Fatalf("unexpected output from helper process: %s", out)
    	}
    
    	// How do we tell if the namespace was really unshared? It turns out
    	// to be simple: just try to remove the directory. If it's still mounted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

          }
        }
        return suite;
      }
    
      @Override
      public void runTest() throws Exception {
        // First ensure that our classloaders are initializing the correct helper versions
        checkHelperVersion(getClass().getClassLoader(), "UnsafeAtomicHelper");
        checkHelperVersion(NO_UNSAFE, "SafeAtomicHelper");
        checkHelperVersion(NO_ATOMIC_REFERENCE_FIELD_UPDATER, "SynchronizedHelper");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/nettest/conntest.go

    	t.Run("ConcurrentMethods", func(t *testing.T) { timeoutWrapper(t, mp, testConcurrentMethods) })
    }
    
    type connTester func(t *testing.T, c1, c2 net.Conn)
    
    func timeoutWrapper(t *testing.T, mp MakePipe, f connTester) {
    	t.Helper()
    	c1, c2, stop, err := mp()
    	if err != nil {
    		t.Fatalf("unable to make pipe: %v", err)
    	}
    	var once sync.Once
    	defer once.Do(func() { stop() })
    	timer := time.AfterFunc(time.Minute, func() {
    		once.Do(func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/helper/helpers.go

    limitations under the License.
    */
    
    package helper
    
    import (
    	"fmt"
    	"strings"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/selection"
    	"k8s.io/apimachinery/pkg/util/validation"
    	"k8s.io/kubernetes/pkg/apis/core/helper"
    )
    
    // IsExtendedResourceName returns true if:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. operator/pkg/util/progress/progress_test.go

    	"istio.io/istio/operator/pkg/name"
    )
    
    func TestProgressLog(t *testing.T) {
    	buf := bytes.NewBuffer(nil)
    	testBuf := io.Writer(buf)
    	testWriter = &testBuf
    	expected := ""
    	expect := func(e string) {
    		t.Helper()
    		// In buffer mode we don't overwrite old data, so we are constantly appending to the expected
    		newExpected := expected + "\n" + e
    		if newExpected != buf.String() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top