Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 293 for vlogf (0.26 sec)

  1. src/os/exec/exec_test.go

    	// process to exit.
    	t.Run("Wait", func(t *testing.T) {
    		t.Parallel()
    		cmd := startHang(t, context.Background(), 1*time.Millisecond, os.Kill, 0)
    		err := cmd.Wait()
    		t.Logf("stderr:\n%s", cmd.Stderr)
    		t.Logf("[%d] %v", cmd.Process.Pid, err)
    
    		if err != nil {
    			t.Errorf("Wait: %v; want <nil>", err)
    		}
    		if ps := cmd.ProcessState; !ps.Exited() {
    			t.Errorf("cmd did not exit: %v", ps)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/resource_operation_safety_analysis.cc

        if (op_kind) {
          for (ResourceOp incoming_op : *resource_op_set) {
            if (IsEdgeSafe(incoming_op.second, *op_kind)) {
              continue;
            }
    
            if (vlog) {
              VLOG(2) << "Unsafe edge: "
                      << NodeToString(*g.FindNodeId(incoming_op.first),
                                      incoming_op.second)
                      << " -> " << NodeToString(*n, *op_kind);
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/elf_test.go

    						// test failure.
    						t.Logf("test %s: %q section not in readonly segment",
    							wsro.Name, test.name)
    						t.Logf("section %s location: st=0x%x en=0x%x\n",
    							wsro.Name, wsro.Addr, wsro.Addr+wsro.FileSize)
    						t.Logf("sec %s found in these segments: ", wsro.Name)
    						for _, p := range foundSegs {
    							t.Logf(" %q", p.Type)
    						}
    						t.Logf("\nall segments: \n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. cmd/kube-apiserver/app/testing/testserver.go

    	}
    
    	if errs := completedOptions.Validate(); len(errs) != 0 {
    		return result, fmt.Errorf("failed to validate ServerRunOptions: %v", utilerrors.NewAggregate(errs))
    	}
    
    	t.Logf("runtime-config=%v", completedOptions.APIEnablement.RuntimeConfig)
    	t.Logf("Starting kube-apiserver on port %d...", s.SecureServing.BindPort)
    
    	config, err := app.NewConfig(completedOptions)
    	if err != nil {
    		return result, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/table_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	t.Logf("table crd created: %#v", crd)
    
    	crClient := newNamespacedCustomResourceVersionedClient("", dynamicClient, crd, "v1")
    	foo, err := crClient.Create(context.TODO(), newTableInstance("foo"), metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("unable to create noxu instance: %v", err)
    	}
    	t.Logf("foo created: %#v", foo.UnstructuredContent())
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 18.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/xla_cluster_util.cc

        VLOG(4) << "GetGlobalJitLevelForGraph returning "
                << xla_global_jit_level.single_gpu;
        return xla_global_jit_level.single_gpu;
      }
      OptimizerOptions::GlobalJitLevel result =
          IsSingleGpuGraph(**options.graph) ? xla_global_jit_level.single_gpu
                                            : xla_global_jit_level.general;
      VLOG(4) << "GetGlobalJitLevelForGraph returning " << result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_launch_util.cc

      Allocator* allocator = ctx->device()->GetAllocator({});
    
      // Computation output should always be a tuple.
      VLOG(2) << "Result tuple shape: " << output.on_host_shape().DebugString();
      VLOG(2) << "Result tuple shape (on device): "
              << output.on_device_shape().DebugString();
      CHECK_EQ(ctx->num_outputs(), compilation_result->outputs.size());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go

    			continue
    		}
    		if externalGVK.GroupKind() != internalGVK.GroupKind() {
    			continue
    		}
    		if nonRoundTrippableTypes[externalGVK] {
    			t.Logf("\tskipping  %v %v", externalGVK, externalGoType)
    			continue
    		}
    		t.Logf("\tround tripping to %v %v", externalGVK, externalGoType)
    
    		roundTrip(t, scheme, apitesting.TestCodec(codecFactory, externalGVK.GroupVersion()), object)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  9. src/net/lookup_test.go

    		// (See https://go.dev/issue/22724.) Explicitly check for
    		// cancellation now, just in case fn itself doesn't notice it.
    		if err := ctx.Err(); err != nil {
    			t.Logf("testHookLookupIP canceled")
    			return nil, err
    		}
    		t.Logf("testHookLookupIP performing lookup")
    		return fn(ctx, network, host)
    	}
    
    	_, err := DefaultResolver.LookupIPAddr(lookupCtx, "google.com")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  10. pkg/util/goroutinemap/goroutinemap_test.go

    	// Act
    	err2 := retryWithExponentialBackOff(
    		time.Duration(initialOperationWaitTimeShort),
    		func() (bool, error) {
    			err := grm.Run(operationName, operation2)
    			if err != nil {
    				t.Logf("Warning: NewGoRoutine failed with %v. Will retry.", err)
    				return false, nil
    			}
    			return true, nil
    		},
    	)
    
    	// Assert
    	if err2 != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 14.9K bytes
    - Viewed (0)
Back to top