Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 537 for logf (1.66 sec)

  1. src/internal/coverage/cfile/emitdata_test.go

    	}
    	bdir2 := mkdir(t, filepath.Join(dir, "build2"))
    	hargs2 := []string{"-coverpkg=all", "-covermode=" + nonAtomicMode}
    	nonAtomicHarnessPath := buildHarness(t, bdir2, hargs2)
    
    	t.Logf("atomic harness path is %s", atomicHarnessPath)
    	t.Logf("non-atomic harness path is %s", nonAtomicHarnessPath)
    
    	// Sub-tests for each API we want to inspect, plus
    	// extras for error testing.
    	t.Run("emitToDir", func(t *testing.T) {
    		t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. src/net/netip/fuzz_test.go

    	buf2, err := y.(encoding.TextMarshaler).MarshalText()
    	if err != nil {
    		t.Logf("(%v).MarshalText() = %q", x, buf)
    		t.Logf("(%T).UnmarshalText(%q) = %v", y, buf, y)
    		t.Fatalf("failed to MarshalText a second time: %v", err)
    	}
    	if !bytes.Equal(buf, buf2) {
    		t.Logf("(%v).MarshalText() = %q", x, buf)
    		t.Logf("(%T).UnmarshalText(%q) = %v", y, buf, y)
    		t.Logf("(%v).MarshalText() = %q", y, buf2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 20 23:46:23 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  3. src/cmd/link/elf_test.go

    	cc, cflags := getCCAndCCFLAGS(t, env)
    
    	asmObj := filepath.Join(dir, "x.o")
    	t.Logf("%s %v -c -o %s %s", cc, cflags, asmObj, asmFile)
    	if out, err := testenv.Command(t, cc, append(cflags, "-c", "-o", asmObj, asmFile)...).CombinedOutput(); err != nil {
    		t.Logf("%s", out)
    		t.Fatal(err)
    	}
    
    	asm2Obj := filepath.Join(dir, "x2.syso")
    	t.Logf("%s --rename-section .text2=.text1 %s %s", objcopy, asmObj, asm2Obj)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	if runtime.Compiler == "gccgo" {
    		ccArgs = append(ccArgs, "-lgo")
    	}
    	t.Log(ccArgs)
    	out, err = exec.Command(ccArgs[0], ccArgs[1:]...).CombinedOutput()
    	if len(out) > 0 {
    		t.Logf("%s", out)
    	}
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    func runSignalForwardingTest(t *testing.T, arg string) error {
    	t.Logf("%v %s", bin, arg)
    	cmd := exec.Command(bin[0], append(bin[1:], arg)...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/objectmeta_test.go

    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	t.Logf("Checking that ObjectMeta is pruned from unknown fields")
    	obj, err := noxuResourceClient.Get(context.TODO(), "foo", metav1.GetOptions{})
    	if err != nil {
    		t.Fatalf("Unexpected error: %v", err)
    	}
    	objJSON, _ := json.Marshal(obj.Object)
    	t.Logf("Got object: %v", string(objJSON))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 19K bytes
    - Viewed (0)
  6. tests/integration/security/fuzz/fuzz_test.go

    		t.Fatalf("Wait for pod %s failed: %v", name, err)
    	}
    	t.Logf("deploy %s is ready", name)
    }
    
    func waitService(t framework.TestContext, name, ns string) {
    	if _, _, err := kube.WaitUntilServiceEndpointsAreReady(t.Clusters().Default().Kube(), ns, name); err != nil {
    		t.Fatalf("Wait for service %s failed: %v", name, err)
    	}
    	t.Logf("service %s is ready", name)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. cni/test/install_cni.go

    	t.Helper()
    	t.Logf("Pre-populating working dirs")
    	for i, f := range cniDirOrderedFiles {
    		destFilenm := fmt.Sprintf("0%d-%s", i, f)
    		t.Logf("Copying %v into temp config dir %v/%s", f, tempCNIConfDir, destFilenm)
    		cp(wd+cniConfSubDir+f, tempCNIConfDir+"/"+destFilenm, t)
    	}
    	for _, f := range ls(wd+k8sSvcAcctSubDir, t) {
    		t.Logf("Copying %v into temp k8s serviceaccount dir %v", f, tempK8sSvcAcctDir)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. pkg/credentialprovider/plugin/plugin_test.go

    		t.Logf("actual docker config: %v", dockerConfig)
    		t.Logf("expected docker config: %v", expectedDockerConfig)
    		t.Fatal("unexpected docker config")
    	}
    
    	expectedCacheKeys := []string{"global"}
    	cacheKeys := pluginProvider.cache.ListKeys()
    
    	if !reflect.DeepEqual(cacheKeys, expectedCacheKeys) {
    		t.Logf("actual cache keys: %v", cacheKeys)
    		t.Logf("expected cache keys: %v", expectedCacheKeys)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  9. pkg/controller/storageversiongc/gc_controller_test.go

    		t.Error("unexpected storage version object")
    		t.Logf("got: %+v", storageVersion)
    		t.Logf("expected: %+v", expectedServerStorageVersions)
    	}
    
    	if *storageVersion.Status.CommonEncodingVersion != "v2" {
    		t.Errorf("unexpected common encoding version")
    		t.Logf("got: %q", *storageVersion.Status.CommonEncodingVersion)
    		t.Logf("expected: %q", "v2")
    	}
    
    	if len(storageVersion.Status.Conditions) != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 12:19:43 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/defaulting_test.go

    	t.Logf("Add 'c' default to the storage version and wait until GET sees it in both status and spec")
    	addDefault("v1beta2", "c", "C")
    
    	t.Logf("wait until GET sees 'c' in both status and spec")
    	if err := wait.PollImmediate(100*time.Millisecond, wait.ForeverTestTimeout, func() (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
Back to top