Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 356 for Inaccessible (0.37 sec)

  1. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/SourceFolderTest.groovy

                            <attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="mynative"/>
                        </attributes>
                        <accessrules>
                            <accessrule kind="nonaccessible" pattern="secret**"/>
                        </accessrules>
                    </classpathentry>'''
    
        def canReadFromXml() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/LibraryTest.groovy

                                <attribute name="javadoc_location" value="jar:%FILE_URI%!/"/>
                            </attributes>
                            <accessrules>
                                <accessrule kind="nonaccessible" pattern="secret**"/>
                            </accessrules>
                        </classpathentry>'''
        final fileReferenceFactory = new FileReferenceFactory()
    
        String platformXml;
    
        def setup(){
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/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: Fri Nov 03 22:23:23 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. errors.go

    	// ErrModelValueRequired model value required
    	ErrModelValueRequired = errors.New("model value required")
    	// ErrModelAccessibleFieldsRequired model accessible fields required
    	ErrModelAccessibleFieldsRequired = errors.New("model accessible fields required")
    	// ErrSubQueryRequired sub query required
    	ErrSubQueryRequired = errors.New("sub query required")
    	// ErrInvalidData unsupported data
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Apr 26 02:53:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. pilot/pkg/xds/endpoints/ep_filters_test.go

    					{Address: "2.2.2.2", Weight: 6},
    					// 2 endpoints on network2, cluster2b
    					{Address: "2.2.2.20", Weight: 6},
    					{Address: "2.2.2.21", Weight: 6},
    					// 1 endpoint on network4 with no gateway (i.e. directly accessible)
    					{Address: "40.0.0.1", Weight: 6},
    				},
    				Weight: 42,
    			},
    		},
    		wantWorkloadMetadata: []string{
    			";ns;example;;cluster1a",
    			";ns;example;;cluster1a",
    			";ns;example;;cluster1b",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top