Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for depD (0.1 sec)

  1. src/cmd/go/internal/load/pkg.go

    	if cfg.Goarch == "arm" {
    		deps = append(deps, "math")
    	}
    	// Using the race detector forces an import of runtime/race.
    	if cfg.BuildRace {
    		deps = append(deps, "runtime/race")
    	}
    	// Using memory sanitizer forces an import of runtime/msan.
    	if cfg.BuildMSan {
    		deps = append(deps, "runtime/msan")
    	}
    	// Using address sanitizer forces an import of runtime/asan.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    	xdep, ok := db.dep[x]
    	if !ok {
    		panic(fmt.Sprintf("unpaired removeDep: no deps for %T", x))
    	}
    
    	l0 := len(xdep)
    	delete(xdep, dep)
    
    	switch len(xdep) {
    	case l0:
    		// Nothing removed. Shouldn't happen.
    		panic(fmt.Sprintf("unpaired removeDep: no %T dep on %T", dep, x))
    	case 0:
    		// No more dependencies.
    		delete(db.dep, x)
    		return x.finalClose
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // and the BuildID field to the build ID of the compiled package.
    //
    // The -find flag causes list to identify the named packages but not
    // resolve their dependencies: the Imports and Deps lists will be empty.
    // With the -find flag, the -deps, -test and -export commands cannot be
    // used.
    //
    // The -test flag causes list to report not only the named packages
    // but also their test binaries (for packages with tests), to convey to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      auto cluster_deps_it = cluster_deps.find(original_oc_name);
      if (cluster_deps_it != cluster_deps.end()) {
        for (const auto& dep : cluster_deps_it->second) {
          xla_token_input_nodes.emplace_back(host_compute_node_name(dep));
        }
      }
      host_compute_builder.Attr(kXlaTokenInputNodesAttrName, xla_token_input_nodes);
    
      // Populate inputs.
      std::vector<DataType> input_dtypes;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        This pass is intended to run after the split_into_island_per_op
        pass. That pass splits up multi-op islands into multiple individual islands
        wrapping a single op without applying any control deps between the new
        islands. So, this pass is needed in order to make preservation of the
        semantic ordering relationships between ops as determined by side effect
        analysis explicit in the IR.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    samples/multicluster/" "istiocoredns.enabled" "the in-proxy DNS capturing (ISTIO_META_DNS_CAPTURE)" }} {{- range $dep, $replace := $deps }} {{- /* Complex logic to turn the string above into a null-safe traversal like ((.Values.global).certificates */}} {{- $res := tpl (print "{{" (repeat (split "." $dep | len) "(") ".Values." (replace "." ")." $dep) ")}}") $}} {{- if not (eq $res "")}} WARNING: {{$dep|quote}} is deprecated; use {{$replace|quote}} instead. {{- end }} {{- end }} {{- $failDeps := dict "tele...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  7. 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)
  8. src/encoding/json/testdata/code.json.gz

    579114},{"name":"unsafe","kids":[{"name":"unsafe.go","kids":[],"cl_weight":1,"touches":1,"min_t":1258414744,"max_t":1258414744,"mean_t":1258414744}],"cl_weight":1,"touches":1,"min_t":1258414744,"max_t":1258414744,"mean_t":1258414744},{"name":"Make.deps","kids":[],"cl_weight":2.0861111111111112,"touches":11,"min_t":1254251724,"max_t":1257974497,"mean_t":1256728540},{"name":"bignum","kids":[{"name":"bignum.go","kids":[],"cl_weight":0.225,"touches":2,"min_t":1257971686,"max_t":1257974497,"mean_t":1...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    	switch rs.Version {
    	case siteResyncMetaVersionV1:
    	default:
    		return rs, fmt.Errorf("unexpected resync meta version: %d", rs.Version)
    	}
    	return rs, nil
    }
    
    // save resync status of peer to resync/depl-id.meta
    func saveSiteResyncMetadata(ctx context.Context, ss SiteResyncStatus, objectAPI ObjectLayer) error {
    	if objectAPI == nil {
    		return errSRObjectLayerNotReady
    	}
    	data := make([]byte, 4, ss.Msgsize()+4)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  10. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    fylkesbibl.no
    folkebibl.no
    museum.no
    idrett.no
    priv.no
    // Norid category second-level domains managed by parties other than Norid : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-d/
    mil.no
    stat.no
    dep.no
    kommune.no
    herad.no
    // Norid geographical second level domains : https://www.norid.no/en/om-domenenavn/regelverk-for-no/vedlegg-b/
    // counties
    aa.no
    ah.no
    bu.no
    fm.no
    hl.no
    hm.no
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (1)
Back to top