Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 231 for Extract (0.22 sec)

  1. pilot/pkg/config/kube/ingress/controller.go

    		}
    	}
    
    	if typ == gvk.VirtualService {
    		for _, obj := range ingressByHost {
    			out = append(out, *obj)
    		}
    	}
    
    	return out
    }
    
    // extractServicesByPortNameType extract services that are of port name type in the specified ingress resource.
    func extractServicesByPortNameType(ingress *knetworking.Ingress) sets.String {
    	services := sets.String{}
    	for _, rule := range ingress.Spec.Rules {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. fastapi/openapi/utils.py

                    status_code = str(route.status_code)
                else:
                    # It would probably make more sense for all response classes to have an
                    # explicit default status_code, and to extract it from them, instead of
                    # doing this inspection tricks, that would probably be in the future
                    # TODO: probably make status_code a default class attribute for all
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. operator/cmd/mesh/manifest-generate_test.go

    		}
    		f, err := os.Open("testdata/manifest-generate/data-snapshot.tar.gz")
    		if err != nil {
    			panic(fmt.Errorf("failed to read data snapshot: %v", err))
    		}
    		if err := extract(f, d); err != nil {
    			panic(fmt.Errorf("failed to extract data snapshot: %v", err))
    		}
    		return chartSourceType(filepath.Join(d, "manifests"))
    	}()
    	// Compiled in charts come from assets.gen.go
    	compiledInCharts chartSourceType = "COMPILED"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr3_multi_project_builds.adoc

    However, to build `app`, Gradle will also build `lib`.
    
    == Step 3. Understand Composite Builds
    A composite build is simply a build that includes other builds.
    
    Composite builds allow you to:
    
    - Extract your build logic from your project build (and re-use it among subprojects)
    - Combine builds that are usually developed independently (such as a plugin and an application)
    - Decompose a large build into smaller, more isolated chunks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_plugin.go

    // That string value is used in Detach() to extract driver name and volumeName.
    func (p *csiPlugin) GetVolumeName(spec *volume.Spec) (string, error) {
    	csi, err := getPVSourceFromSpec(spec)
    	if err != nil {
    		return "", errors.New(log("plugin.GetVolumeName failed to extract volume source from spec: %v", err))
    	}
    
    	// return driverName<separator>volumeHandle
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

        FunctionLibraryDefinition* flib_def,
        llvm::SmallDenseSet<FuncOp>& visited_functions,
        absl::flat_hash_set<Node*>* control_ret_nodes) {
      mlir::Block& block = function.front();
    
      // Extract input & output names if set.
      llvm::SmallVector<llvm::StringRef, 2> input_names;
      llvm::SmallVector<llvm::StringRef, 2> output_names;
      llvm::SmallVector<llvm::StringRef, 2> unique_output_names;
      auto dict_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

        FunctionLibraryDefinition* flib_def,
        llvm::SmallDenseSet<FuncOp>& visited_functions,
        absl::flat_hash_set<Node*>* control_ret_nodes) {
      mlir::Block& block = function.front();
    
      // Extract input & output names if set.
      llvm::SmallVector<llvm::StringRef, 2> input_names;
      llvm::SmallVector<llvm::StringRef, 2> output_names;
      llvm::SmallVector<llvm::StringRef, 2> unique_output_names;
      auto dict_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

                }
    
                try {
                    return ReflectionValueExtractor.evaluate(expression, root, false);
                } catch (Exception e) {
                    addFeedback("Failed to extract \'" + expression + "\' from: " + root, e);
                }
    
                return null;
            }
        }
    
        /**
         * Wraps another value source and intercepts interpolated expressions, checking for problems.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

          quant_min, quant_max = self._hist_mids[left], self._hist_mids[right]
          mse_tuple = self._get_weighted_mean_squared_error(quant_min, quant_max)
          mse_min = min(mse_tuple, mse_min)
        # Extract (quant_min, quant_max) from (mse_error, quant_min, quant_max).
        min_value, max_value = mse_min[1], mse_min[2]
        return min_value, max_value
    
    
    @_implements(_CalibrationMethod.CALIBRATION_METHOD_MIN_MAX)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfr/passes/decompose.cc

        // Replace the use of the old op. This is mapping the results from the
        // target TF ops to the TFR function returns. If the TFR function return is
        // a tensor_list, "tfr.get_element" op is used to extract the required TF
        // op result.
        llvm::SmallVector<Value, 4> new_results;
        for (auto res : llvm::enumerate(compose_func_type.getResults())) {
          if (mlir::dyn_cast<TFRTensorType>(res.value())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top