Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 230 for substituted (0.16 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

        }
    
        override fun getEnhancedType(type: KaType): KaType? {
            require(type is KaFirType)
            val coneType = type.coneType
            val substitutor = EnhancedForWarningConeSubstitutor(typeContext)
            val enhancedConeType = substitutor.substituteType(coneType)
    
            return enhancedConeType?.asKtType()
        }
    
        override fun buildSelfClassType(symbol: KaNamedClassOrObjectSymbol): KaType {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/roundtripper.go

    	proxier func(req *http.Request) (*url.URL, error)
    
    	// pingPeriod is a period for sending Ping frames over established
    	// connections.
    	pingPeriod time.Duration
    
    	// upgradeTransport is an optional substitute for dialing if present. This field is
    	// mutually exclusive with the "tlsConfig", "Dialer", and "proxier".
    	upgradeTransport http.RoundTripper
    }
    
    var _ utilnet.TLSClientConfigHolder = &SpdyRoundTripper{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/testUtils.kt

            }
            is PsiElement -> this.text
            is KaSubstitutor.Empty -> "<empty substitutor>"
            is KaMapBackedSubstitutor -> {
                val mappingText = getAsMap().entries
                    .joinToString(prefix = "{", postfix = "}") { (k, v) -> stringRepresentation(k) + " = " + v }
                "<map substitutor: $mappingText>"
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildPluginDevelopmentIntegrationTest.groovy

            execute(buildA, "tasks", ["--include-build", "../pluginBuild"])
    
            then:
            executed ":pluginBuild:jar"
            outputContains("taskFromPluginBuild")
        }
    
        def "does not substitute plugin from same build into root build"() {
            disableProblemsApiCheck()
            buildA.settingsFile << """
                include "a", "b"
            """
            buildA.file("a/build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionTypeProvider.kt

            val substitutor = (this as? FirQualifiedAccessExpression)
                ?.createConeSubstitutorFromTypeArguments(rootModuleSession, discardErrorTypes = !substituteWithErrorTypes)
                ?: ConeSubstitutor.Empty
    
            return resolvedArgumentMapping?.mapValuesTo(LinkedHashMap()) { (_, parameter) ->
                SubstitutedValueParameter(parameter, substitutor.substituteOrSelf(parameter.returnTypeRef.coneType))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/codegen.cc

    #include <vector>
    
    #include "absl/memory/memory.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_join.h"
    #include "absl/strings/str_replace.h"
    #include "absl/strings/str_split.h"
    #include "absl/strings/substitute.h"
    #include "absl/types/span.h"
    #include "tensorflow/compiler/aot/embedded_protocol_buffers.h"
    #include "tensorflow/compiler/tf2xla/tf2xla.pb.h"
    #include "tensorflow/compiler/tf2xla/tf2xla_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

                            .byReason('second reason') // this comes from 'b'
                            .selectedByRule("substitute 0.9 with 1.0")
                    }
                    module('org.test:b:1.0:runtime') {
                        module('org.test:leaf:1.1')
                            .selectedByRule("substitute 0.9 with 1.0")
                            .byConflictResolution("between versions 1.1 and 1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  8. LICENSE

    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 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingPlatformAlignmentTest.groovy

            }
    
            given:
            buildFile << """
                configurations {
                    conf.resolutionStrategy.dependencySubstitution {
                        substitute module('org:core') using module('org:core:2.9.4')
                        substitute module('org:databind') using module('org:databind:2.7.9')
                    }
                }
                dependencies {
                    conf("org:core:2.9.4.1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/generate/generate.go

    				}
    			}
    			g.errorf("mismatched quoted string")
    		}
    		i := strings.IndexAny(line, " \t")
    		if i < 0 {
    			i = len(line)
    		}
    		words = append(words, line[0:i])
    		line = line[i:]
    	}
    	// Substitute command if required.
    	if len(words) > 0 && g.commands[words[0]] != nil {
    		// Replace 0th word by command substitution.
    		//
    		// Force a copy of the command definition to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top