Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,635 for preset (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	if err := store.Delete(ctx, computePodKey(bazSecond), preset[len(preset)-1].storedObj, nil, storage.ValidateAllObjectFunc, nil); err != nil {
    		return "", nil, fmt.Errorf("failed to delete object: %w", err)
    	}
    
    	// Since we deleted bazSecond (last element of preset), we remove it from preset.
    	preset = preset[:len(preset)-1]
    	var created []*example.Pod
    	for _, item := range preset {
    		created = append(created, item.storedObj)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/quantization_options.proto

    // NEXT ID: 3
    message QuantizationMethod {
      // Quantization Method can be either preset or custom.
      oneof quantization_method {
        PresetQuantizationMethod preset_quantization_method = 1;
        CustomQuantizationMethod custom_quantization_method = 2;
      }
    }
    
    // Preset model quantization method for optimization.
    //
    // Common quantization methods are defined as preset methods in this message.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 22 02:20:05 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.cc

    void ExpandStaticRangePtqPreset(const StaticRangePtqPreset& preset,
                                    QuantizationConfig& config) {
      // Populate with preset's representative dataset configs if the user didn't
      // explicitly specify other representative dataset configs to the top-level
      // `CalibrationOptions`.
      if (config.calibration_options().representative_datasets().empty()) {
        auto preset_datasets = preset.representative_datasets();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/utils/fill_quantization_options.h

    using ::stablehlo::quantization::QuantizationOptions;
    
    // Returns QuantizationOptions filled with detailed specs when user specifies
    // an optional preset method name. The preset methods are defined in
    // quantization_options.proto. This function will only be executed if a user
    // gives a preset method, not a custom method.
    QuantizationOptions FillPresetQuantizationOptions(
        QuantizationOptions quantization_options);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 07:43:59 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    // Next ID: 9
    message QuantizationConfig {
      // Config presets provide predefined popular or common quantization specs.
      // Lightweight users may choose one of the presets for quick experiments. Each
      // preset is completely represented by other fields in `QuantizationConfig`.
      //
      // When extra entries in `QuantizationSpecs` are provided along with a preset,
      // then those entries will take precedence.
      oneof preset {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher_test.go

    	preset := []struct {
    		key       string
    		obj       *example.Pod
    		storedObj *example.Pod
    	}{
    		{
    			key: fmt.Sprintf("/pods/%s/%s", barFirst.Namespace, barFirst.Name),
    			obj: barFirst,
    		},
    		{
    			key: fmt.Sprintf("/pods/%s/%s", barSecond.Namespace, barSecond.Name),
    			obj: barSecond,
    		},
    	}
    
    	for i, ps := range preset {
    		preset[i].storedObj = &example.Pod{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/src/main/groovy/gradlebuild.binary-compatibility.gradle

                .replaceAll('###', '.*?')
        }
    }
    
    private String writeFilterPreset(Project project) {
        def preset = project.hasProperty('bin.cmp.report.severity.filter') ? project.getProperty('bin.cmp.report.severity.filter') : 'All levels'
        return """<input id="filter-preset" type="hidden" value="$preset" />"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization.cc

      m.def("expand_preset_configs", &PywrapExpandPresets, R"pbdoc(
            Expands presets to other fields in `QuantizationConfig`.
    
            Each preset is expressible by other fields in `QuantizationConfig`.
            Returns a copy of `QuantizationConfig` (serialized) where the fields are
            expanded from presets. If no preset has been set, it is a no-op and
            returns the same copy of the input.
            )pbdoc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 13:51:40 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. src/site/svgo.config.mjs

     * specific language governing permissions and limitations
     * under the License.
     */
    
    export default {
        js2svg: {
            indent: 1,
            pretty: true,
          },
        plugins: [
          'preset-default',
          {
            name: "removeAttrs",
            params: {
              attrs: [
                "g:class",
                "path:class",
              ]
            }
          },
          ],
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 24 18:29:19 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. manifests/charts/base/README.md

    helm install istio-base istio/base -n istio-system
    ```
    
    ### Profiles
    
    Istio Helm charts have a concept of a `profile`, which is a bundled collection of value presets.
    These can be set with `--set profile=<profile>`.
    For example, the `demo` profile offers a preset configuration to try out Istio in a test environment, with additional features enabled and lowered resource requirements.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top