Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 99 for visibility (0.19 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/base/Kt1DescUtils.kt

            this.isMarkedNullable -> KaTypeNullability.NULLABLE
            else -> KaTypeNullability.NON_NULLABLE
        }
    
    internal val DeclarationDescriptorWithVisibility.ktVisibility: Visibility
        get() = when (visibility) {
            DescriptorVisibilities.PUBLIC -> Visibilities.Public
            DescriptorVisibilities.PROTECTED -> Visibilities.Protected
            DescriptorVisibilities.INTERNAL -> Visibilities.Internal
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/tasks/IvyDescriptorFileGenerator.java

                for (IvyConfiguration configuration : model.configurations) {
                    xmlWriter.startElement("conf")
                        .attribute("name", configuration.getName())
                        .attribute("visibility", "public");
                    if (configuration.getExtends().size() > 0) {
                        xmlWriter.attribute("extends", CollectionUtils.join(",", configuration.getExtends()));
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_tf_xla_call_module_to_stablehlo_pass.cc

          // more than once.
          if (!IsShloMainFuncOp(main_func_op)) {
            auto error_msg =
                "'main' FuncOp in XlaCallModuleOp missing or has visibility other "
                "than 'public'";
            if (main_func_op) {
              main_func_op->emitError(error_msg);
            }
            return rewriter.notifyMatchFailure(op, error_msg);
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 25 09:43:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/debug/debug.cc

      void Dump(absl::string_view name, mlir::Operation* op,
                std::string prefix = "") {
        static constexpr char kFiletypeSuffix[] = "mlir";
        // Find names of all func ops with public visibility and check whether at
        // least one of them matches `dump_func_re_`.
        llvm::SmallVector<absl::string_view> func_names;
        bool match = false;
        op->walk([&](mlir::func::FuncOp func) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

    import com.google.common.testing.ClassSanityTester.ParameterHasNoDistinctValueException;
    import com.google.common.testing.ClassSanityTester.ParameterNotInstantiableException;
    import com.google.common.testing.NullPointerTester.Visibility;
    import java.io.Serializable;
    import java.lang.reflect.InvocationTargetException;
    import java.util.AbstractList;
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    ----
    
    Note that for a property to be considered a mutable managed property, the property's getter methods must be `abstract` and have `public` or `protected` visibility.
    
    The property type must be one of the following:
    
    [cols="1,1"]
    |===
    |Property Type |Note
    
    |`Property<T>`
    |Where `T` is typically `Double`, `Integer`, `Long`, `String`, or `Bool`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/security.go

    	re(`-f(no-)?stack-(.+)`),
    	re(`-f(no-)?strict-aliasing`),
    	re(`-f(un)signed-char`),
    	re(`-f(no-)?use-linker-plugin`), // safe if -B is not used; we don't permit -B
    	re(`-f(no-)?visibility-inlines-hidden`),
    	re(`-fsanitize=(.+)`),
    	re(`-ftemplate-depth-(.+)`),
    	re(`-fvisibility=(.+)`),
    	re(`-g([^@\-].*)?`),
    	re(`-m32`),
    	re(`-m64`),
    	re(`-m(abi|arch|cpu|fpu|tune)=([^@\-].*)`),
    	re(`-m(no-)?v?aes`),
    	re(`-marm`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. tests/integration/pilot/common/traffic.go

    	check     func(src echo.Caller, opts *echo.CallOptions) echo.Checker
    	checkForN func(src echo.Caller, dst echo.Services, opts *echo.CallOptions) echo.Checker
    
    	// setting cases to skipped is better than not adding them - gives visibility to what needs to be fixed
    	skip skip
    
    	// workloadAgnostic is a temporary setting to trigger using RunForApps
    	// TODO remove this and force everything to be workoad agnostic
    	workloadAgnostic bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. pilot/pkg/model/service.go

    	// Namespace is "destination.service.namespace" attribute
    	Namespace string
    	// Labels applied to the service
    	Labels map[string]string
    	// ExportTo defines the visibility of Service in
    	// a namespace when the namespace is imported.
    	ExportTo sets.Set[visibility.Instance]
    
    	// LabelSelectors are the labels used by the service to select workloads.
    	// Applicable to both Kubernetes and ServiceEntries.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  10. pilot/pkg/xds/sds.go

    	// they cannot; instead we just exclude it. This ensures that a single bad reference does not break the whole
    	// SDS flow. The pilotSDSCertificateErrors metric and logs handle visibility into invalid references.
    	resources := filterAuthorizedResources(s.parseResources(w.ResourceNames, proxy), proxy, proxyClusterSecrets)
    
    	var results model.Resources
    	cached, regenerated := 0, 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top