Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 264 for Accessible (0.21 sec)

  1. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

                is ProjectComponentIdentifier -> if (fromComponent != rootComponent.id) {
                    // Only track accessible dependencies from _transitive_ local dependencies
                    // We should not include the root variant's dependencies in the locally accessible set
                    locallyAccessible.add(to.owner)
                }
                is ModuleComponentIdentifier -> externallyAccessible.add(to.owner)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 08:59:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. src/runtime/badlinkname_linux.go

    //go:build amd64 || arm64
    
    package runtime
    
    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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:47:42 UTC 2024
    - 506 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

    
    internal
    fun typeErasure(type: String): InaccessibilityReason =
        InaccessibilityReason.TypeErasure(type)
    
    
    internal
    fun accessible(type: SchemaType): TypeAccessibility =
        TypeAccessibility.Accessible(type)
    
    
    internal
    fun inaccessible(type: SchemaType, vararg reasons: InaccessibilityReason) =
        inaccessible(type, reasons.toList())
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/lifetime/KotlinAlwaysAccessibleLifetimeToken.kt

        }
    
        override fun isAccessible(): Boolean {
            return true
        }
    
        override fun getInaccessibilityReason(): String {
            error("Getting inaccessibility reason for validity token when it is accessible")
        }
    }
    
    public object KotlinAlwaysAccessibleLifetimeTokenFactory : KaLifetimeTokenFactory() {
        override val identifier: KClass<out KaLifetimeToken> = KotlinAlwaysAccessibleLifetimeToken::class
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. 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)
  10. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/listeners/ConstantsCollectorTest.groovy

            "String"     | "\"hello\""   | "+ \"world\""
            "int"        | "1"           | "+ 2"
            "boolean"    | "true"        | "& false"
        }
    
        def "collects constants from accessible static fields as accessible dependents"() {
            given:
            String clazz = """
    class A {
        static final int STATIC_FINAL_FIELD = Constant1.CONSTANT1;
    }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 22.4K bytes
    - Viewed (0)
Back to top