Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 854 for spent (0.08 sec)

  1. ReadMe.md

     * [TeamCity CI build](https://teamcity.jetbrains.com/project.html?tab=projectOverview&projectId=Kotlin)
    
    ## Kotlin Multiplatform capabilities
    
    Support for multiplatform programming is one of Kotlin’s key benefits. It reduces time spent writing and maintaining the same code for [different platforms](https://kotlinlang.org/docs/reference/mpp-supported-platforms.html) while retaining the flexibility and benefits of native programming.
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/runtime/pprof/pprof.go

    //
    // # Block profile
    //
    // The block profile tracks time spent blocked on synchronization primitives,
    // such as [sync.Mutex], [sync.RWMutex], [sync.WaitGroup], [sync.Cond], and
    // channel send/receive/select.
    //
    // Stack traces correspond to the location that blocked (for example,
    // [sync.Mutex.Lock]).
    //
    // Sample values correspond to cumulative time spent blocked at that stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/RateLimiter.java

       * granted. Tells the amount of time slept, if any.
       *
       * <p>This method is equivalent to {@code acquire(1)}.
       *
       * @return time spent sleeping to enforce rate, in seconds; 0.0 if not rate-limited
       * @since 16.0 (present in 13.0 with {@code void} return type})
       */
      @CanIgnoreReturnValue
      public double acquire() {
        return acquire(1);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    				Detail: fmt.Sprintf("unexpected internal error compiling expression"),
    			}
    			continue
    		}
    		t1 := time.Now()
    		evalResult, evalDetails, err := compilationResult.Program.ContextEval(ctx, va)
    		// budget may be spent due to lazy evaluation of composited variables
    		if compositionCtx != nil {
    			compositionCost := compositionCtx.GetAndResetCost()
    			if compositionCost > remainingBudget {
    				return nil, -1, &cel.Error{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top