Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 141 for VISIBILITY (0.11 sec)

  1. pilot/pkg/serviceregistry/kube/controller/controller.go

    		return true
    	}
    	if preConv == nil {
    		return !currConv.Attributes.ExportTo.Contains(visibility.None)
    	}
    	// if service are not exported, no need to push
    	if preConv.Attributes.ExportTo.Contains(visibility.None) &&
    		currConv.Attributes.ExportTo.Contains(visibility.None) {
    		return false
    	}
    	// Check if there are any changes we care about by comparing `model.Service`s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

        }
    
        interface InvisibleSetter : KaFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = InvisibleSetter::class
            val property: KaVariableSymbol
            val visibility: Visibility
            val callableId: CallableId
        }
    
        interface InnerOnTopLevelScriptClassError : KaFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = InnerOnTopLevelScriptClassError::class
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

            else -> buildString {
                val clazz = this@with::class
                val className = clazz.simpleName
                append(className)
                clazz.memberProperties.filter { it.name != "token" && it.visibility == KVisibility.PUBLIC }.ifNotEmpty {
                    joinTo(this@buildString, separator = "\n  ", prefix = ":\n  ") { property ->
                        val name = property.name
    
                        @Suppress("UNCHECKED_CAST")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/gateway_test.go

    			ExportTo:  sets.New(visibility.Private),
    		},
    	}
    	bazs2HostName := host.Name("bazs2.example.org")
    	bazs2ServiceInDefaultNamespace := &pilot_model.Service{
    		Hostname: bazs2HostName,
    		Ports: []*pilot_model.Port{{
    			Name:     "http",
    			Protocol: "HTTP",
    			Port:     8092,
    		}},
    		Attributes: pilot_model.ServiceAttributes{
    			Namespace: "default",
    			ExportTo:  sets.New(visibility.Private),
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/security.go

    	re(`-f(no-)?split-stack`),
    	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)=([^@\-].*)`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    				// a service that is not even visible within the local namespace to anyone other
    				// than the proxies of that service.
    				if isServiceEntry && visibility.Instance(e) == visibility.None {
    					exportToSet.Insert(key)
    				} else {
    					if err := visibility.Instance(key).Validate(); err != nil {
    						errs = appendErrors(errs, err)
    					} else {
    						exportToSet.Insert(key)
    					}
    				}
    			}
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. 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)
Back to top