Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 116 for substitutions (0.2 sec)

  1. platforms/documentation/docs/src/samples/android-application/tests/buildTask.sample.conf

        # The following deprecation is coming from the Android plugin
        #> Task :app:javaPreCompileDebug
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 643 bytes
    - Viewed (0)
  2. test/fixedbugs/bug149.go

    	var b1 []byte;
    	s1 := string(b1);
    	println(len(s1));  // prints 0
    
    	b2 := ([]byte)(nil);
    	s2 := string(b2);
    	println(len(s2));  // prints 0
    
    	s3 := string(([]byte)(nil));  // does not compile (literal substitution of b2)
    	println(len(s3));
    }
    
    /*
    bug149.go:14: cannot convert []uint8 constant to string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 506 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DependencySubstitutionRules.java

    import org.gradle.api.Action;
    import org.gradle.api.artifacts.DependencySubstitution;
    import org.gradle.internal.Actions;
    
    /**
     * A service that injects dependency substitution rules into the build.
     */
    public interface DependencySubstitutionRules {
        DependencySubstitutionRules NO_OP = new DependencySubstitutionRules() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. test/fixedbugs/issue41780.go

    //go:noinline
    func foo(d *decimal) int {
    	exp := int(d.d[1])
    	if d.dp < 0 || d.dp == 0 && d.d[0] < '5' {
    		var n int
    		if -d.dp >= len(powtab) {
    			n = 27
    		} else {
    			n = powtab[-d.dp] // incorrect CMP -> CMN substitution causes indexing panic.
    		}
    		exp += n
    	}
    	return exp
    }
    
    func main() {
    	var d decimal
    	d.d[0] = '1'
    	if foo(&d) != 1 {
    		println("FAILURE (though not the one this test was written to catch)")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 06 01:14:39 UTC 2020
    - 845 bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSubstitutorFactory.kt

    import org.jetbrains.kotlin.analysis.api.fir.types.KaFirType
    import org.jetbrains.kotlin.analysis.api.types.KaSubstitutor
    import org.jetbrains.kotlin.fir.resolve.substitution.ConeSubstitutorByMap
    
    internal class KaFirSubstitutorFactory(
        override val analysisSession: KaFirSession
    ) : KaSubstitutorFactory(), KaFirSessionComponent {
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/CompositeBuildDependencySubstitutions.java

    import javax.annotation.Nullable;
    import java.util.Collection;
    import java.util.SortedSet;
    import java.util.TreeSet;
    import java.util.stream.Collectors;
    
    /**
     * Provides a dependency substitution rule for composite build,
     * that substitutes a project within the composite with any dependency with a matching ModuleIdentifier.
     */
    public class CompositeBuildDependencySubstitutions implements Action<DependencySubstitution> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 23 10:37:35 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirNoClassifiersScope.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.fir.scopes
    
    import org.jetbrains.kotlin.fir.resolve.substitution.ConeSubstitutor
    import org.jetbrains.kotlin.fir.scopes.FirContainingNamesAwareScope
    import org.jetbrains.kotlin.fir.scopes.FirDelegatingContainingNamesAwareScope
    import org.jetbrains.kotlin.fir.symbols.impl.FirClassifierSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 937 bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/vcs/VcsMapping.java

     *
     * @since 4.4
     */
    public interface VcsMapping {
        /**
         * The requested dependency, before it is resolved.
         * The requested dependency does not change even if there are multiple dependency substitution rules
         * that manipulate the dependency metadata.
         */
        ComponentSelector getRequested();
    
        /**
         * Specifies the VCS location for the requested component.
         *
         * @since 4.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 05 16:56:23 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirExcludingNonInnerClassesScope.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.fir.scopes
    
    import org.jetbrains.kotlin.fir.resolve.substitution.ConeSubstitutor
    import org.jetbrains.kotlin.fir.scopes.FirContainingNamesAwareScope
    import org.jetbrains.kotlin.fir.scopes.FirDelegatingContainingNamesAwareScope
    import org.jetbrains.kotlin.fir.symbols.impl.FirClassifierSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/ContentFilterable.java

         * they represent, so, for example, {@code \n} becomes newline. If this is undesirable then {@link #expand(Map, Action)}
         * should be used to disable this behavior.
         *
         * @param properties reference-to-value map for substitution
         * @return this
         */
        ContentFilterable expand(Map<String, ?> properties);
    
        /**
         * <p>Expands property references in each file as it is copied. More specifically, each file is transformed using
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top