Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 293 for vlogf (0.05 sec)

  1. pkg/proxy/iptables/number_generated_rules_test.go

    			makeServiceMap(fp, svcs...)
    			populateEndpointSlices(fp, eps...)
    
    			now := time.Now()
    			fp.syncProxyRules()
    			t.Logf("time to sync rule: %v", time.Since(now))
    			t.Logf("iptables data size: %d bytes", fp.iptablesData.Len())
    
    			if fp.filterRules.Lines() != test.expectedFilterRules {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. pkg/test/framework/testcontext.go

    	c.Helper()
    	c.T.Fatalf(format, args...)
    }
    
    func (c *testContext) Log(args ...any) {
    	c.Helper()
    	c.T.Log(args...)
    }
    
    func (c *testContext) Logf(format string, args ...any) {
    	c.Helper()
    	c.T.Logf(format, args...)
    }
    
    func (c *testContext) Name() string {
    	c.Helper()
    	return c.T.Name()
    }
    
    func (c *testContext) Skip(args ...any) {
    	c.Helper()
    	c.T.Skip(args...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testcshared/cshared_test.go

    		// stdin/stdout/stderr, so we just need to make sure
    		// that cmd.ExtraFiles[27] exists and is nil.)
    		cmd.ExtraFiles = make([]*os.File, 28)
    	}
    
    	t.Logf("run: %v", args)
    	out, err := cmd.Output()
    	if stderr.Len() > 0 {
    		t.Logf("stderr:\n%s", stderr)
    	}
    	if err != nil {
    		t.Fatalf("command failed: %v\n%v\n%s\n", args, err, out)
    	}
    	return string(out)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testerrors/ptr_test.go

    	}
    
    	buf, err := runcmd(cgocheck)
    	if pt.fail {
    		if err == nil {
    			t.Logf("%s", buf)
    			t.Fatalf("did not fail as expected")
    		} else if !bytes.Contains(buf, []byte("Go pointer")) {
    			t.Logf("%s", buf)
    			t.Fatalf("did not print expected error (failed with %v)", err)
    		}
    	} else {
    		if err != nil {
    			t.Logf("%s", buf)
    			t.Fatalf("failed unexpectedly: %v", err)
    		}
    
    		if !pt.expensive {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  5. src/compress/flate/deflate_test.go

    func (b *syncBuffer) Close() error {
    	b.closed = true
    	b.signal()
    	return nil
    }
    
    func testSync(t *testing.T, level int, input []byte, name string) {
    	if len(input) == 0 {
    		return
    	}
    
    	t.Logf("--testSync %d, %d, %s", level, len(input), name)
    	buf := newSyncBuffer()
    	buf1 := new(bytes.Buffer)
    	buf.WriteMode()
    	w, err := NewWriter(io.MultiWriter(buf, buf1), level)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  6. pkg/api/testing/serialization_test.go

    		),
    	)
    
    	t.Logf("rs.v1.apps -> rc._internal")
    	if err := runtime.DecodeInto(decoder, data, rc); err != nil {
    		t.Fatalf("unexpected decoding error: %v", err)
    	}
    
    	t.Logf("rc._internal -> rc.v1")
    	data, err = runtime.Encode(defaultCodec, rc)
    	if err != nil {
    		t.Fatalf("unexpected encoding error: %v", err)
    	}
    
    	t.Logf("rc.v1 -> rs._internal.apps")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  7. src/os/os_unix_test.go

    	if err != nil {
    		t.Fatalf("getgroups: %s", err)
    	}
    	t.Log("groups: ", groups)
    	for _, g := range groups {
    		if err = Chown(f.Name(), -1, g); err != nil {
    			if testenv.SyscallIsNotSupported(err) {
    				t.Logf("chown %s -1 %d: %s (error ignored)", f.Name(), g, err)
    				// Since the Chown call failed, the file should be unmodified.
    				checkUidGid(t, f.Name(), int(sys.Uid), gid)
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:32:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

    SmallVector<Value> CopyOpsToMainFunction(func::FuncOp src_func_op,
                                             func::FuncOp main_func_op) {
      GraphOp src_graph_op = GetGraphOpFromFuncOp(src_func_op);
      if (!src_graph_op) {
        VLOG(1) << "Function " << src_func_op.getName().str()
                << " does not have a tf_executor::GraphOp. No ops are copied to "
                   "the main function.";
        return {};
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/main.go

    	}
    
    	if ctxt.Debugvlog != 0 {
    		onOff := func(b bool) string {
    			if b {
    				return "on"
    			}
    			return "off"
    		}
    		ctxt.Logf("build mode: %s, symbol table: %s, DWARF: %s\n", ctxt.BuildMode, onOff(!*FlagS), onOff(dwarfEnabled(ctxt)))
    		ctxt.Logf("HEADER = -H%d -T0x%x -R0x%x\n", ctxt.HeadType, uint64(*FlagTextAddr), uint32(*FlagRound))
    	}
    
    	zerofp := goobj.FingerprintType{}
    	switch ctxt.BuildMode {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. pkg/controller/nodeipam/ipam/range_allocator_test.go

    		if err != nil {
    			t.Logf("%v: failed to create CIDRRangeAllocator with error %v", tc.description, err)
    		}
    		rangeAllocator, ok := allocator.(*rangeAllocator)
    		if !ok {
    			t.Logf("%v: found non-default implementation of CIDRAllocator, skipping white-box test...", tc.description)
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top