Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 176 for inaccessible (0.17 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.proto

      //   request resource.
      //
      // The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
      // object. No other metadata properties are accessible.
      //
      // Only property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible.
      // Accessible property names are escaped according to the following rules when accessed in the expression:
      // - '__' escapes to '__underscores__'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

                    && name == methodName
                    && parameterTypes[0].isAssignableFrom(parameterType)
            }
        }.onEach { serializationMethod ->
            serializationMethod.isAccessible = true
        }.reversed()
    
    
    private
    inline fun ReadContext.decodingBeanWithId(id: Int, decode: (Any, Class<*>, BeanStateReader) -> Unit): Any {
        val beanType = readClass()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go

    	//   request resource.
    	//
    	// The `apiVersion`, `kind`, `metadata.name` and `metadata.generateName` are always accessible from the root of the
    	// object. No other metadata properties are accessible.
    	//
    	// Only property names of the form `[a-zA-Z_.-/][a-zA-Z0-9_.-/]*` are accessible.
    	// Accessible property names are escaped according to the following rules when accessed in the expression:
    	// - '__' escapes to '__underscores__'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 05 20:06:13 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         * More specifically, use -linkoffline if the external document's package-list file is not accessible or
         * does not exist at the extdocURL location but does exist at a different location,
         * which can be specified by packageListLoc (typically local). Thus, if extdocURL is accessible only on the World Wide Web,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  5. cmd/sftp-server.go

    	}
    
    	privateBytes, err := os.ReadFile(sshPrivateKey)
    	if err != nil {
    		logger.Fatal(fmt.Errorf("invalid arguments passed, private key file is not accessible: %v", err), "unable to start SFTP server")
    	}
    
    	private, err := ssh.ParsePrivateKey(privateBytes)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt

      fieldType: Class<T>,
      fieldName: String,
    ): T? {
      var c: Class<*> = instance.javaClass
      while (c != Any::class.java) {
        try {
          val field = c.getDeclaredField(fieldName)
          field.isAccessible = true
          val value = field.get(instance)
          return if (!fieldType.isInstance(value)) null else fieldType.cast(value)
        } catch (_: NoSuchFieldException) {
        }
    
        c = c.superclass
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingHelper.java

                         * plugins, yet the components provided by the extension (e.g. artifact handlers) must be
                         * accessible, i.e. we still must import the extension realm into the project realm.
                         */
                        exports = Arrays.asList(extensionRealm.getId());
                    }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    type Encoder struct {
    	scopeMemo map[*types.Scope][]types.Object // memoization of scopeObjects
    }
    
    // For returns the path to an object relative to its package,
    // or an error if the object is not accessible from the package's Scope.
    //
    // The For function guarantees to return a path only for the following objects:
    // - package-level types
    // - exported package-level non-types
    // - methods
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java

        @Test
        public void testAddFields() throws Exception {
            final BeanDesc beanDesc = new BeanDescImpl(MyBean.class);
            final FieldDesc eee = beanDesc.getFieldDesc("eee");
            assertThat(eee.getField().isAccessible(), is(true));
            final PropertyDesc pd = beanDesc.getPropertyDesc("ggg");
            assertThat(pd, is(notNullValue()));
            assertThat(pd.getPropertyName(), is("ggg"));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractDependencyMetadataRulesTest.groovy

            "maven"      | mavenComponentMetadata()
            "ivy"        | ivyComponentMetadata()
            "gradle"     | gradleComponentMetadata()
        }
    
        def "dependencies of selected variant are accessible in dependency metadata rule for #metadataType metadata"() {
            given:
            def rule = { dependencies ->
                if (supportedInMetadata(metadataType)) {
                    assert dependencies.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:39:10 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top