Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 165 for synthetic (0.28 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    	at java.base/java.lang.reflect.Method.setAccessible(Method.java:193)
        ...
    
    // Thrown by ProjectBuilder
    org.gradle.api.GradleException: Could not inject synthetic classes.
    	at org.gradle.initialization.DefaultLegacyTypesSupport.injectEmptyInterfacesIntoClassLoader(DefaultLegacyTypesSupport.java:91)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    		}
    
    		if len(m.Errs) > 0 {
    			// In addition to any packages that were actually resolved from the
    			// pattern, there was some error in resolving the pattern itself.
    			// Report it as a synthetic package.
    			p := new(Package)
    			p.ImportPath = m.Pattern()
    			// Pass an empty ImportStack and nil importPos: the error arose from a pattern, not an import.
    			var stk ImportStack
    			var importPos []token.Position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

                else -> tree.unsupported(node, UnsupportedLanguageFeature.UnsupportedOperationInBinaryExpression)
            }
        }
    
        private
        fun referenceExpression(node: LighterASTNode): Syntactic<String> = Syntactic(node.asText)
    
        private
        fun packageNode(tree: LightTree): LighterASTNode =
            toplevelNode(tree, PACKAGE_DIRECTIVE)
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/SerializedLambdaQueries.java

    import java.util.Optional;
    
    class SerializedLambdaQueries {
        private static final String GENERATED_LAMBDA_CLASS_SUFFIX = "$$Lambda";
    
        public static boolean isLambdaClass(Class<?> type) {
            return type.isSynthetic() && isLambdaClassName(type.getName());
        }
    
        public static boolean isLambdaClassName(String className) {
            return className.contains(GENERATED_LAMBDA_CLASS_SUFFIX);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 20:38:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/DefaultProjectSchemaProvider.kt

        get() = isKotlinVisible && kotlin.visibility == KVisibility.PUBLIC
    
    
    private
    val Class<*>.isKotlinVisible: Boolean
        get() = isPublic && !isLocalClass && !isAnonymousClass && !isSynthetic
    
    
    private
    val Class<*>.isPublic
        get() = Modifier.isPublic(modifiers)
    
    
    private
    class ProjectSchemaNamedDomainObjectSchema(
        private val objectName: String,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. src/go/ast/scope.go

    // refers to a field of T, whereas for the other types it refers to a
    // value in the environment.
    //
    // New programs should set the [parser.SkipObjectResolution] parser
    // flag to disable syntactic object resolution (which also saves CPU
    // and memory), and instead use the type checker [go/types] if object
    // resolution is desired. See the Defs, Uses, and Implicits fields of
    // the [types.Info] struct for details.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

            inheritMethods(type, validationContext, methodBuilders);
    
            ImmutableSortedSet<PropertyAnnotationMetadata> propertiesMetadata;
            if (!type.isSynthetic()) {
                propertiesMetadata = extractPropertiesFrom(type, methodBuilders, validationContext);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "required": [
            "key",
            "operator"
          ],
          "type": "object"
        },
        "io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta": {
          "description": "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.",
          "properties": {
            "continue": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        for (Method method : cls.getDeclaredMethods()) {
          Invokable<?, ?> invokable = Invokable.from(method);
          invokable.setAccessible(true);
          if (invokable.isPublic() && invokable.isStatic() && !invokable.isSynthetic()) {
            builder.add(invokable);
          }
        }
        return new FactoryMethodReturnValueTester(cls, builder.build(), "public static methods");
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

        for (Method method : cls.getDeclaredMethods()) {
          Invokable<?, ?> invokable = Invokable.from(method);
          invokable.setAccessible(true);
          if (invokable.isPublic() && invokable.isStatic() && !invokable.isSynthetic()) {
            builder.add(invokable);
          }
        }
        return new FactoryMethodReturnValueTester(cls, builder.build(), "public static methods");
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top