Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for resultCh (0.26 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    		number = append(number, '"')
    		return result[:1+len(number)], nil
    	}
    	// if CanonicalizeBytes needed more space than our slice provided, we may need to allocate again so use
    	// append
    	result = result[:1]
    	result = append(result, number...)
    	result = append(result, suffix...)
    	result = append(result, '"')
    	return result, nil
    }
    
    func (q Quantity) MarshalCBOR() ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/CacheStats.java

       * requests which resulted in either successful or failed loading attempts, and requests which
       * waited for other threads to finish loading. It is thus the case that {@code missCount >=
       * loadSuccessCount + loadExceptionCount}. Multiple concurrent misses for the same key will result
       * in a single load operation.
       */
      public double missRate() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/CacheStats.java

       * requests which resulted in either successful or failed loading attempts, and requests which
       * waited for other threads to finish loading. It is thus the case that {@code missCount >=
       * loadSuccessCount + loadExceptionCount}. Multiple concurrent misses for the same key will result
       * in a single load operation.
       */
      public double missRate() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    May be followed by a `because` text.
    
    | By conflict resolution : between versions <version>
    | The dependency appeared multiple times, with different version requests.
    This resulted in <<dependency_resolution#sec:version-conflict, conflict resolution>> to select the most appropriate version.
    
    | By constraint
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    	Requires: []*analysis.Analyzer{inspect.Analyzer},
    	Run:      run,
    }
    
    func run(pass *analysis.Pass) (interface{}, error) {
    	inspect := pass.ResultOf[inspect.Analyzer].(*inspector.Inspector)
    
    	nodeFilter := []ast.Node{
    		(*ast.File)(nil),
    		(*ast.RangeStmt)(nil),
    		(*ast.ForStmt)(nil),
    	}
    	inspect.Nodes(nodeFilter, func(n ast.Node, push bool) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation.go

    // to the structural schema.
    // Each CompilationResult may contain:
    //   - non-nil Program, nil Error: The program was compiled successfully
    //   - nil Program, non-nil Error: Compilation resulted in an error
    //   - nil Program, nil Error: The provided rule was empty so compilation was not attempted
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. cmd/global-heal.go

    			default:
    				return false
    			}
    		}
    
    		send := func(result healEntryResult) bool {
    			select {
    			case <-ctx.Done():
    				if !contextCanceled(ctx) {
    					healingLogIf(ctx, ctx.Err())
    				}
    				return false
    			case results <- result:
    				return true
    			}
    		}
    
    		// Note: updates from healEntry to tracker must be sent on results channel.
    		healEntry := func(bucket string, entry metaCacheEntry) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/const.go

    	// Unfortunately some float values cannot be
    	// reasonably formatted for inclusion in an error
    	// message (example: 1 + 1e-100), so first we try to
    	// format the float; if the truncation resulted in
    	// something that looks like an integer we omit the
    	// value from the error message.
    	// (See issue #11371).
    	f := ir.BigFloat(v)
    	if f.MantExp(nil) > 2*ir.ConstPrec {
    		base.Errorf("integer too large")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

      absl::flat_hash_set<Node*> control_ret_nodes;
    
      timings.Reset({kTfMlirCategory, "convert_mlir_to_graph"});
      // Some or all passes are enabled. Convert MLIR module and return back
      // resulted graph.
      Status status = ConvertMlirToGraph(*module_ref, export_config, graph,
                                         flib_def, &control_ret_nodes);
      if (!status.ok()) {
        errors::AppendToMessage(&status,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    		&compbasemetrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "request_dispatch_no_accommodation_total",
    			Help:           "Number of times a dispatch attempt resulted in a non accommodation due to lack of available seats",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{priorityLevel, flowSchema},
    	)
    	apiserverNominalConcurrencyLimits = compbasemetrics.NewGaugeVec(
    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