Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 82 for resolveDfs (0.32 sec)

  1. src/go/types/api.go

    type ArgumentError struct {
    	Index int
    	Err   error
    }
    
    func (e *ArgumentError) Error() string { return e.Err.Error() }
    func (e *ArgumentError) Unwrap() error { return e.Err }
    
    // An Importer resolves import paths to Packages.
    //
    // CAUTION: This interface does not support the import of locally
    // vendored packages. See https://golang.org/s/go15vendor.
    // If possible, external implementations should implement [ImporterFrom].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

                .withTasks("checkSystemPropertyGradleUserHomeHasPrecedence")
                .run()
        }
    
        @Requires([UnitTestPreconditions.Symlinks, IntegTestPreconditions.NotEmbeddedExecutor])
        def "resolves links when determining home directory"() {
            when:
            def script = file('bin/my app')
            script.parentFile.createDir()
            script.createLink(distribution.gradleHomeDir.file('bin/gradle'))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/UnsafeConfigurationResolutionDeprecationIntegrationTest.groovy

            succeeds(":resolve")
        }
    
        @ToBeFixedForConfigurationCache(because = "uses Configuration API at runtime")
        def "exception when non-gradle thread resolves dependency graph"() {
            mavenRepo.module("test", "test-jar", "1.0").publish()
    
            settingsFile << """
                rootProject.name = "foo"
            """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/internal/reflectlite/type.go

     */
    
    // 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: Tue May 07 17:01:54 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

        /**
         * Generates a `repositories` block pointing to the standard maven repo fixture.
         *
         * This is often required for running with configuration cache enabled, as
         * configuration cache eagerly resolves dependencies when storing the classpath.
         */
        protected String mavenTestRepository(GradleDsl dsl = GROOVY) {
            """
            repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

    import org.eclipse.aether.version.Version;
    import org.eclipse.aether.version.VersionScheme;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * Resolves a version for a plugin.
     *
     * @since 3.0
     */
    @Named
    @Singleton
    public class DefaultPluginVersionResolver implements PluginVersionResolver {
        private static final String REPOSITORY_CONTEXT = "plugin";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 09 20:17:59 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/scope.h

      // TODO(josh11b, keveman): Make this faster; right now it converts
      // Graph->GraphDef->Graph.  This cleans up the graph (e.g. adds
      // edges from the source and to the sink node, resolves back edges
      // by name), and makes sure the resulting graph is valid.
      Status ToGraph(
          Graph* g, GraphConstructorOptions opts = GraphConstructorOptions{}) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleDependencyResolver.java

    import org.eclipse.aether.util.filter.AndDependencyFilter;
    import org.eclipse.aether.util.filter.ScopeDependencyFilter;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
     * <p>
     * Resolves dependencies for the artifacts in context of the lifecycle build
     * </p>
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     * @since 3.0
     */
    @Named
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // resource instance is suitable. The language is as defined in
      // https://kubernetes.io/docs/reference/using-api/cel/
      //
      // In addition, for each type in NamedResourcesAttributeValue 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: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    * implementing the required code yourself in your project
    * copying the required code from the library (with attribution!) if it is open source
    
    === Optimize repository order
    
    When Gradle resolves dependencies, it searches through each repository in the declared order.
    To reduce the time spent searching for dependencies, declare the repository hosting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top