Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 163 for VISIBILITY (0.59 sec)

  1. docs/en/docs/js/termynal.js

            const finish = this.generateFinish()
            finish.style.visibility = 'hidden'
            this.container.appendChild(finish)
            // Appends dynamically loaded lines to existing line elements.
            this.lines = [...this.container.querySelectorAll(`[${this.pfx}]`)].concat(this.lineData);
            for (let line of this.lines) {
                line.style.visibility = 'hidden'
                this.container.appendChild(line)
            }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/RuntimePropertyResolver.kt

                ?.let { property -> DeclarativeRuntimePropertyGetter { property.call(it) } }
    
        private
        fun findKotlinFunctionSetter(receiverClass: KClass<*>, name: String) =
            receiverClass.memberFunctions.find { it.name == setterName(name) && it.visibility == KVisibility.PUBLIC }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 17:34:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/BUILD

        ],
    )
    
    tf_kernel_library(
        name = "custom_aggregator_op",
        srcs = ["custom_aggregator_op.cc"],
        compatible_with = get_compatible_with_portable(),
        visibility = [
            "//tensorflow:__pkg__",
            "//tensorflow/compiler/mlir/quantization/tensorflow/python:__pkg__",
        ],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/schemaFromTypes.kt

        )
    
    
    val isPublic: MemberFilter = MemberFilter { member: KCallable<*> ->
        member.visibility == KVisibility.PUBLIC
    }
    
    
    val isPublicAndRestricted: MemberFilter = MemberFilter { member: KCallable<*> ->
        member.visibility == KVisibility.PUBLIC &&
            member.annotationsWithGetters.any {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:27 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. 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)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescDefaultPropertySetterSymbol.kt

        override val modality: Modality
            get() = withValidityAssertion { propertyDescriptor.ktModality }
    
        override val visibility: Visibility
            get() = withValidityAssertion { propertyDescriptor.ktVisibility }
    
        override val annotations: KaAnnotationList
            get() = withValidityAssertion { KaEmptyAnnotationList(token) }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top