Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 312 for buzz (0.04 sec)

  1. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    						Labels:      map[k8s.AnnotationKey]k8s.AnnotationValue{"foo": "bar", "gateway.networking.k8s.io/ignore": "true"},
    						Annotations: map[k8s.AnnotationKey]k8s.AnnotationValue{"fizz": "buzz", "gateway.networking.k8s.io/ignore": "true"},
    					},
    				},
    			},
    			objects: defaultObjects,
    		},
    		{
    			name: "kube-gateway-ambient-redirect",
    			gw: k8sbeta.Gateway{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/client_test.go

    			})
    
    			// check we can patch items
    			var patchedCfg config.Config
    			if _, err := store.(*Client).Patch(*cfg, func(cfg config.Config) (config.Config, types.PatchType) {
    				cfg.Annotations["fizz"] = "buzz"
    				patchedCfg = cfg
    				return cfg, types.JSONPatchType
    			}); err != nil {
    				t.Errorf("unexpected err in Patch: %v", err)
    			}
    			// validate it is updated
    			retry.UntilSuccessOrFail(t, func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/expvar/expvar_test.go

    	m1.Add("z", 2)
    	m.Set("map2", &m2)
    	for i := 0; i < 9; i++ {
    		m2.Add(strconv.Itoa(i), int64(i))
    	}
    	var s1, s2 String
    	m.Set("str1", &s1)
    	s1.Set("hello, world!")
    	m.Set("str2", &s2)
    	s2.Set("fizz buzz")
    	b.ResetTimer()
    
    	b.ReportAllocs()
    	for i := 0; i < b.N; i++ {
    		_ = m.String()
    	}
    }
    
    func BenchmarkRealworldExpvarUsage(b *testing.B) {
    	var (
    		bytesSent Int
    		bytesRead Int
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    				LabelSelector: &metav1.LabelSelector{
    					MatchExpressions: []metav1.LabelSelectorRequirement{
    						{
    							Key:      "foo",
    							Operator: metav1.LabelSelectorOpIn,
    							Values:   []string{"bar", "buzz"},
    						},
    					},
    				},
    				TopologyKey: "region",
    			},
    			{
    				LabelSelector: &metav1.LabelSelector{
    					MatchExpressions: []metav1.LabelSelectorRequirement{
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  5. tests/fuzz/Dockerfile.fuzz

        rm -rf  /var/log/*log \
        /var/lib/apt/lists/* \
        /var/log/apt/* \
        /var/lib/dpkg/*-old \
        /var/cache/debconf/*-old
    
    RUN go get -u github.com/dvyukov/go-fuzz/go-fuzz \
        github.com/dvyukov/go-fuzz/go-fuzz-dep \
        github.com/dvyukov/go-fuzz/go-fuzz-build
    
    COPY . /istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 21 12:29:52 UTC 2021
    - 957 bytes
    - Viewed (0)
  6. src/testing/fuzz.go

    // F is a type passed to fuzz tests.
    //
    // Fuzz tests run generated inputs against a provided fuzz target, which can
    // find and report potential bugs in the code being tested.
    //
    // A fuzz test runs the seed corpus by default, which includes entries provided
    // by (*F).Add and entries in the testdata/fuzz/<FuzzTestName> directory. After
    // any necessary setup and calls to (*F).Add, the fuzz test must then call
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. tests/fuzz/fuzz.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package fuzz
    
    import (
    	"istio.io/istio/pilot/pkg/config/kube/crd"
    )
    
    func FuzzParseInputs(data []byte) int {
    	_, _, err := crd.ParseInputs(string(data))
    	if err != nil {
    		return 0
    	}
    	return 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 07 03:26:36 UTC 2022
    - 783 bytes
    - Viewed (0)
  8. src/internal/fuzz/fuzz.go

    		if coverageEnabled {
    			fmt.Fprintf(c.opts.Log, "fuzz: elapsed: %s, gathering baseline coverage: %d/%d completed\n", c.elapsed(), runSoFar, c.warmupInputCount)
    		} else {
    			fmt.Fprintf(c.opts.Log, "fuzz: elapsed: %s, testing seed corpus: %d/%d completed\n", c.elapsed(), runSoFar, c.warmupInputCount)
    		}
    	} else if c.crashMinimizing != nil {
    		fmt.Fprintf(c.opts.Log, "fuzz: elapsed: %s, minimizing\n", c.elapsed())
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  9. pkg/fuzz/README.md

    func FuzzBuildHTTP(f *testing.F) {
      fuzz.Fuzz(f, func(fg fuzz.Helper) {
        // Setup a few structs for testing
        bundle := fuzz.Struct[trustdomain.Bundle](fg)
            // This one has a custom validator
        push := fuzz.Struct[*model.PushContext](fg, validatePush)
            // *model.Proxy, and other types, implement the fuzz.Validator interface and already validate some basics.
        node := fuzz.Struct[*model.Proxy](fg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 21:25:25 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_fuzz_profile_flags.txt

    [!fuzz] skip
    
    ! go test -fuzz=FuzzTrivial -coverprofile=prof
    ! stdout .
    stderr '^cannot use -coverprofile flag with -fuzz flag$'
    
    ! go test -fuzz=FuzzTrivial -blockprofile=prof
    ! stdout .
    stderr '^cannot use -blockprofile flag with -fuzz flag$'
    
    ! go test -fuzz=FuzzTrivial -cpuprofile=prof
    ! stdout .
    stderr '^cannot use -cpuprofile flag with -fuzz flag$'
    
    ! go test -fuzz=FuzzTrivial -memprofile=prof
    ! stdout .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 02 18:01:20 UTC 2021
    - 855 bytes
    - Viewed (0)
Back to top