Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for defaultSpec (0.37 sec)

  1. pkg/volume/portworx/portworx_util.go

    	specHandler := osdspec.NewSpecHandler()
    	spec, locator, source, _ := specHandler.SpecFromOpts(p.options.Parameters)
    	if spec == nil {
    		spec = specHandler.DefaultSpec()
    	}
    
    	// Pass all parameters as volume labels for Portworx server-side processing
    	if spec.VolumeLabels == nil {
    		spec.VolumeLabels = make(map[string]string, 0)
    	}
    
    	for k, v := range p.options.Parameters {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  2. build/root/Makefile

    #    test/e2e_node/system/specs/. For example, "SYSTEM_SPEC_NAME=gke" will use
    #    the spec at test/e2e_node/system/specs/gke.yaml. If unspecified, the
    #    default built-in spec (system.DefaultSpec) will be used.
    #  IMAGES: For REMOTE=true only.  Comma delimited list of images for creating
    #    remote hosts to run tests against.  Defaults to a recent image.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. plugin/pkg/admission/priority/admission.go

    	// we pick the one with the lowest priority value.
    	var defaultPC *schedulingv1.PriorityClass
    	for _, pci := range list {
    		if pci.GlobalDefault {
    			if defaultPC == nil || defaultPC.Value > pci.Value {
    				defaultPC = pci
    			}
    		}
    	}
    	return defaultPC, nil
    }
    
    func (p *Plugin) getDefaultPriority() (string, int32, *apiv1.PreemptionPolicy, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 08 10:11:23 UTC 2022
    - 9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/config_test.cc

      const QuantizationConfig new_config = ExpandPresets(config);
      ASSERT_THAT(new_config.specs().specs(), SizeIs(2));
    
      const QuantizationSpec& default_spec = new_config.specs().specs(0);
      EXPECT_THAT(default_spec.matcher().function_name().regex(), StrEq(".*"));
      EXPECT_TRUE(default_spec.method().has_static_range_ptq());
    
      // Test that the expansion for convolution ops is done.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 06:59:34 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top