Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 163 for Tests (0.16 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/session/AbstractSessionInvalidationTest.kt

     * of [modificationEventKind]. This allows [AbstractSessionInvalidationTest] to check all modification event kinds with the same original
     * test data.
     *
     * [AbstractSessionInvalidationTest] is a base class for invalidation tests of `KaSession` and `LLFirSession`, which share the test
     * data but not necessarily the result data (see also [resultFileSuffix]).
     */
    abstract class AbstractSessionInvalidationTest<SESSION> : AbstractAnalysisApiBasedTest() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/project/workspace/buildFromRepo/tests/project-caching/1/project-caching-1.pom

    <project>
      <modelVersion>4.0.0</modelVersion>
    
      <groupId>tests</groupId>
      <artifactId>project-caching</artifactId>
      <version>1</version>
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 152 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_all.txt

    env MODFMT='{{.Path}}'
    
    
    # 'go list -deps' lists packages and tests in the main module,
    # along with their transitive dependencies.
    
    go list -f $PKGFMT -deps ./...
    stdout -count=4 '^.'
    stdout '^example.com/a$'
    stdout '^example.com/b$'
    stdout '^example.com/main$'
    stdout '^example.com/main/testonly'
    
    
    # 'go list -deps -test' lists transitive imports of tests and non-tests in the
    # main module.
    
    go list -f $PKGFMT -deps -test ./...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 13.1K bytes
    - Viewed (0)
  4. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/PerformanceTestPlugin.kt

    import java.util.concurrent.Callable
    import javax.xml.parsers.DocumentBuilderFactory
    
    
    object Config {
        const val performanceTestReportsDir = "performance-tests/report"
        const val performanceTestResultsJsonName = "perf-results.json"
        const val performanceTestResultsJson = "performance-tests/$performanceTestResultsJsonName"
    
        // Android Studio Jellyfish 2023.3.1
        // Find all references here https://developer.android.com/studio/archive
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_dash_n_cgo.txt

    # Tests golang.org/issue/14944
    
    [!cgo] skip
    
    go build -n foo.go
    ! stderr 'os.Stat .* no such file or directory' # there shouldn't be a stat of the archive file
    
    -- foo.go --
    package main
    
    /*
    #include <limits.h>
    */
    import "C"
    
    func main() {
            println(C.INT_MAX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 22:04:29 UTC 2020
    - 268 bytes
    - Viewed (0)
  6. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

            val localRepository = bucket("${prefix}TestLocalRepository", "Declare a local repository required as input data for the tests (e.g. :tooling-api)")
            val normalizedDistribution = bucket("${prefix}TestNormalizedDistribution", "Declare a normalized distribution (bin distribution without timestamp in version) to be used in tests")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. .tm_properties

    softTabs = true
    tabSize = 4
    
    TM_JAVA_SOURCE_FOLDER_REGEX=src|groovy|java|test|unit|integration|functional
    
    [ "**/build/reports/tests" ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 15:17:22 UTC 2011
    - 382 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_go_file.txt

    # Tests Issue #38478
    # Tests that go get in GOMOD mode returns a specific error if the argument
    # ends with '.go', has no version, and either has no slash or refers to an
    # existing file.
    
    env GO111MODULE=on
    
    # argument doesn't have .go suffix and has no version
    ! go get test
    ! stderr 'arguments must be package or module paths'
    ! stderr 'exists as a file, but ''go get'' requires package arguments'
    
    # argument has .go suffix and has version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  9. misc/ios/README

    To use the go tool to run individual programs and tests, put $GOROOT/bin into PATH to ensure
    the go_ios_$GOARCH_exec wrapper is found. For example, to run the archive/tar tests:
    
    	export PATH=$GOROOT/bin:$PATH
    	GOOS=ios GOARCH=amd64 CGO_ENABLED=1 go test archive/tar
    
    The go_ios_exec wrapper uses GOARCH to select the emulator (amd64) or the device (arm64).
    However, further setup is required to run tests or programs directly on a device.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 29 21:49:26 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  10. build-logic/integration-testing/build.gradle.kts

    plugins {
        id("gradlebuild.build-logic.kotlin-dsl-gradle-plugin")
    }
    
    description = "Provides plugins to create and configure integration, cross-version and distribution tests"
    
    gradlePlugin {
        plugins {
            register("androidStudioProvisioning") {
                id = "gradlebuild.android-studio-provisioning"
                implementationClass = "gradlebuild.integrationtests.ide.AndroidStudioProvisioningPlugin"
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 06 17:21:17 UTC 2024
    - 675 bytes
    - Viewed (0)
Back to top