Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 177 for synthetic (0.18 sec)

  1. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

              },
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbol.kt

         * A Kotlin declaration came from some Java source file
         */
        JAVA_SOURCE,
    
        /**
         * A Kotlin declaration came from some Java library
         */
        JAVA_LIBRARY,
    
        /**
         * A synthetic function that is called as a lambda argument when creating a SAM interface object, e.g.,
         * ```
         * val isEven = <caret>IntPredicate { it % 2 == 0 }
         * ```
         */
        SAM_CONSTRUCTOR,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SymbolInfoProvider.kt

    import org.jetbrains.kotlin.resolve.deprecation.SimpleDeprecationInfo
    import org.jetbrains.kotlin.resolve.jvm.annotations.hasJvmFieldAnnotation
    import org.jetbrains.kotlin.resolve.lazy.ForceResolveUtil
    import org.jetbrains.kotlin.synthetic.SyntheticJavaPropertyDescriptor
    
    internal class KaFe10SymbolInfoProvider(
        override val analysisSession: KaFe10Session
    ) : KaSymbolInfoProvider(), KaFe10SessionComponent {
        override val token: KaLifetimeToken
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirKotlinPropertySymbol.kt

    import org.jetbrains.kotlin.fir.containingClassLookupTag
    import org.jetbrains.kotlin.fir.declarations.FirDeclarationOrigin
    import org.jetbrains.kotlin.fir.declarations.FirResolvePhase
    import org.jetbrains.kotlin.fir.declarations.synthetic.FirSyntheticProperty
    import org.jetbrains.kotlin.fir.declarations.utils.*
    import org.jetbrains.kotlin.fir.symbols.impl.FirPropertySymbol
    import org.jetbrains.kotlin.fir.symbols.impl.FirSyntheticPropertySymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__rbac.authorization.k8s.io__v1_openapi.json

              },
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  6. src/net/http/http.go

    // HTTP/2 server push. For more background, see
    // https://tools.ietf.org/html/rfc7540#section-8.2.
    type Pusher interface {
    	// Push initiates an HTTP/2 server push. This constructs a synthetic
    	// request using the given target and options, serializes that request
    	// into a PUSH_PROMISE frame, then dispatches that request using the
    	// server's request handler. If opts is nil, default options are used.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

              },
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/alias.go

    	if check != nil {
    		check.needsCleanup(a)
    	}
    
    	return a
    }
    
    // newAliasInstance creates a new alias instance for the given origin and type
    // arguments, recording pos as the position of its synthetic object (for error
    // reporting).
    func (check *Checker) newAliasInstance(pos syntax.Pos, orig *Alias, targs []Type, ctxt *Context) *Alias {
    	assert(len(targs) > 0)
    	obj := NewTypeName(pos, orig.obj.pkg, orig.obj.name, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. src/go/types/alias.go

    	if check != nil {
    		check.needsCleanup(a)
    	}
    
    	return a
    }
    
    // newAliasInstance creates a new alias instance for the given origin and type
    // arguments, recording pos as the position of its synthetic object (for error
    // reporting).
    func (check *Checker) newAliasInstance(pos token.Pos, orig *Alias, targs []Type, ctxt *Context) *Alias {
    	assert(len(targs) > 0)
    	obj := NewTypeName(pos, orig.obj.pkg, orig.obj.name, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

        ).as("classes written in Java or Groovy");
    
        DescribedPredicate<JavaClass> not_synthetic_classes = new DescribedPredicate<JavaClass>("not synthetic classes") {
            @Override
            public boolean test(JavaClass javaClass) {
                return !javaClass.getModifiers().contains(JavaModifier.SYNTHETIC);
            }
        };
    
        DescribedPredicate<JavaMember> not_written_in_kotlin = declaredIn(classes_not_written_in_kotlin)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top