Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 118 for getPerm (0.12 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/dependencyConfigurationSchema.kt

            registerObjectConversionComponent(component)
        }
    }
    
    
    /**
     * Introduces functions for registering dependencies, such as `implementation(...)`, as member functions of
     * types with getters returning [DependencyCollector] in the schema.
     * Resolves such functions at runtime, if used with object conversion.
     */
    private
    class DependencyCollectorsComponent : AnalysisSchemaComponent, ObjectConversionComponent {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/symbols/pointers/KtPropertyAccessorSymbolPointer.kt

        @Deprecated("Consider using org.jetbrains.kotlin.analysis.api.KaSession.restoreSymbol")
        override fun restoreSymbol(analysisSession: KaSession): KaPropertyGetterSymbol? {
            return restorePropertySymbol(analysisSession)?.getter
        }
    }
    
    @KaAnalysisApiInternals
    class KaPropertySetterSymbolPointer(
        propertySymbolPointer: KaSymbolPointer<KaPropertySymbol>,
    ) : KaPropertyAccessorSymbolPointer<KaPropertySetterSymbol>(propertySymbolPointer) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ReplacedAccessor.java

    import java.lang.annotation.Target;
    
    @Retention(RetentionPolicy.CLASS)
    @Target({ElementType.ANNOTATION_TYPE})
    public @interface ReplacedAccessor {
    
        enum AccessorType {
            GETTER,
            SETTER
        }
    
        AccessorType value();
    
        /**
         * The name of the accessor, e.g. `getDestinationDir` or `setDestinationDir`
         */
        String name();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. tests/integration/security/ca_custom_root/main_test.go

    			config = deployment.Config{
    				Namespaces: []namespace.Getter{
    					namespace.Future(&echo1NS),
    				},
    				Configs: echo.ConfigFuture(&customConfig),
    			}
    			err := addDefaultConfig(ctx, config, &customConfig)
    			if err != nil {
    				return err
    			}
    			return nil
    		}).
    		Setup(deployment.SetupSingleNamespace(&apps, deployment.Config{
    			Namespaces: []namespace.Getter{
    				namespace.Future(&echo1NS),
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/DependencyCollectorFunctionExtractorAndRuntimeResolver.kt

            val runtimeFunction: DeclarativeRuntimeFunction,
        )
    
        private
        sealed interface DependencyCollectorAccessor : (Any) -> DependencyCollector {
            data class Getter(val getterFunction: KFunction<*>) : DependencyCollectorAccessor {
                override fun invoke(receiver: Any): DependencyCollector = getterFunction.call(receiver) as DependencyCollector
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    The property getter method must be `public` or `protected`. The method can be `abstract` or, in cases where this isn't possible, can have a dummy method body.
    The method body is discarded.
    
    Here is an example that shows a task type that receives a two services via property getter methods:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

             * (via generateReflectiveAccessForGetter) and it is called for the private access member lowered to the getter/setter call.
             * If a private property has no getter/setter (the typical situation for simple private properties without explicitly defined
             * getter/setter) then this method is not used at all. Instead
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 08:42:45 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  8. pkg/controller/podgc/gc_controller_test.go

    			var patchAction clienttesting.PatchAction
    			var deleteAction clienttesting.DeleteAction
    
    			for _, action := range actions {
    				if action.GetVerb() == "patch" {
    					patchAction = action.(clienttesting.PatchAction)
    				}
    
    				if action.GetVerb() == "delete" {
    					deleteAction = action.(clienttesting.DeleteAction)
    				}
    			}
    
    			if patchAction != nil && test.expectedPatchedPod == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/results/DefaultVisitedGraphResultsTest.groovy

            visitFailures(results1) == []
            visitFailures(results2) == [throwable]
            visitFailures(results3) == [resolveEx]
            visitFailures(results4) == [throwable, resolveEx]
        }
    
        def "getters return the values passed to the constructor"() {
            given:
            def resolveEx = Mock(ResolveException)
            def unresolved = Mock(UnresolvedDependency)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/tasks/Destroys.java

    import java.lang.annotation.Target;
    
    /**
     * <p>Marks a property as specifying a file or directory that a task destroys.
     * The file or directory belongs to another task.</p>
     *
     * <p>This annotation should be attached to the getter method or the field for the property.</p>
     *
     * <p>This will cause the task to have exclusive access to this file or directory while running.  This means
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 03:14:53 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top