Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for resolveRed (2.25 sec)

  1. kotlin-js-store/yarn.lock

    # yarn lockfile v1
    
    
    "@colors/colors@1.5.0":
      version "1.5.0"
      resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5da43d25f97bdbd9"
      integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==
    
    "@discoveryjs/json-ext@^0.5.0":
      version "0.5.7"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            given:
            resolver.resolveGraph(configuration) >> graphResolved(fileSet)
    
            when:
            def resolved = configuration.resolve()
    
            then:
            resolved == fileSet
            configuration.state == RESOLVED
        }
    
        def "get as path throws failure resolving"() {
            def configuration = conf()
    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

    	}
    	r.resolvedVersion[m.Path] = versionReason{m.Version, q}
    	q.resolved = append(q.resolved, m)
    }
    
    // updateBuildList updates the module loader's global build list to be
    // consistent with r.resolvedVersion, and to include additional modules
    // provided that they do not conflict with the resolved versions.
    //
    // If the additional modules conflict with the resolved versions, they will be
    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. src/go/printer/testdata/parser.go

    }
    
    func (p *parser) declare(decl any, scope *ast.Scope, kind ast.ObjKind, idents ...*ast.Ident) {
    	for _, ident := range idents {
    		assert(ident.Obj == nil, "identifier already declared or resolved")
    		if ident.Name != "_" {
    			obj := ast.NewObj(kind, ident.Name)
    			// remember the corresponding declaration for redeclaration
    			// errors and global variable resolution/typechecking phase
    			obj.Decl = decl
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                } else {
                    DeprecationLogger.deprecateBehaviour("Resolution of the configuration " + identityPath.toString() + " was attempted from a context different than the project context. Have a look at the documentation to understand why this is a problem and how it can be resolved.")
                        .willBecomeAnErrorInGradle9()
    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/groovy/scripts/internal/GradleResolveVisitor.java

            }
            currentClass.setUsingGenerics(true);
            boolean resolved = true;
            for (GenericsType type : types) {
                // attempt resolution on all types, so don't short-circuit and stop if we've previously failed
                resolved = resolveGenericsType(type) && resolved;
            }
            return resolved;
        }
    
        private void resolveGenericsHeader(GenericsType[] types) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         * @return paths of all artifacts placed on the classpath.
         * @throws DependencyResolutionRequiredException if an artifact file is used, but has not been resolved
         */
        private List<String> getClasspathElements(final Predicate<String> scopeFilter, final boolean includeTestDir)
                throws DependencyResolutionRequiredException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                }
                withoutModuleMetadata {
                    // Constraints cannot be published to Ivy files. Since we publish the _declared_ dependency
                    // versions and not the resolved ones, this can't be resolved
                    shouldFail {
                        assertHasCause 'Could not resolve all files for configuration'
                        assertHasCause 'Could not find commons-collections:commons-collections:.'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * <li>A {@link Provider} of any supported type. The provider's value is resolved recursively.</li>
         *
         * <li>A {@link org.gradle.api.resources.TextResource}.</li>
         *
         * <li>A Groovy {@link Closure} or Kotlin function that returns any supported type. The closure's return value is resolved recursively.</li>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This hook is only executed after a configuration is fully resolved but not when it is partially resolved for computing task dependencies.
    
    Consider the following code that showcases the deprecated behavior:
    
    =====
    [.multi-language-sample]
    ======
    .build.gradle.kts
    [source,kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top