Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 602 for _logf (0.04 sec)

  1. pkg/api/v1/persistentvolume/util_test.go

    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPVSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/index_test.go

    			t.Fatal(err)
    		}
    
    		if !reflect.DeepEqual(bp, bp1) {
    			t.Errorf("mismatch")
    			t.Logf("index:\n%s", hex.Dump(data))
    
    			js, err := json.MarshalIndent(bp, "", "\t")
    			if err != nil {
    				t.Fatal(err)
    			}
    			js1, err := json.MarshalIndent(bp1, "", "\t")
    			if err != nil {
    				t.Fatal(err)
    			}
    			t.Logf("diff:\n%s", diff.Diff("index", js, "correct", js1))
    			t.FailNow()
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 28 23:35:08 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/fmahash_test.go

    	cmd.Env = append(cmd.Env, "GOCOMPILEDEBUG=fmahash=1/0", "GOOS=linux", "GOARCH=arm64", "HOME="+tmpdir)
    	t.Logf("%v", cmd)
    	t.Logf("%v", cmd.Env)
    	b, e := cmd.CombinedOutput()
    	if e != nil {
    		t.Errorf("build failed: %v\n%s", e, b)
    	}
    	s := string(b) // Looking for "GOFMAHASH triggered main.main:24"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 21:57:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top