Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 293 for vlogf (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

        });
        if (replicate)
          reshard_was_inserted |= HandleReplicateOp(while_op, replicate);
      });
      if (reshard_was_inserted)
        VLOG(1) << "tf-tpu-variable-runtime-reformatting inserted at least one "
                   "TPUReshardVariables";
      else
        VLOG(1) << "tf-tpu-variable-runtime-reformatting inserted no "
                   "TPUReshardVariables";
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. 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...) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit_test.go

    	time.Sleep(100 * time.Millisecond)
    
    	t.Log("Waiting for event in the channel")
    	ev1, err := sink.Pop(time.Second)
    	if err != nil {
    		t.Fatal("Timeout waiting for events")
    	}
    	t.Logf("Seen event with status %v", ev1.ResponseStatus)
    
    	if !reflect.DeepEqual(ev, ev1) {
    		t.Fatalf("ev1 and ev must be equal")
    	}
    
    	<-done
    	t.Log("Seen the go routine finished")
    
    	// write again
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/net/http/pattern_test.go

    			t.Errorf("%s does not match itself; got %s", pat2, g)
    		}
    		got := pat1.comparePaths(pat2)
    		if got != test.want {
    			t.Errorf("%s vs %s: got %s, want %s", test.p1, test.p2, got, test.want)
    			t.Logf("pat1: %+v\n", pat1.segments)
    			t.Logf("pat2: %+v\n", pat2.segments)
    		}
    		want2 := inverseRelationship(test.want)
    		got2 := pat2.comparePaths(pat1)
    		if got2 != want2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. src/runtime/traceback_test.go

    				t.Errorf("got %d more frames than expected", len(tb.frames))
    			}
    			if t.Failed() {
    				t.Logf("traceback diverged at frame %d", i)
    				off := len(stack)
    				if len(tb.frames) > 0 {
    					off = tb.frames[0].off
    				}
    				t.Logf("traceback before error:\n%s", stack[:off])
    				t.Logf("traceback after error:\n%s", stack[off:])
    			}
    		})
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
Back to top