Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 319 for VISIBILITY (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/resources/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest/canHaveCycleInDependencyGraph/projectA-1.2-ivy.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <ivy-module version="1.0">
    	<info organisation="test"
    		module="projectA"
    		revision="1.2"
    	/>
    	<configurations>
    		<conf name="runtime" visibility="public"/>
    		<conf name="default" visibility="public" extends="runtime"/>
    	</configurations>
    	<publications>
    		<artifact name="projectA" type="jar" ext="jar" conf="runtime"/>
    	</publications>
        <dependencies>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 514 bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiConstructorSymbol.kt

        override val returnType: KaType
            get() = withValidityAssertion {
                descriptor?.returnType?.toKtType(analysisContext) ?: createErrorType()
            }
    
        override val visibility: Visibility
            get() = withValidityAssertion { psi.ktVisibility ?: descriptor?.ktVisibility ?: Visibilities.Public }
    
        override val isActual: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. 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)
  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-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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top