Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 319 for VISIBILITY (0.34 sec)

  1. tensorflow/compiler/jit/ops/BUILD

        ],
        py_lib_rule = py_strict_library,
        deps = ["//tensorflow/compiler/jit/ops:xla_ops"],
    )
    
    py_strict_library(
        name = "xla_ops_grad",
        srcs = ["xla_ops_grad.py"],
        srcs_version = "PY3",
        visibility = [
            "//tensorflow/compiler/tf2xla:internal",
            "//tensorflow/python/ops:__pkg__",
        ],
        deps = ["//tensorflow/python/framework:ops"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 09:08:06 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/InstrumentedInputs.java

        /**
         * @deprecated do not use outside of this class
         */
        @Deprecated
        public static InstrumentedInputsListener listener() {
            // TODO(mlopatkin): Reduce the visibility of this method once everything moves into this project.
            return LISTENER.get();
        }
    
        public static void setListener(InstrumentedInputsListener listener) {
            LISTENER.set(listener);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptor.groovy

            }
    
            ivy.configurations.conf.each {
                configurations[it.@name] = new IvyDescriptorConfiguration(
                        name: it.@name, visibility: it.@visibility, description: it.@description,
                        extend: it.@extends == null ? null : ******@****.***(",")*.trim()
                )
            }
    
            ivy.publications.artifact.each { artifact ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

    load("//:junit.bzl", "junit_tests")
    
    java_library(
        name = "project${subProjectNumber}",
        srcs = glob(["src/main/java/**/*.java"]),
        javacopts = ["-XepDisableAllChecks"],
        visibility = ["//visibility:public"],
        deps = [
    ${subProjectDependencies}
        ]
    )
    
    junit_tests(
        name = "tests_for_project${subProjectNumber}",
        size = "small",
        srcs = glob(["src/test/java/**/*.java"]),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/fuzzing/BUILD

    #     ],
    #     op_def_src = "//tensorflow/core/ops:array_ops_op_lib",
    # )
    # copybara:uncomment_end
    
    bzl_library(
        name = "op_fuzzing_bzl",
        srcs = ["op_fuzzing.bzl"],
        visibility = ["//visibility:private"],
        deps = [
            "//tensorflow:tensorflow_bzl",
            "//tensorflow/core/platform:rules_cc_bzl",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/BUILD

        ],
    )
    
    cc_library(
        name = "compile_mlir_util_no_tf_dialect_passes",
        srcs = ["compile_mlir_util.cc"],
        hdrs = ["compile_mlir_util.h"],
        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/compiler/mlir/quantization/stablehlo:bridge_passes",
            "//tensorflow/compiler/mlir/tensorflow",
            "//tensorflow/compiler/mlir/tensorflow:bridge_logger",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/tensorflow/BUILD

        ],
    )
    
    td_library(
        name = "ptq_td_files",
        srcs = [
            "fallback_to_flex_patterns.td",
        ],
        compatible_with = get_compatible_with_portable(),
        visibility = ["//visibility:private"],
        deps = [
            "//tensorflow/compiler/mlir/tensorflow:tensorflow_ops_td_files",
            "@llvm-project//mlir:ArithOpsTdFiles",
            "@llvm-project//mlir:FuncTdFiles",
        ],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

            val members = value::class.members
                .filter { it.name !in ignoredPropertyNames }
                .filter { it.visibility != KVisibility.PRIVATE && it.visibility != KVisibility.INTERNAL }
                .filter { !it.hasAnnotation<Deprecated>() }
                .sortedBy { it.name }
                .filterIsInstance<KProperty<*>>()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtVisibilityCheckerMixIn.kt

        }
    
        /**
         * Returns true for effectively public symbols, including internal declarations with @PublishedApi annotation.
         * In 'Explicit API' mode explicit visibility modifier and explicit return types are required for such symbols.
         * See FirExplicitApiDeclarationChecker.kt
         */
        public fun isPublicApi(symbol: KaSymbolWithVisibility): Boolean = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/utils/BUILD

            "@stablehlo//:chlo_ops",
        ],
    )
    
    cc_library(
        name = "test_metadata_config",
        testonly = True,
        srcs = ["test_metadata_config.cc"],
        hdrs = ["test_metadata_config.h"],
        visibility = [
            "//tensorflow/compiler/mlir/tf2xla/api:__subpackages__",
        ],
        deps = [
            "//tensorflow/compiler/jit",
            "//tensorflow/compiler/jit:xla_tpu_device",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top