Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 293 for vlogf (0.07 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/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)
  3. 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)
  4. src/cmd/cgo/internal/testcarchive/carchive_test.go

    		t.Logf("%s", out)
    		t.Fatal(err)
    	}
    	if !testWork {
    		defer os.Remove(exe)
    	}
    
    	binArgs := append(cmdToRun(exe), "arg1", "arg2")
    	cmd = exec.Command(binArgs[0], binArgs[1:]...)
    	if runtime.Compiler == "gccgo" {
    		cmd.Env = append(cmd.Environ(), "GCCGO=1")
    	}
    	if out, err := cmd.CombinedOutput(); err != nil {
    		t.Logf("%s", out)
    		t.Fatal(err)
    	}
    
    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. 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)
  6. 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)
  7. 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)
  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. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

          if (pass_status.ok()) {
            VLOG(2) << "Finished MLIR graph optimization pass: "
                    << StringRefToView(name);
            VLOG(2) << "Graph #nodes " << (*graph)->num_nodes() << " #edges "
                    << (*graph)->num_edges();
            is_module_updated = true;
          }
        } else if (pass_state == MlirOptimizationPassState::FallbackEnabled) {
          VLOG(2) << "Run MLIR graph optimization pass with fallback: "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top