Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 871 for Cint (0.17 sec)

  1. pkg/kubelet/cm/topologymanager/policy_restricted_test.go

    func TestPolicyRestrictedCanAdmitPodResult(t *testing.T) {
    	tcases := []struct {
    		name     string
    		hint     TopologyHint
    		expected bool
    	}{
    		{
    			name:     "Preferred is set to false in topology hints",
    			hint:     TopologyHint{nil, false},
    			expected: false,
    		},
    		{
    			name:     "Preferred is set to true in topology hints",
    			hint:     TopologyHint{nil, true},
    			expected: true,
    		},
    	}
    
    	for _, tc := range tcases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/annotations/TestAnnotationHandlingSupport.groovy

            [
                new SimplePropertyAnnotationHandler(TestNested, INPUT, [ItDepends]),
                new SimplePropertyAnnotationHandler(Long, INPUT, [ItDepends, Tint]),
                new SimplePropertyAnnotationHandler(Short, INPUT, [Tint]),
            ],
            [ItDepends, Tint],
            typeAnnotationMetadataStore,
            { annotations -> annotations.get(TYPE)?.annotationType() },
            TestCrossBuildInMemoryCacheFactory.instance(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelProblem.java

            V31,
            V40
        }
    
        /**
         * Gets the hint about the source of the problem. While the syntax of this hint is unspecified and depends on the
         * creator of the problem, the general expectation is that the hint provides sufficient information to the user to
         * track the problem back to its origin. A concrete example for such a source hint can be the file path or URL from
         * which a POM was read.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. src/internal/byteorder/byteorder.go

    // Package byteorder provides functions for decoding and encoding
    // little and big endian integer types from/to byte slices.
    package byteorder
    
    func LeUint16(b []byte) uint16 {
    	_ = b[1] // bounds check hint to compiler; see golang.org/issue/14808
    	return uint16(b[0]) | uint16(b[1])<<8
    }
    
    func LePutUint16(b []byte, v uint16) {
    	_ = b[1] // early bounds check to guarantee safety of writes below
    	b[0] = byte(v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 20:31:29 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/bridge/passes.td

    }
    
    def ConvertTFQuantTypes : Pass<"convert-tf-quant-types", "mlir::func::FuncOp"> {
      let summary = "Replace TensorFlow qint types with int types.";
    
      let description = [{
        Converts TF ops with qint types to int types. Some UniformQuantized ops
        argument/result allow qint type only. For such cases, add qint <-> int
        tf.Cast around the ops so that they are still valid.
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 01:41:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. .github/workflows/reviewdog.yml

    name: reviewdog
    on: [pull_request]
    jobs:
      golangci-lint:
        name: runner / golangci-lint
        runs-on: ubuntu-latest
        steps:
          - name: Check out code into the Go module directory
            uses: actions/checkout@v4
          - name: golangci-lint
            uses: reviewdog/action-golangci-lint@v2
    
          - name: Setup reviewdog
            uses: reviewdog/action-setup@v1
    
          - name: gofumpt -s with reviewdog
            env:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Oct 10 06:50:45 UTC 2023
    - 664 bytes
    - Viewed (0)
  7. src/internal/trace/batchcursor.go

    		i = m
    	}
    	return i
    }
    
    func min3(b []*batchCursor, i0, i1, i2 int) int {
    	minIdx := i0
    	minT := maxTime
    	if i0 < len(b) {
    		minT = b[i0].ev.time
    	}
    	if i1 < len(b) {
    		if t := b[i1].ev.time; t < minT {
    			minT = t
    			minIdx = i1
    		}
    	}
    	if i2 < len(b) {
    		if t := b[i2].ev.time; t < minT {
    			minT = t
    			minIdx = i2
    		}
    	}
    	return minIdx
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_quantize_model.cc

      pybind11_protobuf::ImportNativeProtoCasters();
    
      m.def(
          // If the function signature changes, likely its corresponding .pyi type
          // hinting should also change.
          // LINT.IfChange
          "quantize_qat_model",
          [](const absl::string_view src_saved_model_path,
             const absl::string_view dst_saved_model_path,
             const QuantizationOptions& quantization_options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo.pyi

    # ==============================================================================
    
    # LINT.IfChange(savedmodel_to_stablehlo)
    def savedmodel_to_stablehlo(
        input_path: str,
        exported_model_signatures: list[str] = ["serving_default"],
        tag_names: list[str] = ["serve"],
        input_arg_shapes_str: str = "",
    ) -> bytes: ...
    # LINT.ThenChange()
    
    # LINT.IfChange(tensorflow_module_to_stablehlo)
    def tensorflow_module_to_stablehlo(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo.cc

              std::vector<std::string>{"serving_default"},
          py::arg("tag_names") = std::vector<std::string>{"serve"},
          py::arg("input_arg_shapes_str") = "");
      // LINT.ThenChange(pywrap_tensorflow_to_stablehlo.pyi:savedmodel_to_stablehlo)
      //
      // LINT.IfChange(tensorflow_module_to_stablehlo)
      m.def(
          "tensorflow_module_to_stablehlo",
          [](absl::string_view module_op_str,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top