Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for resolveDfs (0.14 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            _ * resolver.resolve(_) >> { File f -> f }
                return new DefaultConfigurableFileCollection("<display>", resolver, taskDependencyFactory, patternSetFactory, host).from(files)
        }
    
        def "resolves specified files using file resolver"() {
            given:
            def file1 = new File("1")
            def file2 = new File("2")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                    // implicit invoke call. For example,
                    // ```
                    // fun test(f: () -> Unit) {
                    //   f() // calleeExpression `f` resolves to the local variable access, while `f()` resolves to the implicit `invoke` call.
                    //       // This way `f` is also the explicit receiver of this implicit `invoke` call
                    // }
                    // ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            then:
            configuration.dependencies as Set == [projectDependency] as Set
            configuration.allDependencies as Set == [dependency, projectDependency] as Set
        }
    
        def "resolves files"() {
            def configuration = conf()
            def fileSet = [new File("somePath")] as Set
    
            given:
            resolver.resolveGraph(configuration) >> graphResolved(fileSet)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    	v, ok := r.initialVersion[mPath]
    	if !ok {
    		return "none"
    	}
    	return v
    }
    
    // selected returns the version of the module with the given path that is
    // selected in the resolver's current build list.
    func (r *resolver) selected(mPath string) (version string) {
    	v, ok := r.buildListVersion[mPath]
    	if !ok {
    		return "none"
    	}
    	return v
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

    		implementation project(':impl')
    	}
    
    	configurations.all { resolutionStrategy.failOnVersionConflict() }
    }
    """
    
            expect:
            run("tool:dependencies")
        }
    
        void "resolves module version conflicts to the latest version by default"() {
            mavenRepo.module("org", "foo", '1.3.3').publish()
            mavenRepo.module("org", "foo", '1.4.4').publish()
    
            createDirs("api", "impl", "tool")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * <p>The directory containing the project build file.</p>
         *
         * @return The project directory. Never returns null.
         */
        File getProjectDir();
    
        /**
         * <p>Resolves a file path relative to the project directory of this project. This method converts the supplied path
         * based on its type:</p>
         *
         * <ul>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

                    }
                }
              }
    """
            metadataSupplierClass = 'MP'
            def supplierInteractions = new SimpleSupplierInteractions()
    
            when: "Resolves when online"
            repositoryInteractions {
                'group:projectB' {
                    expectVersionListing()
                    '1.1' {
                        withModule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                    calculatedValueContainerFactory,
                    attributesFactory,
                    instantiator
                );
            }
        }
    
        /**
         * A provider that lazily resolves this configuration.
         */
        private class ResolverResultsResolutionResultProvider implements ResolutionResultProvider<ResolverResults> {
    
            private final boolean strict;
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ppc64/asm.go

    	glink.AddUint32(ctxt.Arch, 0x7800f082) // srdi r0,r0,2
    
    	// Load the PC-rel offset of ".plt - 1b", and add it to 1b.
    	// This is stored after this stub and before the resolvers.
    	glink.AddUint32(ctxt.Arch, 0xe98b0000) // ld r12,res_0-1b-8(r11)
    	glink.AddUint32(ctxt.Arch, 0x7d6b6214) // add r11,r11,r12
    
    	// Load r12 = dynamic resolver address and r11 = DSO
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The link:{javadocPath}/org/gradle/api/tasks/TaskInputs.html#dir-java.lang.Object-[TaskInputs.dir(Object)] method can no longer be called with an argument that resolves to anything other than a single directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top