Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,140 for spent (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    As a result, any expensive work performed during configuration slows down every invocation.
    Even simple commands like `gradle help` and `gradle tasks`.
    
    The next few subsections introduce techniques that can reduce time spent in the configuration phase.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

            /* metric description */ "status" /* metric label */);
    
    auto* phase2_bridge_compilation_time = tsl::monitoring::Sampler<1>::New(
        {"/tensorflow/core/tf2xla/api/v1/phase2_compilation_time",
         "The wall-clock time spent on executing graphs in milliseconds.",
         "configuration"},
        // Power of 1.5 with bucket count 45 (> 23 hours)
        {tsl::monitoring::Buckets::Exponential(1, 1.5, 45)});
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/common/equality.go

    	// Value being validated
    	Value interface{}
    
    	// Schema used for validation of this value. The schema is also used
    	// to determine how to correlate the old object.
    	Schema Schema
    
    	// Duration spent on ratcheting validation for this object and all of its
    	// children.
    	Duration *time.Duration
    
    	// Scratch space below, may change during validation
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 21:53:21 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. src/runtime/runtime2.go

    	// it transitions to _Grunning.
    	timeToRun timeHistogram
    
    	// idleTime is the total CPU time Ps have "spent" idle.
    	//
    	// Reset on each GC cycle.
    	idleTime atomic.Int64
    
    	// totalMutexWaitTime is the sum of time goroutines have spent in _Gwaiting
    	// with a waitreason of the form waitReasonSync{RW,}Mutex{R,}Lock.
    	totalMutexWaitTime atomic.Int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultWorkerLeaseService.java

                    }
                }
            });
    
            if (projectLockStatistics.isEnabled()) {
                LOGGER.warn("Time spent waiting on project locks: " + projectLockStatistics.getTotalWaitTimeMillis() + "ms");
            }
        }
    
        @Override
        public boolean getAllowsParallelExecution() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    		&compbasemetrics.HistogramOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "request_wait_duration_seconds",
    			Help:           "Length of time a request spent waiting in its queue",
    			Buckets:        requestDurationSecondsBuckets,
    			StabilityLevel: compbasemetrics.BETA,
    		},
    		[]string{priorityLevel, flowSchema, "execute"},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  7. cluster/gce/windows/smoke-test.sh

      fi
    }
    
    # TODO(pjh): this test flakily fails on brand-new clusters, not sure why.
    # % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
    #                                Dload  Upload   Total   Spent    Left  Speed
    # 0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
    # curl: (6) Could not resolve host:
    # command terminated with exit code 6
    function test_linux_pod_to_windows_pod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Lists.java

       * instead.
       *
       * <p><b>Performance note:</b> {@link ArrayList} and {@link java.util.ArrayDeque} consistently
       * outperform {@code LinkedList} except in certain rare and specific situations. Unless you have
       * spent a lot of time benchmarking your specific needs, use one of those instead.
       *
       * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  9. src/internal/fuzz/worker.go

    	CoverageData []byte
    
    	// Duration is the time spent minimizing, not including starting or cleaning up.
    	Duration time.Duration
    
    	// Count is the number of values tested.
    	Count int64
    }
    
    // fuzzArgs contains arguments to workerServer.fuzz. The value to fuzz is
    // passed in shared memory.
    type fuzzArgs struct {
    	// Timeout is the time to spend fuzzing, not including starting or
    	// cleaning up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Lists.java

       * instead.
       *
       * <p><b>Performance note:</b> {@link ArrayList} and {@link java.util.ArrayDeque} consistently
       * outperform {@code LinkedList} except in certain rare and specific situations. Unless you have
       * spent a lot of time benchmarking your specific needs, use one of those instead.
       *
       * <p><b>Note:</b> this method is now unnecessary and should be treated as deprecated. Instead,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
Back to top