Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for synthetic (0.17 sec)

  1. pilot/pkg/features/ambient.go

    		"If enabled, HBONE will be preferred when sending to destinations. ")
    
    	DefaultAllowFromWaypoint = registerAmbient(
    		"PILOT_AUTO_ALLOW_WAYPOINT_POLICY",
    		false, false,
    		"If enabled, zTunnel will receive synthetic authorization policies for each workload ALLOW the Waypoint's identity. "+
    			"Unless other ALLOW policies are created, this effectively denies traffic that doesn't go through the waypoint.")
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 00:02:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirSyntheticJavaPropertySymbol.kt

    import org.jetbrains.kotlin.analysis.api.types.KaType
    import org.jetbrains.kotlin.descriptors.Modality
    import org.jetbrains.kotlin.descriptors.Visibility
    import org.jetbrains.kotlin.fir.declarations.synthetic.FirSyntheticProperty
    import org.jetbrains.kotlin.fir.declarations.utils.isOverride
    import org.jetbrains.kotlin.fir.declarations.utils.isStatic
    import org.jetbrains.kotlin.fir.declarations.utils.modality
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top