Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 126 for Inaccessible (0.46 sec)

  1. 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)
  2. src/internal/trace/base.go

    	// they don't appear in strings.
    	extraStrings   []string
    	extraStringIDs map[string]extraStringID
    	nextExtra      extraStringID
    
    	// expData contains extra unparsed data that is accessible
    	// only to ExperimentEvent via an EventExperimental event.
    	expData map[event.Experiment]*ExperimentalData
    }
    
    // addExtraString adds an extra string to the evTable and returns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptor.java

            return dependencyNode;
        }
    
        public void setDependencyNode(DependencyNode dependencyNode) {
            this.dependencyNode = dependencyNode;
        }
    
        /**
         * The map of artifacts accessible by the versionlessKey, i.e. groupId:artifactId
         *
         * @return a Map of artifacts, never {@code null}
         * @see #getArtifacts()
         */
        public Map<String, Artifact> getArtifactMap() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Apr 14 17:14:22 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/sharing_build_logic_between_subprojects.adoc

    5. *Gradle Plugin Development*:
    +
    If you are developing custom Gradle plugins for your project, `buildSrc` is a convenient place to house the plugin code.
    This makes the plugins easily accessible within your project.
    
    The `buildSrc` directory is treated as an <<composite_builds.adoc#composite_build_intro,included build>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 12:58:46 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/base/FinalizableReferenceQueueClassLoaderUnloadingTest.java

        assertNotSame(frqC, sepFrqC);
        // Check the assumptions above.
    
        // FRQ tries to load the Finalizer class (for the reference-collecting thread) in a few ways.
        // If the class is accessible to the system ClassLoader (ClassLoader.getSystemClassLoader())
        // then FRQ does not bother to load Finalizer.class through a separate ClassLoader. That happens
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/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 May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/typestring.go

    				if isTypes2 {
    					w.string(fmt.Sprintf(" /* with %s declared at %v */", t.obj.name, t.obj.Pos()))
    				} else {
    					// Can't print position information because
    					// we don't have a token.FileSet accessible.
    					w.string("/* type parameter */")
    				}
    			}
    		}
    
    	case *Alias:
    		w.typeName(t.obj)
    		if list := t.targs.list(); len(list) != 0 {
    			// instantiated type
    			w.typeList(list)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/go/types/typestring.go

    				if isTypes2 {
    					w.string(fmt.Sprintf(" /* with %s declared at %v */", t.obj.name, t.obj.Pos()))
    				} else {
    					// Can't print position information because
    					// we don't have a token.FileSet accessible.
    					w.string("/* type parameter */")
    				}
    			}
    		}
    
    	case *Alias:
    		w.typeName(t.obj)
    		if list := t.targs.list(); len(list) != 0 {
    			// instantiated type
    			w.typeList(list)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    consumableVariant("runtime", LibraryElements.JAR, Bundling.EXTERNAL, listOf(coreRuntimeOnly, pluginsRuntimeOnly), runtimeApiInfoJar, gradleApiKotlinExtensionsJar)
    // To make all source code of a distribution accessible transitively
    consumableSourcesVariant("transitiveSources", listOf(coreRuntimeOnly, pluginsRuntimeOnly), gradleApiKotlinExtensions.map { it.destinationDirectory })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            fixture.assertProjectsConfigured(":", ":a", ":b", ":b:child")
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "extra properties defined in parent project are accessible to child"() {
            createDirs("a", "a/child")
            settingsFile << "include 'a', 'a:child'"
            file('a/build.gradle') << """
    ext.foo = "Moo!!!"
    """
            file('a/child/build.gradle') << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top