Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for substituted (0.6 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                        conf "org.utils:dep2:2.0"
                    }
    
                    configurations.conf.resolutionStrategy.dependencySubstitution {
                        substitute module("org.utils:dep1:1.5") using project(":dep1")
                        substitute module("org.utils:dep2:1.5") using project(":dep2")
                    }
                }
    """
    
            when:
            run ":impl:checkDeps"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Preconditions.java

       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
       * @param errorMessageArgs the arguments to be substituted into the message template. Arguments
       *     are converted to strings using {@link String#valueOf(Object)}.
       * @throws IllegalArgumentException if {@code expression} is false
       */
      public static void checkArgument(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Preconditions.java

       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
       * @param errorMessageArgs the arguments to be substituted into the message template. Arguments
       *     are converted to strings using {@link String#valueOf(Object)}.
       * @throws IllegalArgumentException if {@code expression} is false
       */
      public static void checkArgument(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                subjectName == "producer.jar (project :producer)"
            }
    
            checkExecuteTransformWorkOperations(executePlannedStepOp, 1)
        }
    
        def "planned transform for external dependency substituted by included build"() {
            createDirs("included/nested-producer")
            file("included/settings.gradle") << """
                include 'nested-producer'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

        }
    
        @Issue("gradle/gradle#8944")
        def 'verify that cleaning up constraints no longer causes a ConcurrentModificationException'() {
            given:
            // Direct dependency with transitive to be substituted by project
            def project = mavenRepo.module('org', 'project', '1.0')
            mavenRepo.module('org', 'direct', '1.0').dependsOn(project).publish()
    
            // Updated version no longer depends on project
    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. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    				template = rt
    			} else {
    				st.failEarlier("substituted template parameter not in scope of template", st.off-off)
    			}
    			if template == nil {
    				// This template parameter is within
    				// the scope of a cast operator.
    				return &TemplateParam{Index: index, Template: nil}
    			}
    
    			if index >= len(template.Args) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/type.go

    		Offset: BADWIDTH,
    	}
    	if typ == nil {
    		base.Fatalf("typ is nil")
    	}
    	return f
    }
    
    // SubstAny walks t, replacing instances of "any" with successive
    // elements removed from types.  It returns the substituted type.
    func SubstAny(t *Type, types *[]*Type) *Type {
    	if t == nil {
    		return nil
    	}
    
    	switch t.kind {
    	default:
    		// Leave the type unchanged.
    
    	case TANY:
    		if len(*types) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            var isImplicitInvoke = false
    
            // TODO: Ideally, we should get the substitutor from the candidate. But it seems there is no way to get the substitutor from the
            //  candidate, `Candidate.substitutor` is not complete. maybe we can carry over the final substitutor if it's available from
            //  body resolve phase?
            val substitutor = when (fir) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    For example, a dependency substitution rule `substitute(project(':a')).with(project(':b'))` should be replaced with
    `substitute(project(':a')).using(project(':b'))`.
    With chaining you can, for example, add a reason for a substitution like this: `substitute(project(':a')).using(project(':b')).because("a reason")`.
    
    [[java_exec_properties]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                boolean transitive = (transitiveValue == null) || Boolean.parseBoolean(transitiveValue);
    
                String name = substitute(attributes.getValue("name"));
                String branch = substitute(attributes.getValue("branch"));
                String branchConstraint = substitute(attributes.getValue("branchConstraint"));
                String rev = substitute(attributes.getValue("rev"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top