Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 566 for substituted (0.15 sec)

  1. src/cmd/gofmt/doc.go

    	pattern -> replacement
    
    Both pattern and replacement must be valid Go expressions.
    In the pattern, single-character lowercase identifiers serve as
    wildcards matching arbitrary sub-expressions; those expressions
    will be substituted for the same identifiers in the replacement.
    
    When gofmt reads from standard input, it accepts either a full Go program
    or a program fragment.  A program fragment must be a syntactically
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  2. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/VersionMappingComponentDependencyResolver.java

            // 1. the graph used to get the resolved version has nothing to do with the dependencies we're trying to get versions for (likely user error)
            // 2. the graph contains first-level dependencies which have been substituted (likely) so we're going to iterate on dependencies instead
            for (DependencyResult dependencyResult : allDependencies) {
                if (dependencyResult instanceof ResolvedDependencyResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/DependencyLockingGraphVisitor.java

                    new LockOutOfDateException("Did not resolve '" + forcedModule.getDisplayName() + "' which has been forced / substituted to a different version: '" + entry.getValue() + "'")));
            }
            return completedFailures;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildNestingIntegrationTest.groovy

            then:
            result.assertTaskExecuted(":buildC:jar")
            result.assertTaskExecuted(":buildB:jar")
            result.assertTaskExecuted(":jar")
        }
    
        def "a nested included build is substituted into all other builds"() {
            given:
            dependency(buildA, "org.test:buildB:1.2")
            dependency(buildA, "org.test:buildC:1.2")
    
            def buildC = singleProjectBuild("buildC") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         *
         * Consider the following code
         * ```
         * fun foo(list: List<String>) {
         *      list // get KtTypeScope for it
         * }
         *```
         *
         * Inside the `LIST_KT_ELEMENT.getKaType().getTypeScope()` would contain the `get(i: Int): String` method with substituted type `T = String`
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Strings.java

       *     null} is treated as the four-character string {@code "null"}.
       * @param args the arguments to be substituted into the message template. The first argument
       *     specified is substituted for the first occurrence of {@code "%s"} in the template, and so
       *     forth. A {@code null} argument is converted to the four-character string {@code "null"};
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 09 00:49:18 UTC 2021
    - 12.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Strings.java

       *     null} is treated as the four-character string {@code "null"}.
       * @param args the arguments to be substituted into the message template. The first argument
       *     specified is substituted for the first occurrence of {@code "%s"} in the template, and so
       *     forth. A {@code null} argument is converted to the four-character string {@code "null"};
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 17 20:47:03 UTC 2021
    - 12.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	// Env is the additional environment variables for the command.
    	// PATTERN and RANDOM are substituted in the values, but not the names.
    	Env []string
    
    	// Cmd is the command (program name) to run.
    	// PATTERN and RANDOM are not substituted.
    	Cmd string
    
    	// Args is the command arguments.
    	// PATTERN and RANDOM are substituted anywhere they appear.
    	Args []string
    
    	// Command-line flags controlling bisect behavior.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    [[included_build_declaring_substitutions]]
    == Declaring dependencies substituted by an included build
    
    By default, Gradle will configure each included build to determine the dependencies it can provide.
    The algorithm for doing this is simple.
    Gradle will inspect the group and name for the projects in the included build and substitute project dependencies for any external dependency matching `${project.group}:${project.name}`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top