Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,153 for checkers (0.14 sec)

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

         * that users *can* pass null arguments to Joiner, we annotate it as if it always tolerates null
         * inputs, rather than as if it never tolerates them.
         *
         * We rely on checkers to implement special cases to catch dangerous calls to join(), etc. based
         * on what they know about the particular Joiner instances the calls are performed on.
         *
    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. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginAccessorsTest.kt

    import org.hamcrest.CoreMatchers.equalTo
    import org.hamcrest.MatcherAssert.assertThat
    
    import org.jetbrains.kotlin.descriptors.Visibilities
    import org.jetbrains.kotlin.descriptors.Visibility
    import org.jetbrains.kotlin.fir.analysis.checkers.toVisibilityOrNull
    import org.jetbrains.kotlin.psi.psiUtil.visibilityModifierType
    import org.junit.Assert.assertTrue
    
    import org.junit.Test
    
    import java.io.File
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Joiner.java

         * that users *can* pass null arguments to Joiner, we annotate it as if it always tolerates null
         * inputs, rather than as if it never tolerates them.
         *
         * We rely on checkers to implement special cases to catch dangerous calls to join(), etc. based
         * on what they know about the particular Joiner instances the calls are performed on.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

    import org.jetbrains.kotlin.analysis.utils.errors.withKtModuleEntry
    import org.jetbrains.kotlin.analysis.utils.printer.parentsOfType
    import org.jetbrains.kotlin.fir.FirElement
    import org.jetbrains.kotlin.fir.analysis.checkers.declaration.isLocalMember
    import org.jetbrains.kotlin.fir.declarations.*
    import org.jetbrains.kotlin.fir.expressions.*
    import org.jetbrains.kotlin.fir.expressions.impl.FirUnitExpression
    import org.jetbrains.kotlin.fir.psi
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/conversion_test.go

    	"k8s.io/apiextensions-apiserver/test/integration/fixtures"
    	"k8s.io/apiextensions-apiserver/test/integration/storage"
    )
    
    type Checker func(t *testing.T, ctc *conversionTestContext)
    
    func checks(checkers ...Checker) []Checker {
    	return checkers
    }
    
    func TestWebhookConverterWithWatchCache(t *testing.T) {
    	testWebhookConverter(t, true)
    }
    func TestWebhookConverterWithoutWatchCache(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 47.1K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/response-model.md

    But you might want to still keep the return type annotation in the function to get the support from tools like editors and type checkers (e.g. mypy).
    
    In this case, you can disable the response model generation by setting `response_model=None`:
    
    === "Python 3.10+"
    
        ```Python hl_lines="7"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. src/database/sql/driver/driver.go

    // the driver more control to handle Go and database types beyond the default
    // [Value] types allowed.
    //
    // The [database/sql] package checks for value checkers in the following order,
    // stopping at the first found match: Stmt.NamedValueChecker, Conn.NamedValueChecker,
    // Stmt.ColumnConverter, [DefaultParameterConverter].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirReferenceResolveHelper.kt

    import org.jetbrains.kotlin.analysis.utils.errors.unexpectedElementError
    import org.jetbrains.kotlin.fir.FirPackageDirective
    import org.jetbrains.kotlin.fir.FirSession
    import org.jetbrains.kotlin.fir.analysis.checkers.getContainingClassSymbol
    import org.jetbrains.kotlin.fir.declarations.*
    import org.jetbrains.kotlin.fir.declarations.builder.buildImport
    import org.jetbrains.kotlin.fir.declarations.utils.classId
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 37K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config.go

    	return kmsReloadHealthCheckName
    }
    
    func (k kmsHealthChecker) Check(req *http.Request) error {
    	var errs []error
    
    	for i := range k {
    		checker := k[i]
    		if err := checker.Check(req); err != nil {
    			errs = append(errs, fmt.Errorf("%s: %w", checker.Name(), err))
    		}
    	}
    
    	return utilerrors.Reduce(utilerrors.NewAggregate(errs))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

    import org.jetbrains.kotlin.analysis.utils.errors.withPsiEntry
    import org.jetbrains.kotlin.analysis.utils.printer.parentOfType
    import org.jetbrains.kotlin.fir.FirElement
    import org.jetbrains.kotlin.fir.analysis.checkers.toRegularClassSymbol
    import org.jetbrains.kotlin.fir.analysis.diagnostics.FirErrors
    import org.jetbrains.kotlin.fir.declarations.FirResolvePhase
    import org.jetbrains.kotlin.fir.declarations.FirValueParameter
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
Back to top