Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 293 for vlogf (0.51 sec)

  1. src/compress/flate/huffman_bit_writer_test.go

    	bw.flush()
    	got := buf.Bytes()
    
    	want, err := os.ReadFile(out)
    	if err != nil && !*update {
    		t.Error(err)
    		return
    	}
    
    	t.Logf("Testing %q", in)
    	if !bytes.Equal(got, want) {
    		if *update {
    			if in != out {
    				t.Logf("Updating %q", out)
    				if err := os.WriteFile(out, got, 0666); err != nil {
    					t.Error(err)
    				}
    				return
    			}
    			// in == out: don't accidentally destroy input
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 40.3K bytes
    - Viewed (0)
  2. tests/integration/telemetry/api/wasmplugin_test.go

    		// The gzipped tarball should have a wasm module.
    		wasmModuleURL := fmt.Sprintf("http://%v/layer/v1/%v:%v", registry.Address(), imageName, c.tag)
    		t.Logf("Trying to get a wasm file from %v", wasmModuleURL)
    		if err := installWasmExtension(t, c.name, wasmModuleURL, c.policy, fmt.Sprintf("g-%d", generation), path); err != nil {
    			t.Fatalf("failed to install WasmPlugin: %v", err)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. src/runtime/callers_test.go

    		if frame.Function != "" {
    			m[frame.Function] = frame.Line
    		}
    		if !more {
    			break
    		}
    	}
    
    	var seen []string
    	for k := range m {
    		seen = append(seen, k)
    	}
    	t.Logf("functions seen: %s", strings.Join(seen, " "))
    
    	var f3Line int
    	if pan {
    		f3Line = 24
    	} else {
    		f3Line = 27
    	}
    	want := []struct {
    		name string
    		line int
    	}{
    		{"f1", 15},
    		{"f2", 19},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 21:36:31 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/yaml/decoder_test.go

    stuff: 1
    
    ---
      `)))
    	s.Split(splitYAMLDocument)
    	if !s.Scan() {
    		t.Fatalf("should have been able to scan")
    	}
    	t.Logf("scan: %s", s.Text())
    	if !s.Scan() {
    		t.Fatalf("should have been able to scan")
    	}
    	t.Logf("scan: %s", s.Text())
    	if s.Scan() {
    		t.Fatalf("scan should have been done")
    	}
    	if s.Err() != nil {
    		t.Fatalf("err should have been nil: %v", s.Err())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  5. src/runtime/hash_test.go

    func TestSmhasherWindowed(t *testing.T) {
    	if race.Enabled {
    		t.Skip("Too long for race mode")
    	}
    	t.Parallel()
    	h := newHashSet()
    	t.Logf("32 bit keys")
    	windowed(t, h, &Int32Key{})
    	t.Logf("64 bit keys")
    	windowed(t, h, &Int64Key{})
    	t.Logf("string keys")
    	windowed(t, h, &BytesKey{make([]byte, 128)})
    }
    func windowed(t *testing.T, h *HashSet, k Key) {
    	if GOARCH == "wasm" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. pkg/auth/authorizer/abac/abac_test.go

    		if !reflect.DeepEqual(tc.ExpectResourceRules, actualResourceRules) {
    			t.Logf("tc: %v -> attr %v", tc, attr)
    			t.Errorf("%d: Expected: \n%#v\n but actual: \n%#v\n",
    				i, tc.ExpectResourceRules, actualResourceRules)
    		}
    		actualNonResourceRules := getNonResourceRules(nonResourceRules)
    		if !reflect.DeepEqual(tc.ExpectNonResourceRules, actualNonResourceRules) {
    			t.Logf("tc: %v -> attr %v", tc, attr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 40K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/basic_test.go

    	noxuNamespacedResourceClient := newNamespacedCustomResourceClient(ns, dynamicClient, noxuDefinition)
    
    	t.Logf("Creating foo")
    	noxuInstanceToCreate := fixtures.NewNoxuInstance(ns, "foo")
    	_, err = noxuNamespacedResourceClient.Create(context.TODO(), noxuInstanceToCreate, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	t.Logf("Patching .num.num2 to 999")
    	patch := []byte(`{"num": {"num2":999}}`)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 11:35:33 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/dwarf_test.go

    			if failures <= 10 {
    				idx := ex.IdxFromOffset(die.Offset)
    				t.Logf("type DIE has DW_AT_go_runtime_type but invalid DW_AT_go_kind:\n")
    				ex.DumpEntry(idx, false, 0)
    			}
    			t.Errorf("bad type DIE at offset %d\n", die.Offset)
    		}
    	}
    	if typesChecked == 0 {
    		t.Fatalf("something went wrong, 0 types checked")
    	} else {
    		t.Logf("%d types checked\n", typesChecked)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/html.go

    func (w *HTMLWriter) Fatalf(msg string, args ...interface{}) {
    	fe := w.Func.Frontend()
    	fe.Fatalf(src.NoXPos, msg, args...)
    }
    
    // Logf calls the (w *HTMLWriter).Func's Logf method passing along a msg and args.
    func (w *HTMLWriter) Logf(msg string, args ...interface{}) {
    	w.Func.Logf(msg, args...)
    }
    
    func (w *HTMLWriter) start() {
    	if w == nil {
    		return
    	}
    	w.WriteString("<html>")
    	w.WriteString(`<head>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  10. internal/grid/grid_test.go

    	errFatal(err)
    	var n int
    	stream.Requests <- []byte(strconv.Itoa(n))
    	for resp := range stream.responses {
    		errFatal(resp.Err)
    		t.Logf("got resp: %+v", string(resp.Msg))
    		if string(resp.Msg) != testPayload+strconv.Itoa(n) {
    			t.Errorf("want %q, got %q", testPayload+strconv.Itoa(n), string(resp.Msg))
    		}
    		if n == 10 {
    			close(stream.Requests)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top