Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for resolveDfs (0.43 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

                        services.get(FileCollectionFactory.class),
                        services.get(DependencyMetaDataProvider.class),
                        new UnknownProjectFinder("Detached resolvers do not support resolving projects"),
                        new DetachedDependencyResolutionDomainObjectContext(services.get(DomainObjectContext.class))
                    );
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. src/reflect/type.go

    	UnsafePointer: "unsafe.Pointer",
    }
    
    // resolveNameOff resolves a name offset from a base pointer.
    // The (*rtype).nameOff method is a convenience wrapper for this function.
    // Implemented in the runtime package.
    //
    //go:noescape
    func resolveNameOff(ptrInModule unsafe.Pointer, off int32) unsafe.Pointer
    
    // resolveTypeOff resolves an *rtype offset from a base type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            where:
            serviceType << [
                ProjectLayout, // not isolated
                Instantiator, // internal
            ]
        }
    
        def "injected FileSystemOperations resolves paths relative to build root directory"() {
            serviceCopiesFiles()
            buildFile << """
                def provider = gradle.sharedServices.registerIfAbsent("copier", CopyingService) {
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    		// that would result in add being non-empty returns an error before it
    		// reaches this point: The set of modules to add comes from
    		// resolveMissingImports, which in turn resolves each package by calling
    		// queryImport. But queryImport explicitly checks for -mod=readonly, and
    		// return an error.
    		panic("add is not empty")
    	}
    	return newRequirements(workspace, rs.rootModules, direct), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

         * representation of their URLs, minus authentication parameters, are
         * case insensitively and lexographically equal.
         * <br>
         * For example, assuming the server <code>angus</code> resolves to the
         * <code>192.168.1.15</code> IP address, the below URLs would result in
         * <code>SmbFile</code>s that are equal.
         *
         * <p>
         * <blockquote>
         * 
         * <pre>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top