Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for convert_v1 (0.18 sec)

  1. hack/golangci-strict.yaml

        # https://github.com/kubernetes/kubernetes/issues/117288#issuecomment-1514201592
        - linters:
            - stylecheck
            - revive
          text: "(ST1003: should not use underscores in Go names; func (Convert_.*_To_.*|SetDefaults_)|exported: exported function (Convert|SetDefaults)_.* should be of the form)"
    
        # This check currently has some false positives (https://github.com/nunnatsa/ginkgolinter/issues/91).
        - linters:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. hack/golangci.yaml

        # https://github.com/kubernetes/kubernetes/issues/117288#issuecomment-1514201592
        - linters:
            - stylecheck
            - revive
          text: "(ST1003: should not use underscores in Go names; func (Convert_.*_To_.*|SetDefaults_)|exported: exported function (Convert|SetDefaults)_.* should be of the form)"
    
        # This check currently has some false positives (https://github.com/nunnatsa/ginkgolinter/issues/91).
        - linters:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. test/escape_reflect.go

    	stringTyp = reflect.TypeOf(string("")) // ERROR ".. does not escape"
    	bytesTyp  = reflect.TypeOf([]byte{})   // ERROR "\[\]byte{} does not escape"
    )
    
    // Unfortunate: should not escape.
    func convert1(x int) uint {
    	v := reflect.ValueOf(x) // ERROR "x escapes to heap"
    	return uint(v.Convert(uintTyp).Uint())
    }
    
    // Unfortunate: should only escape content to result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            return BuildStablehloOperatorwithoutOptions(
                inst, operands, results, tflite::BuiltinOperator_STABLEHLO_TANH);
          }
          if (auto vhlo_op = llvm::dyn_cast<mlir::vhlo::ConvertOpV1>(inst)) {
            return BuildStablehloOperatorwithoutOptions(
                inst, operands, results, tflite::BuiltinOperator_STABLEHLO_CONVERT);
          }
          if (auto vhlo_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top