Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,187 for checkers (0.17 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    #if GTEST_HAS_DEATH_TEST
    
    namespace internal {
    
    // Returns a Boolean value indicating whether the caller is currently
    // executing in the context of the death test child process.  Tools such as
    // Valgrind heap checkers may need this to modify their behavior in death
    // tests.  IMPORTANT: This is an internal utility.  Using it may break the
    // implementation of death tests.  User code MUST NOT use it.
    GTEST_API_ bool InDeathTestChild();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/Cache.java

       * only contain entries which are already present in the cache.
       *
       * @since 11.0
       */
      /*
       * <? extends Object> is mostly the same as <?> to plain Java. But to nullness checkers, they
       * differ: <? extends Object> means "non-null types," while <?> means "all types."
       */
      ImmutableMap<K, V> getAllPresent(Iterable<? extends Object> keys);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    #if GTEST_HAS_DEATH_TEST
    
    namespace internal {
    
    // Returns a Boolean value indicating whether the caller is currently
    // executing in the context of the death test child process.  Tools such as
    // Valgrind heap checkers may need this to modify their behavior in death
    // tests.  IMPORTANT: This is an internal utility.  Using it may break the
    // implementation of death tests.  User code MUST NOT use it.
    GTEST_API_ bool InDeathTestChild();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top