Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. pkg/kubelet/container/runtime_cache_fake.go

    import "context"
    
    // TestRuntimeCache embeds runtimeCache with some additional methods for testing.
    // It must be declared in the container package to have visibility to runtimeCache.
    // It cannot be in a "..._test.go" file in order for runtime_cache_test.go to have cross-package visibility to it.
    // (cross-package declarations in test files cannot be used from dot imports if this package is vendored)
    type TestRuntimeCache struct {
    	runtimeCache
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPsiJavaClassSymbol.kt

        override val modality: Modality
            get() = withValidityAssertion { javaClass.modality }
    
        override val visibility: Visibility
            get() = withValidityAssertion { javaClass.visibility }
    
        override val isInner: Boolean
            get() = withValidityAssertion { classId.outerClassId != null && !javaClass.isStatic }
    
        val outerClass: KaFirPsiJavaClassSymbol?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/BUILD

        ],
    )
    
    cc_library(
        name = "mlir_import_options",
        hdrs = ["mlir_import_options.h"],
        visibility = ["//visibility:public"],
    )
    
    cc_library(
        name = "translate_lib",
        srcs = ["tf_mlir_translate.cc"],
        hdrs = ["tf_mlir_translate.h"],
        visibility = ["//visibility:public"],
        deps = [
            ":import_model",
            ":mlir_roundtrip_flags",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/plugins/posix/BUILD

    )
    
    # Filesystem implementation for POSIX environments: Linux, MacOS, Android, etc.
    tf_cc_shared_object(
        name = "libposix_filesystem.so",
        framework_so = [],
        linkstatic = False,
        visibility = ["//visibility:public"],
        deps = [":posix_filesystem_impl"],
    )
    
    # The real implementation of the filesystem.
    cc_library(
        name = "posix_filesystem_impl",
        srcs = ["posix_filesystem.cc"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiKotlinPropertySymbol.kt

            }
    
        override val modality: Modality
            get() = withValidityAssertion { psi.ktModality ?: descriptor?.ktModality ?: Modality.FINAL }
    
        override val visibility: Visibility
            get() = withValidityAssertion { psi.ktVisibility ?: descriptor?.ktVisibility ?: Visibilities.Public }
    
        override fun createPointer(): KaSymbolPointer<KaKotlinPropertySymbol> = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top