Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 187 for qint (0.15 sec)

  1. hack/golangci.yaml.in

    # enable an increasing amount of checks:
    # - golangci.yaml is the most permissive configuration. All existing code
    #   passed.
    # - golangci-strict.yaml adds checks that all new code in pull requests
    #   must pass.
    # - golangci-hints.yaml adds checks for code patterns where developer
    #   and reviewer may decide whether findings should get addressed before
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. common/Makefile.common.mk

    lint-licenses:
    	@if test -d licenses; then license-lint --config common/config/license-lint.yml; fi
    
    lint-all: lint-dockerfiles lint-scripts lint-yaml lint-helm lint-copyright-banner lint-go lint-python lint-markdown lint-sass lint-typescript lint-licenses
    
    tidy-go:
    	@find -name go.mod -execdir go mod tidy \;
    
    mod-download-go:
    	@-GOFLAGS="-mod=readonly" find -name go.mod -execdir go mod download \;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 14:37:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. test/typeparam/struct.go

    	v T
    }
    
    type S1 struct {
    	E[int]
    	v string
    }
    
    type Eint = E[int]
    type Ebool = E[bool]
    type Eint2 = Eint
    
    type S2 struct {
    	Eint
    	Ebool
    	v string
    }
    
    type S3 struct {
    	*E[int]
    }
    
    func main() {
    	s1 := S1{Eint{2}, "foo"}
    	if got, want := s1.E.v, 2; got != want {
    		panic(fmt.Sprintf("got %d, want %d", got, want))
    	}
    	s2 := S2{Eint{3}, Ebool{true}, "foo"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 16:29:58 UTC 2024
    - 801 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_quantize_model.pyi

    ) -> Any: ...  # Status
    
    # LINT.ThenChange()
    
    # LINT.IfChange(quantize_weight_only)
    def quantize_weight_only(
        src_saved_model_path: str,
        dst_saved_model_path: str,
        quantization_options_serialized: bytes,
        *,
        signature_def_map_serialized: dict[str, bytes],
        py_function_library: py_function_lib.PyFunctionLibrary,
    ) -> Any: ...  # Status
    
    # LINT.ThenChange()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 03:47:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/pywrap_calibration.pyi

    from tensorflow.compiler.mlir.quantization.tensorflow.calibrator import calibration_statistics_pb2
    
    # LINT.IfChange(clear_calibrator)
    def clear_calibrator() -> None: ...
    
    # LINT.ThenChange()
    
    # LINT.IfChange(clear_data_from_calibrator)
    def clear_data_from_calibrator(id: bytes) -> None: ...
    
    # LINT.ThenChange()
    
    # LINT.IfChange(get_statistics_from_calibrator)
    def get_statistics_from_calibrator(
        id: bytes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 09 02:25:59 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization.pyi

        py_function_library: py_function_lib.PyFunctionLibrary,
    ) -> Any: ...  # Status
    
    # LINT.ThenChange()
    
    # LINT.IfChange(populate_default_configs)
    def populate_default_configs(
        user_provided_quantization_config_serialized: bytes,
    ) -> bytes: ...  # QuantizationConfig
    
    # LINT.ThenChange()
    
    # LINT.IfChange(expand_preset_configs)
    def expand_preset_configs(
        quantization_config_serialized: bytes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 13:51:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/topologymanager/policy_single_numa_node.go

    				filtered = append(filtered, hint)
    			}
    			if hint.NUMANodeAffinity != nil && hint.NUMANodeAffinity.Count() == 1 && hint.Preferred {
    				filtered = append(filtered, hint)
    			}
    		}
    		filteredResourcesHints = append(filteredResourcesHints, filtered)
    	}
    	return filteredResourcesHints
    }
    
    func (p *singleNumaNodePolicy) Merge(providersHints []map[string][]TopologyHint) (TopologyHint, bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:08 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/fake_topology_manager.go

    )
    
    type fakeManager struct {
    	hint   *TopologyHint
    	policy Policy
    }
    
    // NewFakeManager returns an instance of FakeManager
    func NewFakeManager() Manager {
    	klog.InfoS("NewFakeManager")
    	return &fakeManager{}
    }
    
    // NewFakeManagerWithHint returns an instance of fake topology manager with specified topology hints
    func NewFakeManagerWithHint(hint *TopologyHint) Manager {
    	klog.InfoS("NewFakeManagerWithHint")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 18:02:07 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. internal/config/errors-utils.go

    	// Add action message
    	if uiErr.action != "" {
    		renderedTxt += "> " + color.BgYellow(color.Black(uiErr.action)) + "\n"
    	}
    	// Add hint
    	if uiErr.hint != "" {
    		renderedTxt += color.Bold("HINT:") + "\n"
    		renderedTxt += "  " + uiErr.hint
    	}
    	return renderedTxt
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/BuildOptionTest.groovy

        private static final String HINT = 'must be positive'
        private static final String GRADLE_PROPERTY = 'org.gradle.property'
        private static final String OPTION = 'option'
    
        def "can handle invalid value for Gradle property with empty #hint"() {
            when:
            Origin.forGradleProperty(GRADLE_PROPERTY).handleInvalidValue(VALUE, hint)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top