Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 168 for substitutions (0.17 sec)

  1. android/guava/src/com/google/common/base/Joiner.java

        return join(iterable(first, second, rest));
      }
    
      /**
       * Returns a joiner with the same behavior as this one, except automatically substituting {@code
       * nullText} for any provided null elements.
       */
      public Joiner useForNull(String nullText) {
        checkNotNull(nullText);
        return new Joiner(this) {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  2. src/go/types/predicates.go

    			}
    			smap := makeSubstMap(ytparams, targs)
    
    			var check *Checker   // ok to call subst on a nil *Checker
    			ctxt := NewContext() // need a non-nil Context for the substitution below
    
    			// Constraints must be pair-wise identical, after substitution.
    			for i, xtparam := range xtparams {
    				ybound := check.subst(nopos, ytparams[i].bound, smap, nil, ctxt)
    				if !c.identical(xtparam.bound, ybound, p) {
    					return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. gradlew

    #
    # In Bash we could simply go:
    #
    #   readarray ARGS < <( xargs -n1 <<<"$var" ) &&
    #   set -- "${ARGS[@]}" "$@"
    #
    # but POSIX shell has neither arrays nor command substitution, so instead we
    # post-process each arg (as a line of input to sed) to backslash-escape any
    # character that might be a shell metacharacter, then use eval to reverse
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #
    # In Bash we could simply go:
    #
    #   readarray ARGS < <( xargs -n1 <<<"\$var" ) &&
    #   set -- "\${ARGS[@]}" "\$@"
    #
    # but POSIX shell has neither arrays nor command substitution, so instead we
    # post-process each arg (as a line of input to sed) to backslash-escape any
    # character that might be a shell metacharacter, then use eval to reverse
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/predicates.go

    			}
    			smap := makeSubstMap(ytparams, targs)
    
    			var check *Checker   // ok to call subst on a nil *Checker
    			ctxt := NewContext() // need a non-nil Context for the substitution below
    
    			// Constraints must be pair-wise identical, after substitution.
    			for i, xtparam := range xtparams {
    				ybound := check.subst(nopos, ytparams[i].bound, smap, nil, ctxt)
    				if !c.identical(xtparam.bound, ybound, p) {
    					return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

    import org.jetbrains.kotlin.fir.psi
    import org.jetbrains.kotlin.fir.renderer.FirRenderer
    import org.jetbrains.kotlin.fir.resolve.SessionHolderImpl
    import org.jetbrains.kotlin.fir.resolve.substitution.substitutorByMap
    import org.jetbrains.kotlin.fir.resolve.toSymbol
    import org.jetbrains.kotlin.fir.symbols.impl.*
    import org.jetbrains.kotlin.fir.symbols.lazyResolveToPhase
    import org.jetbrains.kotlin.fir.types.*
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/UnsupportedConfigurationMutationTest.groovy

            """
    
    
            when: fails()
            then: failure.assertHasCause("Cannot change resolution strategy of dependency configuration ':a' after it has been resolved")
        }
    
        def "does not allow changing substitution rules on a configuration that has been resolved"() {
            buildFile << """
                configurations { a }
                configurations.a.resolve()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 17.6K bytes
    - Viewed (2)
  8. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

        bind(buildServiceProviderCodec)
        bind(flowProvidersCodec)
        bind(BeanCodec)
    }.build()
    
    
    /**
     * This is not used directly when encoding or decoding the object graph. This codec takes care of substituting a provider whose
     * value is known at configuration time with a fixed value.
     */
    class FixedValueReplacingProviderCodec(
    
        private
        val providerWithChangingValueCodec: Codec<Any?>
    
    ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

        }
    
        /**
         * This test illustrates that published modules can declare capabilities, which are then discovered
         * as we visit the graph. But using a module substitution rule, we can fix the problem.
         */
    
        @RequiredFeature(feature = GradleMetadataResolveRunner.GRADLE_METADATA, value = "true")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

    import org.jetbrains.kotlin.fir.references.FirResolvedNamedReference
    import org.jetbrains.kotlin.fir.references.FirSuperReference
    import org.jetbrains.kotlin.fir.resolve.constructFunctionType
    import org.jetbrains.kotlin.fir.resolve.substitution.ConeSubstitutor
    import org.jetbrains.kotlin.fir.symbols.impl.FirClassSymbol
    import org.jetbrains.kotlin.fir.types.*
    import org.jetbrains.kotlin.fir.utils.exceptions.withFirEntry
    import org.jetbrains.kotlin.lexer.KtTokens
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top