Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 308 for Accessible (0.42 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/tasks/PrintAccessors.kt

    import org.gradle.internal.serialization.Cached
    
    import org.gradle.kotlin.dsl.accessors.ProjectSchemaProvider
    import org.gradle.kotlin.dsl.accessors.TypedProjectSchema
    import org.gradle.kotlin.dsl.accessors.accessible
    import org.gradle.kotlin.dsl.accessors.accessorsFor
    import org.gradle.kotlin.dsl.accessors.fragmentsFor
    
    import org.gradle.work.DisableCachingByDefault
    import javax.inject.Inject
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. test/env.go

    // run
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that environment variables are accessible through
    // package os.
    
    package main
    
    import (
    	"os"
    	"runtime"
    )
    
    func main() {
    	ga := os.Getenv("PATH")
    	if runtime.GOOS == "plan9" {
    		ga = os.Getenv("path")
    	}
    	if ga == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:34:59 UTC 2023
    - 549 bytes
    - Viewed (0)
  5. releasenotes/notes/debug-auth.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    
    releaseNotes:
    - |
      **Updated** the Istiod debug interface to be only accessible over localhost or with proper authenciation (mTLS or JWT).
      The recommended way to access the debug interface is through `istioctl experimental internal-debug`, which handles
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 20 14:46:51 UTC 2021
    - 349 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top