Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 111 for VISIBILITY (0.14 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

                    // starting the worker process. Implementation modules are hidden to the application modules by module visibility.
                } else {
                    outstr.writeInt(implementationClassPath.size() + implementationModulePath.size());
                    for (URL entry : implementationClassPath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/BUILD

        ],
    )
    
    cc_library(
        name = "tf2xla_rewriter",
        srcs = [
            "tf2xla_rewriter.cc",
        ],
        hdrs = [
            "tf2xla_rewriter.h",
        ],
        visibility = ["//visibility:private"],
        deps = [
            ":legalize_tf",
            "//tensorflow/compiler/mlir:op_or_arg_name_mapper",
            "//tensorflow/compiler/mlir/tensorflow",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/HLDiagnosticConverter.kt

    import org.jetbrains.kotlin.contracts.description.EventOccurrencesRange
    import org.jetbrains.kotlin.descriptors.ClassKind
    import org.jetbrains.kotlin.descriptors.EffectiveVisibility
    import org.jetbrains.kotlin.descriptors.Visibility
    import org.jetbrains.kotlin.diagnostics.Severity
    import org.jetbrains.kotlin.diagnostics.WhenMissingCase
    import org.jetbrains.kotlin.fir.FirModuleData
    import org.jetbrains.kotlin.fir.checkers.generator.diagnostics.model.*
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			expect:   false,
    		},
    		{
    			name:     "public visibility, spec change",
    			prevConv: newService(visibility.Public, []int{80}),
    			currConv: newService(visibility.Public, []int{80, 443}),
    			expect:   true,
    		},
    		{
    			name:     "none visibility, spec change",
    			prevConv: newService(visibility.None, []int{80}),
    			currConv: newService(visibility.None, []int{80, 443}),
    			expect:   false,
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/FunctionExtractor.kt

            val functionsClaimedByProperties = preIndex.getClaimedFunctions(kClass)
            return kClass.memberFunctions.filter {
                it.visibility == KVisibility.PUBLIC &&
                    includeFilter.shouldIncludeMember(it) &&
                    it !in functionsClaimedByProperties
            }.map { function -> memberFunction(kClass, function, preIndex, configureLambdas) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/PropertyExtractor.kt

                (includeMemberFilter.shouldIncludeMember(property) ||
                    kClass.primaryConstructor?.parameters.orEmpty().any { it.name == property.name && it.type == property.returnType })
                    && property.visibility == KVisibility.PUBLIC
                    && propertyNamePredicate(property.name)
            }.map { property -> kPropertyInformation(property) }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/BUILD

            "//tensorflow/compiler/mlir/...",
            "//tensorflow/lite/python/...",
            "//waymo/accelerator/alpine/tools/...",
            "//waymo/ml/compiler/mlir/...",
            # Allow visibility from the mlir language server.
            "//learning/brain/mlir/mlir_lsp_server/...",
            "//research/language_modeling/sentence_explorer/ondevice/...",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/schemaFromProperties.kt

                (includeMemberFilter.shouldIncludeMember(property) ||
                    kClass.primaryConstructor?.parameters.orEmpty().any { it.name == property.name && it.type == property.returnType }) &&
                    property.visibility == KVisibility.PUBLIC &&
                    isGradlePropertyType(property.returnType)
            }.map { property ->
                val isHidden = property.annotationsWithGetters.any { it is HiddenInDeclarativeDsl }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPackagingRegistry.java

        @Override
        public Optional<Packaging> lookup(String id) {
            id = id.toLowerCase(Locale.ROOT);
            // TODO: we should be able to inject a Map<String, LifecycleMapping> directly,
            // however, SISU visibility filtering can only happen when an explicit
            // lookup is performed. The whole problem here is caused by "project extensions"
            // which are bound to a project's classloader, without any clear definition
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/BUILD

        ],
    )
    
    exports_files([
        "run_lit.sh",
    ])
    
    py_strict_library(
        name = "tac",
        srcs = [
            "tac.py",
        ],
        srcs_version = "PY3",
        visibility = ["//visibility:public"],
        deps = [
            "//tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper:_pywrap_tac_wrapper",
        ],
    )
    
    proto_library(
        name = "tac_filter_proto",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top