Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 163 for VISIBILITY (0.18 sec)

  1. tensorflow/compiler/mlir/lite/schema/BUILD

    )
    
    exports_files(
        srcs = ["schema.fbs"],
    )
    
    filegroup(
        name = "tflite_internal_cc_3p_api_deps_src",
        srcs = [
            ":schema_fbs_srcs",
            ":schema_utils.h",
        ],
        visibility = ["//tensorflow/lite:__pkg__"],
    )
    
    flatbuffer_cc_library(
        name = "schema_fbs",
        srcs = ["schema.fbs"],
        compatible_with = get_compatible_with_portable(),
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jun 02 08:36:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/rename_entrypoint_to_main.cc

          signalPassFailure();
        };
    
        DenseMap<StringRef, func::FuncOp> entrypoints;
        auto module = getOperation();
        module.walk([&](func::FuncOp op) {
          auto visibility = SymbolTable::getSymbolVisibility(op);
          if (visibility != SymbolTable::Visibility::Public) return;
          entrypoints[op.getSymName()] = op;
        });
    
        if (auto session_initializer =
                tf_saved_model::GetSessionInitializerOp(module)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescTypeAliasSymbol.kt

        override val typeParameters: List<KaTypeParameterSymbol>
            get() = withValidityAssertion { descriptor.declaredTypeParameters.map { KaFe10DescTypeParameterSymbol(it, analysisContext) } }
    
        override val visibility: Visibility
            get() = withValidityAssertion { descriptor.ktVisibility }
    
        override val expandedType: KaType
            get() = withValidityAssertion { descriptor.expandedType.toKtType(analysisContext) }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirFunctionSymbol.kt

                    else -> KaSymbolKind.CLASS_MEMBER
                }
            }
    
        override val modality: Modality get() = withValidityAssertion { firSymbol.modality }
        override val visibility: Visibility get() = withValidityAssertion { firSymbol.visibility }
    
        override fun createPointer(): KaSymbolPointer<KaFunctionSymbol> = withValidityAssertion {
            KaPsiBasedSymbolPointer.createForSymbolFromSource<KaFunctionSymbol>(this)?.let { return it }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top