Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,059 for resolveMe (0.48 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

            failure.assertHasDescription("Execution failed for task ':forceResolution'")
            failure.assertHasCause("Could not resolve all files for configuration ':resolveMe'.")
            failure.assertHasCause("Could not resolve com.squareup.okhttp3:okhttp:4.4.0.")
            assertFullMessageCorrect("""   > Could not resolve com.squareup.okhttp3:okhttp:4.4.0.
         Required by:
             project :
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    [listing]
    ----
    > Could not resolve all dependencies for configuration ':resolveMe'.
       > Could not resolve project :.
         Required by:
             project :
          > Configuration 'mismatch' in project : does not match the consumer attributes
            Configuration 'mismatch':
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. pkg/registry/admissionregistration/resolver/resolver.go

    }
    
    func (d *discoveryResourceResolver) Resolve(gvk schema.GroupVersionKind) (schema.GroupVersionResource, error) {
    	gv := gvk.GroupVersion()
    	// TODO: refactor this into an efficient gvk --> gvr resolver that remembers hits and re-resolves group/version info on misses
    	resources, err := d.client.ServerResourcesForGroupVersion(gv.String())
    	if err != nil {
    		return schema.GroupVersionResource{}, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:29:56 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/resolver.go

    			// C.struct_foo is a valid type name for packages using cgo.
    			//
    			// Detect this case, and adjust name so that the correct TypeName is
    			// resolved below.
    			if ident, _ := typ.X.(*syntax.Name); ident != nil && ident.Value == "C" {
    				// Check whether "C" actually resolves to an import of "C", by looking
    				// in the appropriate file scope.
    				var obj Object
    				for _, scope := range fileScopes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. src/go/types/resolver.go

    			// C.struct_foo is a valid type name for packages using cgo.
    			//
    			// Detect this case, and adjust name so that the correct TypeName is
    			// resolved below.
    			if ident, _ := typ.X.(*ast.Ident); ident != nil && ident.Name == "C" {
    				// Check whether "C" actually resolves to an import of "C", by looking
    				// in the appropriate file scope.
    				var obj Object
    				for _, scope := range fileScopes {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. src/go/parser/resolver.go

    // If x is an identifier, resolve attempts to resolve x by looking up
    // the object it denotes. If no object is found and collectUnresolved is
    // set, x is marked as unresolved and collected in the list of unresolved
    // identifiers.
    func (r *resolver) resolve(ident *ast.Ident, collectUnresolved bool) {
    	if ident.Obj != nil {
    		panic(r.sprintf("%v: identifier %s already declared or resolved", ident.Pos(), ident.Name))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectDependencyResolverTest.groovy

            }
            def id = newProjectId(":project")
    
            when:
            resolver.resolve(dependencyMetaData, null, null, result)
    
            then:
            1 * registry.getComponent(id) >> componentState
            1 * result.resolved(componentState, _)
            0 * result._
        }
    
        def "resolves project component"() {
            setup:
            def componentState = Mock(LocalComponentGraphResolveState)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/file/PathToFileResolver.java

     */
    
    package org.gradle.internal.file;
    
    import java.io.File;
    
    /**
     * Resolves some path object to a `File`. May or may not be able to resolve relative paths.
     */
    public interface PathToFileResolver {
        /**
         * Resolves the given path to a file.
         */
        File resolve(Object path);
    
        /**
         * Returns a resolver that resolves paths relative to the given base dir.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            when:
            configurationCacheRun(":resolve0", ":resolve1", ":resolve2", ":resolve3", ":resolve4")
    
            then:
            fixture.assertStateStored()
            assertTransformed("thing1-1.2.jar", "thing2-1.2.jar")
            output.count("result = [thing1-1.2.jar.green, thing2-1.2.jar.green]") == 5
    
            when:
            configurationCacheRun(":resolve0", ":resolve1", ":resolve2", ":resolve3", ":resolve4")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  10. src/go/ast/resolve.go

    			}
    		}
    
    		// resolve identifiers
    		if importErrors {
    			// don't use the universe scope without correct imports
    			// (objects in the universe may be shadowed by imports;
    			// with missing imports, identifiers might get resolved
    			// incorrectly to universe objects)
    			pkgScope.Outer = nil
    		}
    		i := 0
    		for _, ident := range file.Unresolved {
    			if !resolve(fileScope, ident) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top