Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 199 for resolveDfs (0.17 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecWithLongCommandLineIntegrationTest.groovy

            'project.javaexec'        | 'runWithJavaExec'
            'ExecOperations.javaexec' | 'runWithExecOperations'
            // The test does not work with the JavaExec task because the task resolves the executable prior to starting the process.
            // At the same time, all the cases test the same functionality of the ExecHandle implementation.
            // 'JavaExec task'           | 'run'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoSimple/AssignmentResolverTest.kt

    import org.junit.jupiter.api.Test
    import kotlin.test.assertEquals
    import kotlin.test.assertIs
    
    
    object AssignmentResolverTest {
        @Test
        fun `resolves transitive property`() {
            assignmentTrace(
                schema.resolve(
                    """
                    val myD = newD("shared")
                    val c1 = c(1)
                    c1.d = myD
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/DefaultSelectedArtifactSet.java

    import org.gradle.api.internal.artifacts.ivyservice.resolveengine.graph.results.VisitedGraphResults;
    import org.gradle.api.internal.tasks.TaskDependencyResolveContext;
    
    /**
     * Resolves a {@link ResolvedArtifactSet} into a {@link SelectedArtifactSet}.
     */
    public class DefaultSelectedArtifactSet implements SelectedArtifactSet {
        private final VisitedGraphResults graphResults;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/ConflictHandler.java

         */
        PotentialConflict registerCandidate(CANDIDATE candidate);
    
        /**
         * Informs whether there is any conflict at present
         */
        boolean hasConflicts();
    
        /**
         * Resolves next conflict and trigger provided action after the resolution
         */
        void resolveNextConflict(Action<RESULT> resolutionAction);
    
        /**
         * Indicates if the identifier is a known participant in a conflict
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 23:54:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. testing/soak/src/integTest/groovy/org/gradle/connectivity/MavenCentralDependencyResolveIntegrationTest.groovy

    import org.gradle.test.preconditions.UnitTestPreconditions
    
    @Requires(UnitTestPreconditions.Online)
    class MavenCentralDependencyResolveIntegrationTest extends AbstractIntegrationSpec {
        def "resolves a minimal dependency from Maven Central"() {
            given:
            buildFile << """
    repositories {
        mavenCentral()
        mavenCentral { // just test this syntax works.
            name = "otherCentral"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/namedresources.go

    	// resource instance is suitable. The language is as defined in
    	// https://kubernetes.io/docs/reference/using-api/cel/
    	//
    	// In addition, for each type NamedResourcesin AttributeValue there is a map that
    	// resolves to the corresponding value of the instance under evaluation.
    	// For example:
    	//
    	//    attributes.quantity["a"].isGreaterThan(quantity("0")) &&
    	//    attributes.stringslice["b"].isSorted()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultPathTranslator.java

    import java.io.File;
    import java.nio.file.Path;
    
    import org.apache.maven.api.di.Named;
    import org.apache.maven.api.di.Singleton;
    import org.apache.maven.api.services.model.*;
    
    /**
     * Resolves relative paths against a specific base directory.
     *
     */
    @Named
    @Singleton
    public class DefaultPathTranslator implements PathTranslator {
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/typeUtils.kt

    import org.jetbrains.kotlin.fir.types.abbreviatedType
    import org.jetbrains.kotlin.fir.types.toRegularClassSymbol
    
    /**
     * Returns whether [subClass] is a strict subtype of [superClass]. Resolves [subClass] to [FirResolvePhase.SUPER_TYPES].
     */
    fun isSubClassOf(subClass: FirClass, superClass: FirClass, useSiteSession: FirSession, allowIndirectSubtyping: Boolean = true): Boolean {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ResolveInputChangesStepTest.groovy

        def changes = Mock(ExecutionStateChanges)
        def optionalChanges = Optional.of(changes)
        def inputChanges = Mock(InputChangesInternal)
        def result = Mock(Result)
    
    
        def "resolves input changes when required"() {
            when:
            def returnedResult = step.execute(work, context)
            then:
            _ * work.executionBehavior >> UnitOfWork.ExecutionBehavior.INCREMENTAL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/plugin/use/internal/PluginRequestApplicator.java

    import org.gradle.plugin.management.internal.PluginRequests;
    
    import javax.annotation.Nullable;
    
    @ServiceScope(Scope.Build.class)
    public interface PluginRequestApplicator {
    
        /**
         * Resolves the given {@link PluginRequests} into the given {@link ScriptHandlerInternal#getScriptClassPath()},
         * exports the resulting classpath into the given {@link ClassLoaderScope}, closes it and then applies
         * the requested plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top