Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 185 for ancestors (0.17 sec)

  1. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

    configureIde(TestType.CROSSVERSION)
    configureTestFixturesForCrossVersionTests()
    
    fun configureTestFixturesForCrossVersionTests() {
        // do not attempt to find projects when the plugin is applied just to generate accessors
        if (project.name != "gradle-kotlin-dsl-accessors" && project.name != "test" /* remove once wrapper is updated */) {
            dependencies {
                "crossVersionTestImplementation"(testFixtures(project(":tooling-api")))
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

                this.reason = "is not a directory"
                this
            }
    
            CannotWriteToDir ancestorIsNotDirectory(File ancestor) {
                this.problemDir = ancestor
                this.reason = "ancestor '$ancestor' is not a directory"
                this
            }
        }
    
        static class CannotWriteToFile extends ValidationMessageDisplayConfiguration<CannotWriteToFile> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/AccessorsClassPath.kt

            return UnitOfWork.Identity { identityHash }
        }
    
        override fun getWorkspaceProvider() = workspaceProvider.accessors
    
        override fun getInputFingerprinter() = inputFingerprinter
    
        override fun getDisplayName(): String = "Kotlin DSL accessors for $scriptTarget"
    
        override fun visitIdentityInputs(visitor: InputVisitor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            run 'verifyExtension'
    
            then:
            operations.hasOperation("Executing generation of dependency accessors for libs")
    
            when: "no change in settings"
            run 'verifyExtension'
    
            then: "extension is not regenerated"
            !operations.hasOperation("Executing generation of dependency accessors for libs")
    
            when: "adding a library to the model"
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    //
    // Errors for the current node should be ratcheted if one of the following is true:
    //  1. The current node is correlatable, and it is equal to its old value
    //  2. The current node has a correlatable ancestor, and the ancestor is equal
    //     to its old value.
    func (r ratchetingOptions) shouldRatchetError() bool {
    	if r.currentCorrelation != nil {
    		return r.currentCorrelation.CachedDeepEqual()
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/KotlinBuildScriptModelBuilder.kt

    import org.gradle.internal.resource.TextFileResourceLoader
    import org.gradle.internal.time.Time.startTimer
    import org.gradle.kotlin.dsl.*
    import org.gradle.kotlin.dsl.accessors.AccessorsClassPath
    import org.gradle.kotlin.dsl.accessors.ProjectAccessorsClassPathGenerator
    import org.gradle.kotlin.dsl.accessors.Stage1BlocksAccessorClassPathGenerator
    import org.gradle.kotlin.dsl.execution.EvalOption
    import org.gradle.kotlin.dsl.precompile.PrecompiledScriptDependenciesResolver
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top