Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 694 for vlogf (0.42 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy_test.go

    				t.Logf("Updated data in %s", filename)
    				t.Logf("Verify the diff, commit changes, and rerun the tests")
    			} else {
    				t.Logf("Could not update data in %s: %v", filename, err)
    			}
    		} else {
    			t.Logf("Diff between bootstrap data and fixture data in %s:\n-------------\n%s", filename, cmp.Diff(string(yamlData), string(expectedYAML)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.cc

    namespace mlir {
    namespace TF {
    
    using tensorflow::tfrt_stub::FallbackState;
    using tensorflow::tfrt_stub::OpKernelRunner;
    
    static bool IsOk(const tensorflow::Status& s) {
      if (s.ok()) return true;
      VLOG(2) << s.message();
      return false;
    }
    
    #define RETURN_FAILURE_IF_ERROR(expr) \
      if (!IsOk(expr)) {                  \
        return mlir::failure();           \
      }
    
    bool CanBeFolded(Operation* inst) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    }
    
    // RegisterSet is a bitmap of registers, indexed by Register.num.
    type RegisterSet uint64
    
    // logf prints debug-specific logging to stdout (always stdout) if the
    // current function is tagged by GOSSAFUNC (for ssa output directed
    // either to stdout or html).
    func (s *debugState) logf(msg string, args ...interface{}) {
    	if s.f.PrintOrHtmlSSA {
    		fmt.Printf(msg, args...)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/versioning_test.go

    	t.Logf("Creating foo")
    	noxuInstanceToCreate := fixtures.NewNoxuInstance(ns, "foo")
    	_, err = noxuNamespacedResourceClientV1beta1.Create(context.TODO(), noxuInstanceToCreate, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// update validation via update because the cache priming in CreateCRDUsingRemovedAPI will fail otherwise
    	t.Logf("Updating CRD to validate apiVersion")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 13:10:47 UTC 2021
    - 8.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors_test.go

    		}
    	}
    }
    
    func TestErrorUsefulMessage(t *testing.T) {
    	{
    		s := Invalid(nil, nil, "").Error()
    		t.Logf("message: %v", s)
    		if !strings.Contains(s, "null") {
    			t.Errorf("error message did not contain 'null': %s", s)
    		}
    	}
    
    	s := Invalid(NewPath("foo"), "bar", "deet").Error()
    	t.Logf("message: %v", s)
    	for _, part := range []string{"foo", "bar", "deet", ErrorTypeInvalid.String()} {
    		if !strings.Contains(s, part) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. src/net/timeout_test.go

    				// another error immediately.
    				t.Logf("closing spurious connection from Dial")
    				c.Close()
    
    				if delta <= 1 && d.Timeout <= 1 {
    					t.Fatalf("can't reduce Timeout or Deadline")
    				}
    				if delta > 1 {
    					delta /= 2
    					t.Logf("reducing Deadline delta to %v", delta)
    				}
    				if d.Timeout > 1 {
    					d.Timeout /= 2
    					t.Logf("reducing Timeout to %v", d.Timeout)
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. src/internal/trace/trace_test.go

    		}
    		for stack, pprofSamples := range pprofStacks {
    			t.Logf("CPU profile included %d samples at stack %q not present in execution trace", pprofSamples, stack)
    			if !overflowed {
    				t.Fail()
    			}
    		}
    
    		if t.Failed() {
    			t.Logf("execution trace CPU samples:")
    			for stack, samples := range traceStacks {
    				t.Logf("%d: %q", samples, stack)
    			}
    			t.Logf("CPU profile:\n%s", stderr)
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/recognizer/testing/recognizer_test.go

    	)
    	out, _, err := d.Decode([]byte(`
    kind: A
    apiVersion: v1
    `), nil, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	t.Logf("%#v", out)
    
    	out, _, err = d.Decode([]byte(`
    {
      "kind":"A",
      "apiVersion":"v1"
    }
    `), nil, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	t.Logf("%#v", out)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 07:28:47 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/objdump/objdump_test.go

    	args = append(args, flags...)
    	args = append(args, srcfname)
    	cmd := testenv.Command(t, testenv.GoToolPath(t), args...)
    	// "Bad line" bug #36683 is sensitive to being run in the source directory.
    	cmd.Dir = "testdata"
    	t.Logf("Running %v", cmd.Args)
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("go build %s: %v\n%s", srcfname, err, out)
    	}
    	need := []string{
    		"TEXT main.main(SB)",
    	}
    
    	if printCode {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/internalbootstrap/defaults_test.go

    			defaulted := original.DeepCopyObject().(*flowcontrol.FlowSchema)
    			scheme.Default(defaulted)
    			if apiequality.Semantic.DeepEqual(original, defaulted) {
    				t.Logf("Defaulting makes no change to FlowSchema: %q", original.Name)
    				return
    			}
    			t.Errorf("Expected defaulting to not change FlowSchema: %q, diff: %s", original.Name, cmp.Diff(original, defaulted))
    		})
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top