Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 230 for substituted (0.23 sec)

  1. src/math/rand/v2/regress_test.go

    	os.Exit(1)
    }
    
    // replace substitutes the definition text from new into the content of file.
    // The text in new is of the form
    //
    //	var whatever = T{
    //		...
    //	}
    //
    // Replace searches file for an exact match for the text of the first line,
    // finds the closing brace, and then substitutes new for what used to be in the file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:03:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/TimeLimiter.java

       * object behaves appropriately when its thread is interrupted.
       *
       * <p>For example, to return the value of {@code target.someMethod()}, but substitute {@code
       * DEFAULT_VALUE} if this method call takes over 50 ms, you can use this code:
       *
       * <pre>
       *   TimeLimiter limiter = . . .;
       *   TargetType proxy = limiter.newProxy(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

    import java.util.regex.Pattern
    
    @TargetGradleVersion(">=5.6")
    class ClosedProjectSubstitutionCrossVersionSpec extends ToolingApiSpecification {
    
        def "will substitute and run build dependencies for closed projects on startup"() {
            setup:
            multiProjectBuildInRootFolder("parent", ["child1", "child2"]) {
                buildFile << """
                subprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/initialization/BuildInitializationBuildOperationsIntegrationTest.groovy

            settingsFile << """
                rootProject.name = "root-changed"
                includeBuild('unused') {
                    dependencySubstitution {
                        substitute(module("none:none:infinity")).using(project(":"))
                    }
                }
            """
            file("unused/settings.gradle").createFile()
    
            when:
            succeeds()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 27 15:36:36 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. licenses/github.com/klauspost/compress/LICENSE

    A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 30 19:13:15 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/model/internal/type/ModelType.java

                }.getType());
            }
    
            @SuppressWarnings("unchecked")
            public <I> Builder<T> where(Parameter<I> parameter, ModelType<I> type) {
                wrapper = wrapper.substitute(parameter.typeVariable, type.wrapper);
                return this;
            }
    
            public ModelType<T> build() {
                return Simple.typed(wrapper);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParser.java

                if (paramNames.isEmpty() || expression.getArguments().isEmpty()) {
                    // When this function has no parameters, we don't need to substitute parameters, so return the expression after macro expanding it
                    // Also handle calling a zero args function, as we also don't need to substitute parameters
                    expression = expression.asMacroExpansion();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/remote-repo-1/maven-test/jars/maven-test-b-1.0.jar

    PARTICULAR PURPOSE ARE * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Aug 09 19:02:31 UTC 2004
    - 18.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParser.java

                    pomReader.setPomParent(parentPomReader);
    
                    // Current POM can derive version/artifactId from parent. Resolve GAV and substitute values
                    pomReader.resolveGAV();
                    groupId = pomReader.getGroupId();
                    artifactId = pomReader.getArtifactId();
                    version = pomReader.getVersion();
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. src/go/types/predicates.go

    			return false
    		}
    
    		// In the case of generic signatures, we will substitute in yparams and
    		// yresults.
    		yparams := y.params
    		yresults := y.results
    
    		if x.TypeParams().Len() > 0 {
    			// We must ignore type parameter names when comparing x and y. The
    			// easiest way to do this is to substitute x's type parameters for y's.
    			xtparams := x.TypeParams().list()
    			ytparams := y.TypeParams().list()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top