Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 328 for visibility (0.2 sec)

  1. 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
    - 23.2K bytes
    - Viewed (0)
  2. tensorflow/c/c_api_macros.h

    #else
    #define TF_CAPI_EXPORT __declspec(dllimport)
    #endif  // TF_COMPILE_LIBRARY
    #else
    #ifdef TF_CAPI_WEAK
    #define TF_CAPI_EXPORT \
      __attribute__((visibility("default"))) __attribute((weak))
    #else
    #define TF_CAPI_EXPORT __attribute__((visibility("default")))
    #endif  // TF_CAPI_WEAK
    #endif  // _WIN32
    #endif  // SWIG
    
    // TF_Bool is the C API typedef for unsigned char, while TF_BOOL is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat May 13 04:44:45 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirKotlinPropertySymbol.kt

                    else -> KaSymbolKind.CLASS_MEMBER
                }
            }
    
        override val modality: Modality get() = withValidityAssertion { firSymbol.modality }
        override val visibility: Visibility get() = withValidityAssertion { firSymbol.visibility }
    
        override val annotations by cached {
            KaFirAnnotationListForDeclaration.create(firSymbol, builder)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/grappler/BUILD

        hdrs = ["grappler.h"],
        visibility = ["//tensorflow:internal"],
        deps = [
            "//tensorflow/c:c_api",
            "//tensorflow/c:c_api_macros",
            "//tensorflow/c:tf_status_headers",
        ],
    )
    
    cc_library(
        name = "grappler",
        srcs = ["grappler.cc"],
        hdrs = [
            "grappler.h",
            "grappler_internal.h",
        ],
        visibility = ["//tensorflow:internal"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/BUILD

    cc_library(
        name = "pywrap_tensorflow_to_stablehlo_lib_header_only",
        srcs = [],
        hdrs = ["pywrap_tensorflow_to_stablehlo_lib.h"],
        compatible_with = get_compatible_with_portable(),
        visibility = ["//visibility:private"],  # ONLY for `pywrap_tensorflow_to_stablehlo`.
        deps = [
            "@com_google_absl//absl/status:statusor",
            "@com_google_absl//absl/strings:string_view",
        ],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/tests/BUILD

    )
    
    cc_library(
        name = "auto_clustering_test_helper",
        testonly = True,
        srcs = ["auto_clustering_test_helper.cc"],
        hdrs = ["auto_clustering_test_helper.h"],
        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/compiler/jit:compilation_passes",
            "//tensorflow/compiler/jit:jit_compilation_passes",
            "//tensorflow/compiler/jit:xla_cluster_util",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v2/BUILD

    tf_proto_library(
        name = "device_type_proto",
        srcs = ["device_type.proto"],
        cc_api_version = 2,
        visibility = [
            "//learning/serving/contrib/tfrt/mlir/saved_model_analysis:__pkg__",
        ],
    )
    
    cc_library(
        name = "cluster_tf",
        srcs = ["cluster_tf.cc"],
        hdrs = ["cluster_tf.h"],
        visibility = [
            "//learning/serving/contrib/tfrt/mlir/saved_model_analysis:__pkg__",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/canHaveCycleInDependencyGraph/projectB-1.5-ivy.xml

      ~ limitations under the License.
      -->
    
    <ivy-module version="1.0">
    	<info organisation="test"
    		module="projectB"
    		revision="1.5"
    	/>
    	<configurations>
    		<conf name="runtime" visibility="public"/>
    		<conf name="default" visibility="public" extends="runtime"/>
    	</configurations>
    	<publications>
    		<artifact name="projectB" type="jar" ext="jar" conf="runtime"/>
    	</publications>
        <dependencies>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/debug/BUILD

    tf_proto_library(
        name = "debug_options_proto",
        srcs = ["debug_options.proto"],
        cc_api_version = 2,
        make_default_target_header_only = True,
        visibility = ["//visibility:public"],
    )
    
    cc_library(
        name = "debug",
        srcs = ["debug.cc"],
        hdrs = ["debug.h"],
        visibility = ["//tensorflow/compiler/mlir/lite:__subpackages__"],
        deps = [
            ":debug_options_proto_cc",
            "//tensorflow/core:portable_gif_internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 05:39:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. releasenotes/notes/42400.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 42400
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 13 19:11:22 UTC 2022
    - 171 bytes
    - Viewed (0)
Back to top