Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 177 for synthetic (0.62 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/symbols/descriptorBased/KtFe10DescSyntheticJavaPropertySymbol.kt

    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.psi.KtProperty
    import org.jetbrains.kotlin.resolve.DescriptorUtils
    import org.jetbrains.kotlin.resolve.descriptorUtil.isExtension
    import org.jetbrains.kotlin.synthetic.SyntheticJavaPropertyDescriptor
    
    internal class KaFe10DescSyntheticJavaPropertySymbol(
        override val descriptor: SyntheticJavaPropertyDescriptor,
        override val analysisContext: Fe10AnalysisContext
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/workload.go

    		// Convert the actual Kubernetes PeerAuthentication policies to the synthetic ones
    		// by adding the prefix
    		//
    		// This is needed because the handler that produces the ConfigUpdate blindly sends
    		// the Kubernetes resource names without context of the synthetic Ambient policies
    		// TODO: Split out PeerAuthentication into a separate handler in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ResolveContext.java

         * called on a configuration that does not permit this usage.
         */
        TransformUpstreamDependenciesResolverFactory getDependenciesResolverFactory();
    
        /**
         * Returns the synthetic dependencies for this context. These dependencies are generated
         * by Gradle and not provided by the user, and are used for dependency locking and consistent resolution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassVisitorScope.java

         */
        protected void addField(int access, String fieldName, String descriptor) {
            visitField(access, fieldName, descriptor, null, null);
        }
    
        /**
         * Adds a private synthetic method to the generated type.
         */
        protected void privateSyntheticMethod(String name, String descriptor, BytecodeFragment body) {
            addMethod(ACC_PRIVATE | ACC_SYNTHETIC, name, descriptor, null, body);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/stored.rules

    classes\ that\ are\ in\ Gradle\ internal\ API\ packages\ and\ classes\ written\ in\ Java\ or\ Groovy\ and\ not\ synthetic\ classes\ should\ be\ annotated\ (directly\ or\ via\ its\ package)\ with\ @org.gradle.api.NonNullApi=internal-api-nullability.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/lostcancel/lostcancel.go

    			pass.ReportRangef(stmt, "the %s function is not used on all paths (possible context leak)", v.Name())
    
    			pos, end := ret.Pos(), ret.End()
    			// golang/go#64547: cfg.Block.Return may return a synthetic
    			// ReturnStmt that overflows the file.
    			if pass.Fset.File(pos) != pass.Fset.File(end) {
    				end = pos
    			}
    			pass.Report(analysis.Diagnostic{
    				Pos:     pos,
    				End:     end,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. pkg/config/schema/codegen/common.go

    	"istio.io/istio/pkg/config/schema/ast"
    	"istio.io/istio/pkg/test/env"
    )
    
    func Run() error {
    	inp, err := buildInputs()
    	if err != nil {
    		return err
    	}
    
    	// Include synthetic types used for XDS pushes
    	kindEntries := append([]colEntry{
    		{
    			Resource: &ast.Resource{Identifier: "Address", Kind: "Address", Version: "internal", Group: "internal"},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/firUtils.kt

     */
    internal fun FirCallableSymbol<*>.computeImportableName(useSiteSession: FirSession): FqName? {
        if (callableId.isLocal) return null
    
        // SAM constructors are synthetic, but can be imported
        if (origin is FirDeclarationOrigin.SamConstructor) return callableId.asSingleFqName()
    
        // if classId == null, callable is topLevel
        val containingClassId = callableId.classId
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/PropertyProblem.kt

    data class PropertyProblem(
        val trace: PropertyTrace,
        val message: StructuredMessage,
        val exception: Throwable? = null,
        /**
         * A failure containing stack tracing information.
         * The failure may be synthetic when the cause of the problem was not an exception.
         */
        val stackTracingFailure: Failure? = null,
        val documentationSection: DocumentationSection? = null
    )
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. pkg/config/schema/metadata.yaml

        proto: "istio.mesh.v1alpha1.MeshConfig"
        protoPackage: "istio.io/api/mesh/v1alpha1"
        synthetic: true
    
      - kind: "MeshNetworks"
        plural: "meshnetworks"
        group: ""
        version: "v1alpha1"
        proto: "istio.mesh.v1alpha1.MeshNetworks"
        protoPackage: "istio.io/api/mesh/v1alpha1"
        synthetic: true
    
      - kind: AuthorizationPolicy
        plural: "authorizationpolicies"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top