Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 171 for ancestors (0.61 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionCause.java

         */
        CONSTRAINT("constraint"),
    
        /**
         * This component was selected because it was requested by a parent with a strict version.
         *
         * @since 6.0
         */
        BY_ANCESTOR("by ancestor");
    
        private final String defaultReason;
    
        ComponentSelectionCause(String defaultReason) {
    
            this.defaultReason = defaultReason;
        }
    
        public String getDefaultReason() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 14:58:55 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. platforms/core-runtime/native/src/jmh/java/org/gradle/internal/nativeintegration/filesystem/FileMetadataAccessorBenchmark.java

    @SuppressWarnings("Since15")
    @Threads(2)
    @Warmup(iterations = 5)
    @Measurement(iterations = 5)
    @State(Scope.Benchmark)
    public class FileMetadataAccessorBenchmark {
        private static final Map<String, FileMetadataAccessor> ACCESSORS = ImmutableMap.<String, FileMetadataAccessor>builder()
            .put(FallbackFileMetadataAccessor.class.getSimpleName(), new FallbackFileMetadataAccessor())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/DefaultPackageTypesTest.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.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.MatcherAssert.assertThat
    
    import org.junit.Test
    
    
    class DefaultPackageTypesTest : TestWithClassPath() {
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestTaskExecutionTracker.java

        TestTaskExecutionTracker(BuildOperationAncestryTracker ancestryTracker) {
            this.ancestryTracker = ancestryTracker;
        }
    
        /**
         * Returns the path for the test task that is an ancestor of the given build operation.
         */
        public String getTaskPath(OperationIdentifier buildOperationId) {
            return ancestryTracker.findClosestExistingAncestor(buildOperationId, runningTasks::get).get();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top