Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 157 for ancestors (0.56 sec)

  1. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/EventScope.java

    import java.lang.annotation.Target;
    
    /**
     * Attached to a listener interface to indicate which scope its events are generated in.
     *
     * <p>Events generated in a particular scope are visible to listeners in the same scope and ancestor scopes.
     * Events are not visible to listeners in descendent scopes.
     *
     * <p>This annotation is used primarily to indicate to developers the scopes where this listener are available. There is also
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/ServiceScope.java

     * Services are lifecycled with their scope, and stopped/closed when the scope is closed.
     * <p>
     * Services are visible to other services in the same scope and descendent scopes.
     * Services are not visible to services in ancestor scopes.
     * <p>
     * When a service is defined in multiple scopes, the highest scope determines the visibility.
     * The additional instances of the service in lower scopes "override" the instance from the parent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. .idea/dictionaries/Nikolay_Krasko.xml

    <component name="ProjectDictionaryState">
      <dictionary name="Nikolay.Krasko">
        <words>
          <w>accessors</w>
          <w>codeowners</w>
          <w>coroutines</w>
          <w>crossinline</w>
          <w>fqname</w>
          <w>goto</w>
          <w>gradle</w>
          <w>infos</w>
          <w>intrinsics</w>
          <w>kdoc</w>
          <w>lateinit</w>
          <w>memoize</w>
          <w>memoized</w>
          <w>multiline</w>
          <w>navigatable</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue May 23 16:52:40 UTC 2023
    - 756 bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r54/PrecompiledScriptPluginModelCrossVersionSpec.groovy

                file("project-b/src/main/kotlin/my-plugin-b.gradle.kts"),
                [dependencyB] as Set,
                [dependencyA] as Set
            )
        }
    
        def "implicit imports include type-safe accessors packages"() {
    
            given:
            withDefaultSettings()
            withBuildScript("""
                plugins {
                    `kotlin-dsl`
                }
    
                $repositoriesBlock
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/caching_authorizer.go

    }
    
    func newCachingAuthorizer(in authorizer.Authorizer) authorizer.Authorizer {
    	return &cachingAuthorizer{
    		authorizer: in,
    		decisions:  make(map[string]authzResult),
    	}
    }
    
    // The attribute accessors known to cache key construction. If this fails to compile, the cache
    // implementation may need to be updated.
    var _ authorizer.Attributes = (interface {
    	GetUser() user.Info
    	GetVerb() string
    	IsReadOnly() bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/sparsetree.go

    	return t[x.ID].parent
    }
    
    // IsAncestorEq reports whether x is an ancestor of or equal to y.
    func (t SparseTree) IsAncestorEq(x, y *Block) bool {
    	if x == y {
    		return true
    	}
    	xx := &t[x.ID]
    	yy := &t[y.ID]
    	return xx.entry <= yy.entry && yy.exit <= xx.exit
    }
    
    // isAncestor reports whether x is a strict ancestor of y.
    func (t SparseTree) isAncestor(x, y *Block) bool {
    	if x == y {
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginAccessorDeprecationWarningsTest.kt

    
    @LeaksFileHandles("Kotlin Compiler Daemon working directory")
    class PrecompiledScriptPluginAccessorDeprecationWarningsTest : AbstractPrecompiledScriptPluginTest() {
    
        @Test
        fun `generated type-safe accessors suppress deprecation warnings`() {
            // `java-gradle-plugin` adds deprecated task `ValidateTaskProperties`
            givenPrecompiledKotlinScript(
                "java-project.gradle.kts",
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/KotlinTypeStrings.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.accessors
    
    import org.gradle.api.reflect.TypeOf
    import org.gradle.kotlin.dsl.internal.sharedruntime.codegen.primitiveTypeStrings
    
    
    internal
    fun kotlinTypeStringFor(type: TypeOf<*>): String = type.run {
        when {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/SingletonProperties.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.accessors
    
    import org.gradle.api.plugins.ExtensionAware
    
    import org.gradle.kotlin.dsl.extra
    
    
    internal
    inline fun <reified T : Any> ExtensionAware.getOrCreateProperty(
        property: String,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 977 bytes
    - Viewed (0)
  10. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-extensions.gradle.kts

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import gradlebuild.basics.accessors.kotlinMainSourceSet
    import gradlebuild.kotlindsl.generator.tasks.GenerateKotlinDslPluginsExtensions
    
    plugins {
        java
    }
    
    val generatedSourcesDir = layout.buildDirectory.dir("generated-sources/kotlin")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 13:36:27 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top