Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 293 for vlogf (0.05 sec)

  1. tensorflow/compiler/jit/encapsulate_util.cc

        if (src_outside_compilation && dst_outside_compilation &&
            *src_outside_compilation != *dst_outside_compilation) {
          edges.push_back(EdgeInfo{e->dst_input(), e->dst()->id()});
          VLOG(4) << "Oc -> oc edge: " << e->DebugString();
        }
      }
    
      // Remove the edge from host to outside compilation. Add a placeholder as
      // outside compilation node input.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge_test.go

    					break
    				}
    			}
    		}
    		return out
    	}
    	check := func(x uint64, m uint) {
    		want := fillAlignedSlow(x, m)
    		if got := FillAligned(x, m); got != want {
    			t.Logf("got:  %064b", got)
    			t.Logf("want: %064b", want)
    			t.Errorf("bad fillAligned(%016x, %d)", x, m)
    		}
    	}
    	for m := uint(1); m <= 64; m *= 2 {
    		tests := []uint64{
    			0x0000000000000000,
    			0x00000000ffffffff,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server_bootstrap_test.go

    	t := s.t
    
    	// filter out timeouts as csrSimulator don't support them
    	q := req.URL.Query()
    	q.Del("timeout")
    	q.Del("timeoutSeconds")
    	q.Del("allowWatchBookmarks")
    	req.URL.RawQuery = q.Encode()
    
    	t.Logf("Request %q %q %q", req.Method, req.URL, req.UserAgent())
    
    	if a := s.ExpectUserAgent(); len(a) > 0 && req.UserAgent() != a {
    		t.Errorf("Unexpected user agent: %s", req.UserAgent())
    	}
    
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  4. pkg/volume/downwardapi/downwardapi_test.go

    		},
    	}
    	for _, testCase := range testCases {
    		test := newDownwardAPITest(t, testCase.name, testCase.files, testCase.podLabels, testCase.podAnnotations, testCase.modes)
    		for _, step := range testCase.steps {
    			test.t.Logf("Test case: %q Step: %q", testCase.name, step.getName())
    			step.run(test)
    		}
    		test.tearDown()
    	}
    }
    
    type downwardAPITest struct {
    	t          *testing.T
    	name       string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 04:48:49 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/loong64/obj.go

    			}
    
    			if autosize&4 != 0 {
    				autosize += 4
    			}
    
    			if autosize == 0 && c.cursym.Func().Text.Mark&LEAF == 0 {
    				if c.cursym.Func().Text.From.Sym.NoSplit() {
    					if ctxt.Debugvlog {
    						ctxt.Logf("save suppressed in: %s\n", c.cursym.Name)
    					}
    
    					c.cursym.Func().Text.Mark |= LEAF
    				}
    			}
    
    			p.To.Offset = int64(autosize) - ctxt.Arch.FixedFrameSize
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:22:18 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  6. src/strconv/atof_test.go

    		x, _ := ParseFloat(test.s, 64)
    		switch {
    		default:
    			t.Errorf("number %s badly parsed as %b (expected %b)", test.s, x, test.x)
    		case x == test.x:
    		case math.IsNaN(test.x) && math.IsNaN(x):
    		}
    	}
    	t.Logf("tested %d random numbers", len(atofRandomTests))
    }
    
    var roundTripCases = []struct {
    	f float64
    	s string
    }{
    	// Issue 2917.
    	// This test will break the optimized conversion if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/tests/tfcompile_test.cc

      EXPECT_TRUE(fn.Run());
    
      string hlo_profile_as_string =
          xla::PrintHloProfile(fn.hlo_profile_printer_data(), fn.profile_counters(),
                               /*clock_rate_ghz=*/1.0);
      VLOG(1) << "Original HLO profile string:\n" << hlo_profile_as_string;
    
      // Replace Arg_n with argn when the MLIR bridge is used.
    #if defined(ENABLE_MLIR_BRIDGE_TEST)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 26.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper_test.go

    					statusCode:       testCase.serverStatusCode,
    					connectionHeader: testCase.serverConnectionHeader,
    					upgradeHeader:    testCase.serverUpgradeHeader,
    				},
    			))
    			defer server.Close()
    			t.Logf("Server URL: %v", server.URL)
    
    			serverURL, err := url.Parse(server.URL)
    			if err != nil {
    				t.Fatalf("error creating request: %s", err)
    			}
    			req, err := http.NewRequest("GET", server.URL, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 32.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

      // Find the ConstOps to "unfreeze" into VarHandleOps.
      const std::vector<TF::ConstOp> target_const_ops =
          GetTargetConstOps(size_threshold_in_bytes_.getValue(), module_op);
      if (target_const_ops.empty()) {
        VLOG(1) << "No ConstOps found. UnfreezeConstantsPass is a no-op.";
        return;
      }
    
      func::FuncOp session_init_func = GetOrCreateInitializerFunc(module_op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/versioning/versioning_test.go

    			expectedGVK:    gvk1,
    			expectedObject: decodable1,
    		},
    	}
    
    	for i, test := range testCases {
    		t.Logf("%d", i)
    		s := NewCodec(test.serializer, test.serializer, test.convertor, test.creater, test.typer, test.defaulter, test.encodes, test.decodes, fmt.Sprintf("mock-%d", i))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 17:04:19 UTC 2022
    - 12.5K bytes
    - Viewed (0)
Back to top