Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 356 for Inaccessible (0.86 sec)

  1. pkg/api/v1/service/util.go

    }
    
    // ExternallyAccessible checks if service is externally accessible.
    func ExternallyAccessible(service *v1.Service) bool {
    	return service.Spec.Type == v1.ServiceTypeLoadBalancer ||
    		service.Spec.Type == v1.ServiceTypeNodePort ||
    		(service.Spec.Type == v1.ServiceTypeClusterIP && len(service.Spec.ExternalIPs) > 0)
    }
    
    // ExternalPolicyLocal checks if service is externally accessible and has ETP = Local.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 30 15:56:47 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanSchema.kt

        "actions",
        "enabled",
        "timeout",
        "onlyIfSpec",
        "logger",
    )
    
    
    internal
    fun AccessibleObject.makeAccessible() {
        @Suppress("deprecation")
        if (!isAccessible) isAccessible = true
    }
    
    
    private
    object Workarounds {
    
        private
        val ignoredBeanFields = arrayOf(
            // TODO:configuration-cache remove once fixed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. test/fixedbugs/bug424.dir/lib.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package lib
    
    type I interface {
    	m() string
    }
    
    type T struct{}
    
    // m is not accessible from outside this package.
    func (t *T) m() string {
    	return "lib.T.m"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 319 bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/project/interpolation/StringSearchModelInterpolator.java

                    for (Field field : fields) {
                        Class<?> type = field.getType();
                        if (isQualifiedForInterpolation(field, type)) {
                            boolean isAccessible = field.isAccessible();
                            field.setAccessible(true);
                            try {
                                try {
                                    if (String.class == type) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 15 14:24:56 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  5. src/main/resources/CLMessages.properties

    ECL0111={0} is not a file.
    ECL0112=Could not store {0}
    ECL0113=NoSuchPaddingException occurred, because {0}
    ECL0114=NoSuchAlgorithmException occurred, because {0}
    ECL0115=Failed to set accessible to the field: {0}
    ECL0116=Failed to set accessible to the method: {0}
    
    WCL0013=Protocol of URL({1}) corresponding to route package({0}) is unknown.
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/types/AbstractBuiltInTypeTest.kt

                val typeMethod = builtinTypes::class.java.methods.singleOrNull {
                    it.name == "get" + builtInTypeName.capitalizeAsciiOnly()
                }!!
                typeMethod.isAccessible = true
                return typeMethod.invoke(builtinTypes) as KaType
            }
        }
    
        object Directives : SimpleDirectivesContainer() {
            val BUILTIN_TYPE_NAME by stringDirective("name of built in type")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types_jsonschema.go

    	//
    	// The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
    	// object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.
    	//
    	// Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL
    	// expressions. This includes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  8. native-image-tests/src/main/kotlin/okhttp3/RunTests.kt

      val colorPalette =
        Class.forName("org.junit.platform.console.tasks.ColorPalette").getField("DEFAULT").apply {
          isAccessible = true
        }.get(null)
      return Class.forName(
        "org.junit.platform.console.tasks.TreePrintingListener",
      ).declaredConstructors.first()
        .apply {
          isAccessible = true
        }
        .newInstance(PrintWriter(System.out), colorPalette, Theme.UNICODE) as TestExecutionListener
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/syscall/badlinkname_unix.go

    package syscall
    
    import _ "unsafe"
    
    // As of Go 1.22, the symbols below are found to be pulled via
    // linkname in the wild. We provide a push linkname here, to
    // keep them accessible with pull linknames.
    // This may change in the future. Please do not depend on them
    // in new code.
    
    // golang.org/x/sys linknames getsockopt.
    // Do not remove or change the type signature.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 679 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types_jsonschema.go

    	//
    	// The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
    	// object and from any x-kubernetes-embedded-resource annotated objects. No other metadata properties are accessible.
    	//
    	// Unknown data preserved in custom resources via x-kubernetes-preserve-unknown-fields is not accessible in CEL
    	// expressions. This includes:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:21 UTC 2023
    - 24.7K bytes
    - Viewed (0)
Back to top