Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 694 for vlogf (0.59 sec)

  1. src/internal/sysinfo/sysinfo_test.go

    // license that can be found in the LICENSE file.
    
    package sysinfo_test
    
    import (
    	. "internal/sysinfo"
    	"testing"
    )
    
    func TestCPUName(t *testing.T) {
    	t.Logf("CPUName: %s", CPUName())
    	t.Logf("osCPUInfoName: %s", XosCPUInfoName())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:42:42 UTC 2024
    - 343 bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/kernels/xla_ops.cc

      if (use_pjrt) {
        VLOG(2) << "Compiling using PJRT";
        Status status = CompileToPjRtLoadedExecutable(
            *ctx, platform_info_, function_, xla_compiler_args,
            DeviceCompileMode::kStrict, has_ref_vars_,
            /*may_alias_resource_update=*/true, &compilation_result, &pjrt_client,
            &pjrt_executable);
        OP_REQUIRES_OK_ASYNC(ctx, status, done);
    
        VLOG(2) << "Compiled using PJRT: " << status;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/buildid_linux.go

    		}
    
    		d, err := s.Data()
    		if err != nil {
    			t.Logf("reading data of note section %d: %v", i, err)
    			continue
    		}
    
    		for len(d) > 0 {
    
    			// ELF standards differ as to the sizes in
    			// note sections.  Both the GNU linker and
    			// gold always generate 32-bit sizes, so that
    			// is what we assume here.
    
    			if len(d) < 12 {
    				t.Logf("note section %d too short (%d < 12)", i, len(d))
    				continue sections
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. pkg/kubelet/status/status_manager_test.go

    	t.Logf("syncBatch should not sync any pods because nothing is changed.")
    	m.testSyncBatch()
    	verifyActions(t, m, []core.Action{})
    
    	t.Logf("Change mirror pod identity.")
    	m.podManager.(mutablePodManager).RemovePod(mirrorPod)
    	mirrorPod.UID = "new-mirror-pod"
    	mirrorPod.Status = v1.PodStatus{}
    	m.podManager.(mutablePodManager).AddPod(mirrorPod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  5. src/os/signal/signal_plan9_test.go

    	Notify(c, syscall.Note("hangup"))
    	defer Stop(c)
    
    	// Send this process a hangup
    	t.Logf("hangup...")
    	postNote(syscall.Getpid(), "hangup")
    	waitSig(t, c, syscall.Note("hangup"))
    
    	// Ask for everything we can get.
    	c1 := make(chan os.Signal, 1)
    	Notify(c1)
    
    	// Send this process an alarm
    	t.Logf("alarm...")
    	postNote(syscall.Getpid(), "alarm")
    	waitSig(t, c1, syscall.Note("alarm"))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 14 17:56:50 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  6. pkg/monitoring/monitortest/test.go

    				for _, lv := range row.Label {
    					k, v := *lv.Name, *lv.Value
    					if want[k] == v {
    						delete(want, k)
    					} else {
    						m.t.Logf("skip metric: want %v=%v, got %v=%v", k, want[k], k, v)
    					}
    				}
    				if len(want) > 0 {
    					// Not a match
    					m.t.Logf("skip metric: missing labels: %+v", want)
    					continue
    				}
    				var v any
    				if row.Counter != nil {
    					cv := *row.Counter.Value
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

            }
          }
        }
    
        NodeDef def;
        def.set_name(launch->name());
        MergeDebugInfo(NodeDebugInfo(launch->def()), &def);
    
        // Target the XLA CPU/GPU backends.
        VLOG(2) << "Replacing with XlaLaunch";
        VLOG(2) << "Device is " << launch->requested_device();
        def.set_op("XlaLaunch");
        def.set_device(launch->requested_device());
        AddNodeAttr("Tconstants", DataTypeVector{}, &def);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    // considered "printf wrappers"; calls to them are subject to the same
    // checking. In this example, logf is a printf wrapper:
    //
    //	func logf(level int, format string, args ...any) {
    //		if enabled(level) {
    //			log.Printf(format, args...)
    //		}
    //	}
    //
    //	logf(3, "invalid request: %v") // logf format reads arg 1, but call has 0 args
    //
    // To enable printf checking on a function that is not found by this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/pruning_test.go

    		t.Fatal(err)
    	}
    	foo, err = fooClient.Create(context.TODO(), foo, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("Unable to create CR: %v", err)
    	}
    	t.Logf("CR created: %#v", foo.UnstructuredContent())
    
    	t.Logf("Comparing with expected, pruned value")
    	x := runtime.DeepCopyJSON(foo.Object)
    	delete(x, "apiVersion")
    	delete(x, "kind")
    	delete(x, "metadata")
    	var expected map[string]interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_device_context.cc

                                                 bool sync_dst_compute) const {
      if (cpu_tensor->NumElements() == 0) {
        VLOG(2) << "CopyCPUTensorToDevice empty tensor";
        done(absl::OkStatus());
        return;
      }
    
      VLOG(2) << "CopyCPUTensorToDevice " << this << " "
              << reinterpret_cast<const void*>(cpu_tensor->tensor_data().data())
              << " "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top