Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 99 for visibility (0.15 sec)

  1. tensorflow/cc/framework/cc_op_gen.cc

        std::vector<string> aliases;
        if (api_def->visibility() == ApiDef::SKIP) continue;
        // First endpoint is canonical, the rest are aliases.
        for (int endpoint_i = 1; endpoint_i < api_def->endpoint_size();
             ++endpoint_i) {
          aliases.push_back(api_def->endpoint(endpoint_i).name());
        }
        if (api_def->visibility() == ApiDef::HIDDEN) {
          // Write hidden ops to _internal.h and _internal.cc.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 17:22:47 UTC 2023
    - 17K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/BUILD

        ],
    )
    
    exports_files([
        "run_lit.sh",
    ])
    
    py_strict_library(
        name = "tac",
        srcs = [
            "tac.py",
        ],
        srcs_version = "PY3",
        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper:_pywrap_tac_wrapper",
        ],
    )
    
    proto_library(
        name = "tac_filter_proto",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/DefaultProjectSchemaProvider.kt

                }
                superclass = nextSuperclass
            }
        }
    
    
    private
    val Class<*>.isKotlinPublic: Boolean
        get() = isKotlinVisible && kotlin.visibility == KVisibility.PUBLIC
    
    
    private
    val Class<*>.isKotlinVisible: Boolean
        get() = isPublic && !isLocalClass && !isAnonymousClass && !isSynthetic
    
    
    private
    val Class<*>.isPublic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Suppliers.java

      static class MemoizingSupplier<T extends @Nullable Object> implements Supplier<T>, Serializable {
        final Supplier<T> delegate;
        transient volatile boolean initialized;
        // "value" does not need to be volatile; visibility piggy-backs
        // on volatile read of "initialized".
        @CheckForNull transient T value;
    
        MemoizingSupplier(Supplier<T> delegate) {
          this.delegate = checkNotNull(delegate);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/ops/tf_quantize_op.cc

        StringRef func_name, IRRewriter::InsertPoint original_point,
        Type quantize_result_type) {
      rewriter.create<func::ReturnOp>(input.getLoc(), ArrayRef<Value>({output}));
    
      quantization_func.setVisibility(func::FuncOp::Visibility::Private);
      SymbolTable symbol_table(quantized_op->getParentOfType<ModuleOp>());
    
      symbol_table.insert(quantization_func);
    
      FlatSymbolRefAttr func_name_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfr/BUILD

            ":friends",
        ],
        licenses = ["notice"],
    )
    
    package_group(
        name = "friends",
        packages = [
            "//tensorflow/c/...",
            "//tensorflow/compiler/...",
            # Allow visibility from the mlir language server.
            "//learning/brain/mlir/mlir_lsp_server/...",
        ],
    )
    
    td_library(
        name = "tfr_ops_td_files",
        srcs = [
            "ir/tfr_ops.td",
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/BUILD

        ],
    )
    
    cc_library(
        name = "pre_calibration",
        srcs = ["pre_calibration.cc"],
        hdrs = ["pre_calibration.h"],
        compatible_with = get_compatible_with_portable(),
        visibility = [
            "//tensorflow:__pkg__",
            "//tensorflow/compiler/mlir/quantization/stablehlo:__subpackages__",
            "//tensorflow/compiler/mlir/quantization/tensorflow:__subpackages__",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/schema/kind"
    	"istio.io/istio/pkg/config/visibility"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/util/sets"
    )
    
    type endpointSliceController struct {
    	endpointCache *endpointSliceCache
    	slices        kclient.Client[*v1.EndpointSlice]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller.go

    		return true
    	}
    	if preConv == nil {
    		return !currConv.Attributes.ExportTo.Contains(visibility.None)
    	}
    	// if service are not exported, no need to push
    	if preConv.Attributes.ExportTo.Contains(visibility.None) &&
    		currConv.Attributes.ExportTo.Contains(visibility.None) {
    		return false
    	}
    	// Check if there are any changes we care about by comparing `model.Service`s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

            else -> buildString {
                val clazz = this@with::class
                val className = clazz.simpleName
                append(className)
                clazz.memberProperties.filter { it.name != "token" && it.visibility == KVisibility.PUBLIC }.ifNotEmpty {
                    joinTo(this@buildString, separator = "\n  ", prefix = ":\n  ") { property ->
                        val name = property.name
    
                        @Suppress("UNCHECKED_CAST")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top