Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for substituted (0.21 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. guava/src/com/google/common/reflect/TypeToken.java

      /** Returns the represented type. */
      public final Type getType() {
        return runtimeType;
      }
    
      /**
       * Returns a new {@code TypeToken} where type variables represented by {@code typeParam} are
       * substituted by {@code typeArg}. For example, it can be used to construct {@code Map<K, V>} for
       * any {@code K} and {@code V} type:
       *
       * <pre>{@code
       * static <K, V> TypeToken<Map<K, V>> mapOf(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/reflect/TypeToken.java

      /** Returns the represented type. */
      public final Type getType() {
        return runtimeType;
      }
    
      /**
       * Returns a new {@code TypeToken} where type variables represented by {@code typeParam} are
       * substituted by {@code typeArg}. For example, it can be used to construct {@code Map<K, V>} for
       * any {@code K} and {@code V} type:
       *
       * <pre>{@code
       * static <K, V> TypeToken<Map<K, V>> mapOf(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/14529")
        def "transform of project artifact can consume transform of external artifact whose upstream dependency has been substituted with local project"() {
            given:
            def m1 = mavenRepo.module("test", "lib", "1.2").publish()
            mavenRepo.module("test", "lib2", "1.2").dependsOn(m1).publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/html/template/escape_test.go

    			// If we do change to support that, this test should
    			// catch failures to filter out special tag names which
    			// would violate the structure preservation property --
    			// if any special tag name could be substituted, then
    			// the content could be raw text/RCDATA for some inputs
    			// and regular HTML content for others.
    			`<{{"script"}}>{{"doEvil()"}}</{{"script"}}>`,
    			`&lt;script>doEvil()&lt;/script>`,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
Back to top