Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 72 for resultCh (0.26 sec)

  1. cmd/kubeadm/app/util/patches/patches.go

    	pathLock.Lock()
    	pathCache[path] = pm
    	pathLock.Unlock()
    
    	return pm, nil
    }
    
    // ApplyPatchesToTarget takes a patch target and patches its "Data" using the patches
    // stored in the patch manager. The resulted "Data" is always converted to JSON.
    func (pm *PatchManager) ApplyPatchesToTarget(patchTarget *PatchTarget) error {
    	var err error
    	var patchedData []byte
    
    	var found bool
    	for _, pt := range pm.knownTargets {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.cc

        }
    
        for (int i = 0; i < op->getNumResults(); ++i) {
          Value result = op->getResult(i);
          // If the result has been quantized, it should only be used by a
          // `quantfork::QuantizeCastOp`. For this case, we uses the quantized
          // result to create the state and mark it immutable.
          if (result.hasOneUse()) {
            Operation* user = result.use_begin().getUser();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 38.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

    enum TranslationStatus { kTrSuccess, kTrFailure };
    
    static int PrintFunctionResultMapping(const std::string &result,
                                          ModuleOp module) {
      // Build model from the resultant string to extract the return values from
      // their source of truth.
      auto model =
          tflite::FlatBufferModel::BuildFromBuffer(result.data(), result.size());
      if (!model) return kTrFailure;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        `tf_device.replicate`, and associated `tf.TPUReplicatedInput` and
        `tf.TPUReplicatedOutput` ops are replaced as the `tf_device.replicate` operands
        and results. Otherwise, the single operands and results of the associated
        `tf.TPUReplicatedInput` and `tf.TPUReplicatedOutput` ops are simply forwarded to
        the `tf_device.cluster`.
    
        For example, the following non replicated computation:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
Back to top