Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 537 for logf (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. internal/grid/grid_test.go

    		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)
    			continue
    		}
    		n++
    		t.Log("sending new client request")
    		stream.Requests <- []byte(strconv.Itoa(n))
    	}
    	t.Log("EOF. 10 Roundtrips:", time.Since(start))
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/block.go

    			p.Likely == BranchUnlikely && p.Succs[1].b == b) {
    			continue
    		}
    		return false
    	}
    	return true
    }
    
    func (b *Block) Logf(msg string, args ...interface{})   { b.Func.Logf(msg, args...) }
    func (b *Block) Log() bool                              { return b.Func.Log() }
    func (b *Block) Fatalf(msg string, args ...interface{}) { b.Func.Fatalf(msg, args...) }
    
    type BranchPrediction int8
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/net/http/request_test.go

    	req.Header = nil
    	back.Header = nil
    	if !reflect.DeepEqual(req, back) {
    		t.Errorf("Original request doesn't match Request read back.")
    		t.Logf("Original: %#v", req)
    		t.Logf("Original.URL: %#v", req.URL)
    		t.Logf("Wrote: %s", out.String())
    		t.Logf("Read back (doesn't match Original): %#v", back)
    	}
    }
    
    type responseWriterJustWriter struct {
    	io.Writer
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/func.go

    func (f *Func) Logf(msg string, args ...interface{})                { f.fe.Logf(msg, args...) }
    func (f *Func) Log() bool                                           { return f.fe.Log() }
    
    func (f *Func) Fatalf(msg string, args ...interface{}) {
    	stats := "crashed"
    	if f.Log() {
    		f.Logf("  pass %s end %s\n", f.pass.name, stats)
    		printFunc(f)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/dwarf.go

    func (c dwCtxt) RecordChildDieOffsets(s dwarf.Sym, vars []*dwarf.Var, offsets []int32) {
    	ls := s.(*LSym)
    	c.Link.DwFixups.RegisterChildDIEOffsets(ls, vars, offsets)
    }
    
    func (c dwCtxt) Logf(format string, args ...interface{}) {
    	c.Link.Logf(format, args...)
    }
    
    func isDwarf64(ctxt *Link) bool {
    	return ctxt.Headtype == objabi.Haix
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  9. pkg/volume/csi/nodeinfomanager/nodeinfomanager_test.go

    					Annotations: map[string]string{v1.MigratedPluginsAnnotationKey: "foo,test", "other": "annotation"},
    				},
    			},
    			expectModified: true,
    		},
    	}
    
    	for _, tc := range testcases {
    		t.Logf("test case: %s", tc.name)
    
    		modified := setMigrationAnnotation(tc.migratedPlugins, tc.existingNode)
    		if modified != tc.expectModified {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 17 02:02:59 UTC 2022
    - 34.3K bytes
    - Viewed (0)
  10. src/runtime/stack_test.go

    		// might not reuse them on the next batch.
    		time.Sleep(10 * time.Millisecond)
    	}
    	s1 := new(MemStats)
    	ReadMemStats(s1)
    	consumed := int64(s1.StackSys - s0.StackSys)
    	t.Logf("Consumed %vMB for stack mem", consumed>>20)
    	estimate := int64(8 * BatchSize * ArraySize * RecursionDepth) // 8 is to reduce flakiness.
    	if consumed > estimate {
    		t.Fatalf("Stack mem: want %v, got %v", estimate, consumed)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
Back to top