Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for bottleneck (0.24 sec)

  1. pkg/envoy/proxy.go

    		// This means access logs will be written once we have ~250 requests, or ever 1s, which ever comes first.
    		// Reducing this to 1s optimizes for UX while retaining performance.
    		// At low QPS access logs are unlikely a bottleneck, and these users will now see logs after 1s rather than 10s.
    		// At high QPS (>250 QPS) we will log the same amount as we will log due to exceeding buffer size, rather
    		// than the flush interval.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/gc.go

    	//
    	// However, in practice, setting c above 4 tends not to help very much.
    	// See the analysis in CL 41192.
    	//
    	// TODO(josharian): attempt to detect whether this particular compilation
    	// is likely to be a bottleneck, e.g. when:
    	//   - it has no successor packages to compile (usually package main)
    	//   - all paths through the build graph pass through it
    	//   - critical path scheduling says it is high priority
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

    using SideEffectsByResourceId = std::map<ResourceId, SideEffects>;
    
    // We use `std::unordered_map` here for pointer stability reasons.
    // Note: If memory usage ever becomes a bottleneck here (not expected) we could
    // use a Trie-like data structure to avoid storing side effects in both parent
    // op and all its child ops (recursively), at the expense of lookup time.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  4. pkg/controller/replicaset/replica_set.go

    		// is we'd need to wait on the result of a create to record the pod's
    		// UID, which would require locking *across* the create, which will turn
    		// into a performance bottleneck. We should generate a UID for the pod
    		// beforehand and store it via ExpectCreations.
    		rsc.expectations.ExpectCreations(logger, rsKey, diff)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    == What is a build scan?
    
    https://scans.gradle.com/[Build scans] are a persistent, shareable record of what happened when running a build.
    Build scans provide insights into your build that you can use to identify and fix performance bottlenecks.
    
    In Gradle 4.3 and above, you can create a build scan using the `--scan` command line option:
    
    [listing.terminal]
    ----
    $ gradle build --scan
    ----
    
    For older Gradle versions, the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins.adoc

    |Nofootnote:2[]
    |===
    
    If you suspect issues with your plugin code, try creating a link:https://scans.gradle.com/[Build Scan] to identify bottlenecks.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 02:15:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. RELEASE.md

        both NumPy and TensorFlow headers.
    
    # Release 2.3.0
    
    ## Major Features and Improvements
    
    *   `tf.data` adds two new mechanisms to solve input pipeline bottlenecks and
        save resources:
    
        *   [snapshot](https://www.tensorflow.org/api_docs/python/tf/data/experimental/snapshot)
        *   [tf.data service](https://www.tensorflow.org/api_docs/python/tf/data/experimental/service).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top