Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 276 for visibility (0.15 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPropertyGetterSymbol.kt

        override val hasBody: Boolean get() = withValidityAssertion { firSymbol.fir.hasBody }
    
        override val modality: Modality get() = withValidityAssertion { firSymbol.modality }
        override val visibility: Visibility get() = withValidityAssertion { firSymbol.visibility }
    
    
        override val returnType: KaType get() = withValidityAssertion { firSymbol.returnType(builder) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    			pushContext: &PushContext{},
    			service: &Service{
    				Attributes: ServiceAttributes{
    					Namespace: "bar",
    					ExportTo: sets.New(
    						visibility.Public,
    						visibility.None,
    					),
    				},
    			},
    			expect: true,
    		},
    		{
    			name:        "service has both none visibility and private visibility",
    			pushContext: &PushContext{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context.go

    		if ps.exportToDefaults.service.Contains(visibility.Private) {
    			return ns == namespace
    		} else if ps.exportToDefaults.service.Contains(visibility.Public) {
    			return true
    		}
    	}
    
    	return service.Attributes.ExportTo.Contains(visibility.Public) ||
    		(service.Attributes.ExportTo.Contains(visibility.Private) && ns == namespace) ||
    		service.Attributes.ExportTo.Contains(visibility.Instance(namespace))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top