Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 319 for VISIBILITY (0.2 sec)

  1. pkg/ctrlz/assets/static/css/all.css

    header .navbar-dark .navbar-nav .nav-link.active:active {
        color: #fff
    }
    
    body.theme-dark i.dark {
        visibility: visible
    }
    
    body.theme-dark i.light {
        visibility: hidden
    }
    
    body.theme-light i.dark {
        visibility: hidden
    }
    
    body.theme-light i.light {
        visibility: visible
    }
    
    #navbar-links {
        position: static
    }
    
    #search_form {
        position: static;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ServiceScope.java

     * Services are visible to other services in the same scope and descendent scopes.
     * Services are not visible to services in ancestor scopes.
     * <p>
     * When a service is defined in multiple scopes, the highest scope determines the visibility.
     * The additional instances of the service in lower scopes "override" the instance from the parent
     * for their scope and its children.
     *
     * @see Scope
     */
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/psiBased/KtFe10PsiNamedClassOrObjectSymbol.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<KaNamedClassOrObjectSymbol> = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/func.cc

    using ::tensorflow::kImportModelDefaultGraphFuncName;
    
    // Returns true iff the function's symbol is public.
    bool IsPublicFuncOp(func::FuncOp func_op) {
      return SymbolTable::getSymbolVisibility(&*func_op) ==
             SymbolTable::Visibility::Public;
    }
    
    }  // namespace
    
    func::FuncOp FindMainFuncOp(ModuleOp module_op) {
      if (const auto main_func_op = module_op.lookupSymbol<func::FuncOp>(
              kImportModelDefaultGraphFuncName);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 19 06:55:11 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/BUILD

            "//tensorflow/compiler/mlir/quantization/stablehlo:quantization_config_proto",
        ],
        visibility = ["//visibility:public"],
    )
    
    # copybara:uncomment_begin(google-only)
    # py_proto_library(
    #     name = "quantization_options_py_pb2",
    #     api_version = 2,
    #     visibility = ["//visibility:public"],
    #     deps = [":quantization_options_proto"],
    # )
    # copybara:uncomment_end
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/public/BUILD

            "saved_model_api.h",
            "signature_def_function.h",
            "signature_def_function_metadata.h",
            "signature_def_param.h",
            "signature_def_param_list.h",
            "tensor_spec.h",
        ],
        visibility = ["//tensorflow/c/experimental/saved_model/internal:__pkg__"],
    )
    
    # The purpose of this header is to provide insulation against
    # future changes where we rename/move a public header, without
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 17 15:20:54 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurator.java

     * is mapped to an equally named property of the bean and converted. The properties of the bean are supposed to either
     * have a public setter or be backed by an equally named field (of any visibility).
     *
     * @since 3.0
     */
    public interface BeanConfigurator {
    
        /**
         * Performs the specified bean configuration.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/tests/BUILD

            for (bench_name, _, _, _) in tfcompile_bench_tfmatmul
        ],
        visibility = ["//visibility:public"],
    )
    
    test_suite(
        name = "all_tfmatmul_mlir_benchmarks",
        tags = ["manual"],
        tests = [
            (":%s_mlir_test" % bench_name)
            for (bench_name, _, _, _) in tfcompile_bench_tfmatmul
        ],
        visibility = ["//visibility:public"],
    )
    
    [[
        genrule(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/functional/src/main/java/org/gradle/internal/lazy/LockingLazy.java

     */
    @ThreadSafe
    class LockingLazy<T> implements Lazy<T> {
        @Nullable
        private volatile Supplier<T> supplier;
        private volatile boolean initialized;
        // "value" does not need to be volatile;
        // visibility piggybacks on volatile read of "initialized".
        private T value;
    
        public LockingLazy(Supplier<T> supplier) {
            this.supplier = supplier;
        }
    
        @Override
        public T get() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. pkg/apis/flowcontrol/v1beta3/defaults.go

    // of the roundtrip annotation in order to determine whether the user has
    // specified a zero value for the 'NominalConcurrencyShares' field,
    // the defaulting logic needs visibility to the annotations field.
    func SetDefaults_PriorityLevelConfiguration(in *v1beta3.PriorityLevelConfiguration) {
    	if limited := in.Spec.Limited; limited != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top