Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 146 for VISIBILITY (0.23 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiPropertyGetterSymbol.kt

        }
    
        override val modality: Modality
            get() = withValidityAssertion { psi.property.ktModality ?: descriptor?.ktModality ?: Modality.FINAL }
    
        override val visibility: Visibility
            get() = withValidityAssertion { psi.ktVisibility ?: descriptor?.ktVisibility ?: psi.property.ktVisibility ?: Visibilities.Public }
    
        override val isDefault: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

      private Visibility visibility = Visibility.PACKAGE;
      private Predicate<Class<?>> classFilter =
          (Class<?> cls) -> visibility.isVisible(cls.getModifiers());
    
      /**
       * Restricts the sanity tests for public API only. By default, package-private API are also
       * covered.
       */
      protected final void publicApiOnly() {
        visibility = Visibility.PUBLIC;
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

      public void testAllPublicConstructors(Class<?> c) {
        testConstructors(c, Visibility.PUBLIC);
      }
    
      /**
       * Runs {@link #testMethod} on every static method of class {@code c} that has at least {@code
       * minimalVisibility}, including those "inherited" from superclasses of the same package.
       */
      public void testStaticMethods(Class<?> c, Visibility minimalVisibility) {
        for (Method method : minimalVisibility.getStaticMethods(c)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/BUILD

        name = "tflite_convert_with_select_tf_ops",
        define_values = {"tflite_convert_with_select_tf_ops": "true"},
        visibility = [
            "//tensorflow/lite:__subpackages__",
        ],
    )
    
    filegroup(
        name = "converter_python_api_hdrs",
        srcs = [
            "converter_python_api.h",
        ],
        visibility = [
            "//tensorflow/python:__subpackages__",
        ],
    )
    
    cc_library(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:23:49 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/visibilityChecker/AbstractVisibilityCheckerTest.kt

    import org.jetbrains.kotlin.psi.psiUtil.findDescendantOfType
    import org.jetbrains.kotlin.test.services.TestServices
    import org.jetbrains.kotlin.test.services.assertions
    
    /**
     * To find the element for the use-site position, the visibility checker test looks for an element called "useSite" in the main module if
     * the main file doesn't or cannot contain a caret marker, e.g. in files from binary libraries. The target name is case-insensitive, so
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 16:12:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/BUILD

        srcs = ["quantization_options.proto"],
        cc_api_version = 2,
        make_default_target_header_only = True,
        visibility = ["//visibility:public"],
    )
    
    # copybara:uncomment_begin(google-only)
    # py_proto_library(
    #     name = "quantization_options_py_pb2",
    #     api_version = 2,
    #     visibility = [":internal_visibility_allowlist_package"],
    #     deps = [":quantization_options_proto"],
    # )
    # copybara:uncomment_end
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/windows/BUILD

    tf_cc_shared_object(
        name = "windows_filesystem.dll",
        framework_so = [],
        linkstatic = False,
        tags = [
            "manual",
            "nobuilder",
            "notap",
        ],
        visibility = ["//visibility:public"],
        deps = [":windows_filesystem_impl"],
    )
    
    # The real implementation of the filesystem.
    cc_library(
        name = "windows_filesystem_impl",
        srcs = ["windows_filesystem.cc"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 20 06:38:26 UTC 2024
    - 936 bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/cpp/views/BUILD

        licenses = ["notice"],
    )
    
    cc_library(
        name = "views",
        srcs = glob(
            ["*.cc"],
            exclude = ["*_test.cc"],
        ),
        hdrs = glob(["*.h"]),
        visibility = ["//tensorflow/c/experimental/ops/gen/cpp/renderers:__pkg__"],
        deps = [
            "//tensorflow/c/experimental/ops/gen/common",
            "//tensorflow/c/experimental/ops/gen/model",
            "//tensorflow/core:lib",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 07:02:00 UTC 2024
    - 731 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/BUILD

    cc_library(
        name = "quantize_model_cc_impl",
        srcs = ["quantize_model.cc"],
        hdrs = ["quantize_model.h"],
        compatible_with = get_compatible_with_portable(),
        visibility = [
            # Directly linked to `libtensorflow_cc.so` or
            # `_pywrap_tensorflow_internal.so` if static build.
            "//tensorflow:__pkg__",
            "//tensorflow/python:__pkg__",
        ],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/base/KtFe10PsiSymbolUtils.kt

    import org.jetbrains.kotlin.descriptors.ClassDescriptorWithResolutionScopes
    import org.jetbrains.kotlin.descriptors.Modality
    import org.jetbrains.kotlin.descriptors.Visibilities
    import org.jetbrains.kotlin.descriptors.Visibility
    import org.jetbrains.kotlin.lexer.KtTokens
    import org.jetbrains.kotlin.name.CallableId
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.psi.*
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top