Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for VISIBILITY (0.94 sec)

  1. pilot/pkg/serviceregistry/serviceentry/conversion.go

    			}
    			portOverrides[port.Number] = port.TargetPort
    		}
    	}
    
    	var exportTo sets.Set[visibility.Instance]
    	if len(serviceEntry.ExportTo) > 0 {
    		exportTo = sets.NewWithLength[visibility.Instance](len(serviceEntry.ExportTo))
    		for _, e := range serviceEntry.ExportTo {
    			exportTo.Insert(visibility.Instance(e))
    		}
    	}
    
    	var labelSelectors map[string]string
    	if serviceEntry.WorkloadSelector != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/conversion.go

    	if svc.Annotations[annotation.NetworkingExportTo.Name] != "" {
    		namespaces := strings.Split(svc.Annotations[annotation.NetworkingExportTo.Name], ",")
    		exportTo = sets.NewWithLength[visibility.Instance](len(namespaces))
    		for _, ns := range namespaces {
    			exportTo.Insert(visibility.Instance(ns))
    		}
    	}
    
    	istioService := &model.Service{
    		Hostname: ServiceHostname(svc.Name, svc.Namespace, domainSuffix),
    		ClusterVIPs: model.AddressMap{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiDefaultPropertySetterSymbol.kt

            }
    
        override val modality: Modality
            get() = withValidityAssertion { propertyPsi.ktModality ?: descriptor?.ktModality ?: Modality.FINAL }
    
        override val visibility: Visibility
            get() = withValidityAssertion { propertyPsi.ktVisibility ?: descriptor?.ktVisibility ?: Visibilities.Public }
    
        override val annotations: KaAnnotationList
            get() = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiDefaultPropertyGetterSymbol.kt

            }
    
        override val modality: Modality
            get() = withValidityAssertion { propertyPsi.ktModality ?: descriptor?.ktModality ?: Modality.FINAL }
    
        override val visibility: Visibility
            get() = withValidityAssertion { propertyPsi.ktVisibility ?: descriptor?.ktVisibility ?: Visibilities.Public }
    
        override val annotations: KaAnnotationList
            get() = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow_to_stablehlo/BUILD

            "@local_tsl//tsl/platform:statusor",
        ],
        alwayslink = True,
    )
    
    tf_cc_binary(
        name = "tf-to-stablehlo-translate",
        srcs = [
            "tf_to_stablehlo_translate.cc",
        ],
        visibility = [":internal_visibility_allowlist_package"],
        deps = [
            ":tf_to_stablehlo",
            "//tensorflow/compiler/mlir:init_mlir",
            "//tensorflow/compiler/mlir/tensorflow",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. pilot/pkg/model/destination_rule.go

    	"k8s.io/apimachinery/pkg/types"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/visibility"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // This function merges one or more destination rules for a given host string
    // into a single destination rule. Note that it does not perform inheritance style merging.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top