Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 78 of 78 for Dep (0.06 sec)

  1. src/database/sql/sql_test.go

    func (db *DB) dumpDeps(t *testing.T) {
    	for fc := range db.dep {
    		db.dumpDep(t, 0, fc, map[finalCloser]bool{})
    	}
    }
    
    func (db *DB) dumpDep(t *testing.T, depth int, dep finalCloser, seen map[finalCloser]bool) {
    	seen[dep] = true
    	indent := strings.Repeat("  ", depth)
    	ds := db.dep[dep]
    	for k := range ds {
    		t.Logf("%s%T (%p) waiting for -> %T (%p)", indent, dep, dep, k, k)
    		if fc, ok := k.(finalCloser); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      AppendFunctionArguments(while_body, num_chains, chaining_data_type);
      AppendFunctionResults(while_body, num_chains, chaining_data_type);
    
      // Insert identity ops with control dep
      ChainResourceOps(while_body, chain_resource_to_ops_map,
                       resource_equivalence_classes, ops_connected_to_fetch,
                       num_old_outputs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. docs/vi/docs/index.md

    ---
    
    "_Nếu ai đó đang tìm cách xây dựng sản phẩm API bằng Python, tôi sẽ đề xuất **FastAPI**. Nó **được thiết kế đẹp đẽ**, **sử dụng đơn giản** và **có khả năng mở rộng cao**, nó đã trở thành một **thành phần quan trọng** trong chiến lược phát triển API của chúng tôi và đang thúc đẩy nhiều dịch vụ và mảng tự động hóa như Kỹ sư TAC ảo của chúng tôi._"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

            handler -->> client: HTTP error response
            dep -->> dep: Raise other exception
        end
        dep ->> operation: Run dependency, e.g. DB session
        opt raise
            operation -->> dep: Raise HTTPException
            dep -->> handler: Auto forward exception
            handler -->> client: HTTP error response
            operation -->> dep: Raise other exception
            dep -->> handler: Auto forward exception
        end
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_test.cc

      TF_Operation* feed4 =
          TF_GraphOperationByName(graph, "imported4/imported2/feed");
    
      // Check that imported `imported3/scalar` has remapped control dep from
      // original graph and imported control dep
      num_control_inputs = TF_OperationGetControlInputs(
          scalar4, control_inputs, TF_OperationNumControlInputs(scalar4));
      ASSERT_EQ(2, num_control_inputs);
      EXPECT_EQ(feed, control_inputs[0]);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    		if p.Name == "main" && !p.Internal.ForceLibrary {
    			ldDeps, err := LinkerDeps(p)
    			if err != nil {
    				setError(err)
    				return
    			}
    			for _, dep := range ldDeps {
    				addImport(dep, false)
    			}
    		}
    	}
    
    	// Check for case-insensitive collisions of import paths.
    	// If modifying, consider changing checkPathCollisions() in
    	// src/cmd/go/internal/modcmd/vendor.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    			// consumed by the various "run test" actions. Below we
    			// add a dependence edge between the build action and the
    			// "write meta files" pseudo-action, and then another dep
    			// from writeCoverMetaAct to the run action. See the
    			// comment in runTest() at the definition of
    			// writeCoverMetaAct for more details.
    			run.Deps = append(run.Deps, writeCoverMetaAct)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal_test.go

    		reportedCPURequests:     []resource.Quantity{resource.MustParse("1.0"), resource.MustParse("1.0"), resource.MustParse("1.0")},
    		useMetricsAPI:           true,
    		resource: &fakeResource{
    			name:       "test-dep",
    			apiVersion: "apps/v1",
    			kind:       "Deployment",
    		},
    		expectedReportedReconciliationActionLabel: monitor.ActionLabelScaleUp,
    		expectedReportedReconciliationErrorLabel:  monitor.ErrorLabelNone,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top