Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for _logf (0.05 sec)

  1. src/net/http/client_test.go

    	mu  sync.Mutex
    	log bytes.Buffer
    }
    
    func (j *RecordingJar) SetCookies(u *url.URL, cookies []*Cookie) {
    	j.logf("SetCookie(%q, %v)\n", u, cookies)
    }
    
    func (j *RecordingJar) Cookies(u *url.URL) []*Cookie {
    	j.logf("Cookies(%q)\n", u)
    	return nil
    }
    
    func (j *RecordingJar) logf(format string, args ...any) {
    	j.mu.Lock()
    	defer j.mu.Unlock()
    	fmt.Fprintf(&j.log, format, args...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. pkg/apis/flowcontrol/validation/validation_test.go

    		},
    	}}
    	for _, testCase := range testCases {
    		t.Run(testCase.name, func(t *testing.T) {
    			errs := ValidateFlowSchema(testCase.flowSchema)
    			if !assert.ElementsMatch(t, testCase.expectedErrors, errs) {
    				t.Logf("mismatch: %v", cmp.Diff(testCase.expectedErrors, errs))
    			}
    		})
    	}
    }
    
    func TestPriorityLevelConfigurationValidation(t *testing.T) {
    	badSpec := flowcontrol.PriorityLevelConfigurationSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    	}
    }
    
    // tLogKey is a context WithValue key for test debugging contexts containing
    // a t.Logf func. See export_test.go's Request.WithT method.
    type tLogKey struct{}
    
    func (tr *transportRequest) logf(format string, args ...any) {
    	if logf, ok := tr.Request.Context().Value(tLogKey{}).(func(string, ...any)); ok {
    		logf(time.Now().Format(time.RFC3339Nano)+": "+format, args...)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  4. src/testing/testing.go

    // depend on the value of the -test.v flag.
    func (c *common) Logf(format string, args ...any) {
    	c.checkFuzzFn("Logf")
    	c.log(fmt.Sprintf(format, args...))
    }
    
    // Error is equivalent to Log followed by Fail.
    func (c *common) Error(args ...any) {
    	c.checkFuzzFn("Error")
    	c.log(fmt.Sprintln(args...))
    	c.Fail()
    }
    
    // Errorf is equivalent to Logf followed by Fail.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	tg.run("build", "-o", obj, src)
    
    	out, err = testenv.Command(t, "upx", obj).CombinedOutput()
    	if err != nil {
    		t.Logf("executing upx\n%s\n", out)
    		t.Fatalf("upx failed with %v", err)
    	}
    
    	out, err = testenv.Command(t, obj).CombinedOutput()
    	if err != nil {
    		t.Logf("%s", out)
    		t.Fatalf("running compressed go binary failed with error %s", err)
    	}
    	if string(out) != "hello upx" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/defaults_test.go

    		if !reflect.DeepEqual(expectedDefaults, defaults) {
    			t.Errorf("Defaults for PodTemplateSpec changed. This can cause spurious rollouts of workloads on API server upgrade.")
    			t.Logf(cmp.Diff(expectedDefaults, defaults))
    		}
    	})
    	t.Run("hostnet PodTemplateSpec with ports", func(t *testing.T) {
    		rc := &v1.ReplicationController{
    			Spec: v1.ReplicationControllerSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. src/os/os_test.go

    			// whenever mtime is set.
    		case "netbsd":
    			mounts, _ := ReadFile("/proc/mounts")
    			if strings.Contains(string(mounts), "noatime") {
    				t.Logf("AccessTime didn't go backwards, but see a filesystem mounted noatime; ignoring. Issue 19293.")
    			} else {
    				t.Logf("AccessTime didn't go backwards; was=%v, after=%v (Ignoring on NetBSD, assuming noatime, Issue 19293)", at, pat)
    			}
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_mounter_test.go

    			specVolumeName: "test.spec.1",
    			path:           filepath.Join(tmpDir, fmt.Sprintf("pods/%s/volumes/kubernetes.io~csi/%s/%s", testPodUID, "test.spec.1", "/mount")),
    		},
    	}
    	for _, tc := range testCases {
    		t.Logf("test case: %s", tc.name)
    		registerFakePlugin(testDriver, "endpoint", []string{"1.0.0"}, t)
    		pv := makeTestPV(tc.specVolumeName, 10, testDriver, testVol)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  9. src/net/http/fs_test.go

    			t.Fatalf("ReadAll %s: %v", suffix, err)
    		}
    		res.Body.Close()
    		return string(b)
    	}
    	if s := get("/bar/"); !strings.Contains(s, ">foo.txt<") {
    		t.Logf("expected a directory listing with foo.txt, got %q", s)
    	}
    	if s := get("/bar/foo.txt"); s != "Hello world" {
    		t.Logf("expected %q, got %q", "Hello world", s)
    	}
    }
    
    func TestDirJoin(t *testing.T) {
    	if runtime.GOOS == "windows" {
    		t.Skip("skipping test on windows")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    	if err != nil {
    		t.Fatalf("failed decoding of: %v\n\n%s", err, fixtureItemsAndType)
    	}
    	crd := obj.(*apiextensionsv1.CustomResourceDefinition)
    
    	// create CRDs
    	t.Logf("Creating CRD %s", crd.Name)
    	if _, err = fixtures.CreateNewV1CustomResourceDefinition(crd, apiExtensionClient, client); err != nil {
    		t.Fatalf("unexpected create error: %v", err)
    	}
    
    	// create CR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
Back to top