Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for spcs (0.07 sec)

  1. tensorflow/compiler/jit/BUILD

        ],
        deps = [":flags_headers"],
    )
    
    cc_library(
        name = "common",
        srcs = [
            "defs.cc",
        ],
        hdrs = [
            "defs.h",
        ],
        visibility = [":friends"],
    )
    
    # Internal targets below this point.
    
    cc_library(
        name = "variable_info",
        srcs = ["variable_info.cc"],
        hdrs = ["variable_info.h"],
        visibility = [
            ":internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/BUILD

        ],
    )
    
    cc_library(
        name = "size_utils",
        srcs = [
            "utils/size_utils.cc",
        ],
        hdrs = [
            "utils/size_utils.h",
        ],
        deps = [
            "@llvm-project//mlir:IR",
        ],
    )
    
    tf_cc_test(
        name = "size_utils_test",
        size = "small",
        srcs = ["utils/size_utils_test.cc"],
        deps = [
            ":size_utils",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. tensorflow/BUILD

    # filegroup(
    #     name = "copybara_library",
    #     srcs = glob(
    #         [
    #             "*.bara.sky",
    #             "*.dic",
    #             "*.ftrcp",
    #         ],
    #         exclude = [
    #             "copy.bara.sky",
    #         ],
    #     ),
    #     visibility = ["//visibility:public"],
    # )
    #
    # filegroup(
    #     name = "copybara_config",
    #     srcs = ["copy.bara.sky"],
    #     data = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    	runTest := func(t framework.TestContext, f func(t framework.TestContext, src echo.Instance, dst echo.Instance, opt echo.CallOptions)) {
    		svcs := apps.All
    		for _, src := range svcs {
    			src := src
    			t.NewSubTestf("from %v", src.Config().Service).RunParallel(func(t framework.TestContext) {
    				for _, dst := range svcs {
    					dst := dst
    					t.NewSubTestf("to %v", dst.Config().Service).RunParallel(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. src/go/printer/nodes.go

    func keepTypeColumn(specs []ast.Spec) []bool {
    	m := make([]bool, len(specs))
    
    	populate := func(i, j int, keepType bool) {
    		if keepType {
    			for ; i < j; i++ {
    				m[i] = true
    			}
    		}
    	}
    
    	i0 := -1 // if i0 >= 0 we are in a run and i0 is the start of the run
    	var keepType bool
    	for i, s := range specs {
    		t := s.(*ast.ValueSpec)
    		if t.Values != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_attacher_test.go

    			}
    			csiAttacher := getCsiAttacherFromVolumeAttacher(attacher, tc.watchTimeout)
    			nodeName := "fakeNode"
    
    			var specs []*volume.Spec
    			// create and save volume attchments
    			for _, attachedSpec := range tc.attachedSpecs {
    				specs = append(specs, attachedSpec.spec)
    				attachID := getAttachmentName(attachedSpec.volName, testDriver, nodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

            # Disable quantization for the quantizable unit (lifted function) whose
            # function name starts with "composite_dot_general".
            specs=qc.QuantizationSpecs(
                specs=[
                    qc.QuantizationSpec(
                        matcher=qc.MatcherSpec(
                            function_name=qc.FunctionNameMatcherSpec(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

    import org.gradle.api.internal.project.ProjectStateRegistry;
    import org.gradle.api.internal.tasks.TaskDependencyFactory;
    import org.gradle.api.internal.tasks.TaskDependencyResolveContext;
    import org.gradle.api.specs.Spec;
    import org.gradle.api.specs.Specs;
    import org.gradle.api.tasks.TaskDependency;
    import org.gradle.internal.Cast;
    import org.gradle.internal.Describables;
    import org.gradle.internal.DisplayName;
    import org.gradle.internal.Factories;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/reflect/TypeToken.java

        return subtype;
      }
    
      /**
       * Returns true if this type is a supertype of the given {@code type}. "Supertype" is defined
       * according to <a
       * href="http://docs.oracle.com/javase/specs/jls/se8/html/jls-4.html#jls-4.5.1">the rules for type
       * arguments</a> introduced with Java generics.
       *
       * @since 19.0
       */
      public final boolean isSupertypeOf(TypeToken<?> type) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      absl::flat_hash_set<const Node*> guaranteed_const_nodes;
      std::vector<const Node*> srcs;
      srcs.reserve(src_arg_pairs.size());
      for (const auto& src_arg : src_arg_pairs) {
        srcs.push_back(src_arg.first);
      }
      ReverseDFSFrom(
          graph, srcs, /*enter=*/nullptr,
          /*leave=*/[&guaranteed_const_nodes](const Node* n) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top