Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for typecheck (0.59 sec)

  1. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10SubtypingComponent.kt

            val typeChecker = analysisContext.resolveSession.kotlinTypeCheckerOfOwnerModule
            if (typeChecker !is NewKotlinTypeCheckerImpl) return typeChecker
    
            // `NewKotlinTypeCheckerImpl` is inconsistent with its error type leniency: `isSubtypeOf` is lenient by default while `equalTypes`
            // isn't. Hence, even without a `LENIENT` policy, we need to wrap `typeChecker` to achieve consistent strictness.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec/useConfigurationScript/groovycompilerconfig.groovy

    import groovy.transform.TypeChecked
    
    withConfig(configuration) {
        ast(TypeChecked)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 88 bytes
    - Viewed (0)
  3. pkg/controller/validatingadmissionpolicystatus/controller.go

    	policyClient   admissionregistrationv1.ValidatingAdmissionPolicyInterface
    
    	// typeChecker checks the policy's expressions for type errors.
    	// Type of params is defined in policy.Spec.ParamsKind
    	// Types of object are calculated from policy.Spec.MatchingConstraints
    	typeChecker *validatingadmissionpolicy.TypeChecker
    }
    
    func (c *Controller) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/integTest/resources/org/gradle/groovy/compile/IncrementalGroovyCompileIntegrationTest/failsCompilationWhenConfigScriptIsUpdated/newgroovycompilerconfig.groovy

    import groovy.transform.TypeChecked
    
    withConfig(configuration) {
        ast(TypeChecked)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 88 bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/validatingadmissionpolicystatus.go

    		Combine(&resolver.ClientDiscoveryResolver{Discovery: controllerContext.ClientBuilder.DiscoveryClientOrDie(names.ValidatingAdmissionPolicyStatusController)})
    
    	typeChecker := &pluginvalidatingadmissionpolicy.TypeChecker{
    		SchemaResolver: schemaResolver,
    		RestMapper:     controllerContext.RESTMapper,
    	}
    	c, err := validatingadmissionpolicystatus.NewController(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. hack/golangci.yaml.in

        # https://github.com/kubernetes/kubernetes/issues/117288#issuecomment-1507030071
        - linters:
            - stylecheck
          text: "ST1012: error var .* should have name of the form ErrFoo"
    
        # https://github.com/kubernetes/kubernetes/issues/117288#issuecomment-1507031224
        - linters:
            - stylecheck
          text: "ST1023: should omit type .* from declaration; it will be inferred from the right-hand side"
        {{- end}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec/configurationScriptNotSupported/groovycompilerconfig.groovy

     * limitations under the License.
     */
    
    package org.gradle.groovy.compile.BasicGroovyCompilerIntegrationSpec.configurationScriptNotSupported
    
    import groovy.transform.TypeChecked
    
    withConfig(configuration) {
        ast(TypeChecked)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 807 bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec/failsBecauseOfInvalidConfigFile/groovycompilerconfig.groovy

    withConfig(configuration) {
        ast(TypeChecked) // invalid config file because of a missing import
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 102 bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/src/integTest/resources/org/gradle/groovy/compile/IncrementalGroovyCompileIntegrationTest/failsCompilationWhenConfigScriptIsUpdated/groovycompilerconfig.groovy

    import groovy.transform.TypeChecked
    
    withConfig(configuration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 67 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/type.go

    	Underlying() Type
    
    	// String returns a string representation of a type.
    	String() string
    }
    
    // Expressions in the syntax package provide storage for
    // the typechecker to record its results. This interface
    // is the mechanism the typechecker uses to record results,
    // and clients use to retrieve those results.
    type typeInfo interface {
    	SetTypeInfo(TypeAndValue)
    	GetTypeInfo() TypeAndValue
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top