Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for some_path (0.15 sec)

  1. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/DefaultBuildControllerTest.groovy

            def projectState = Stub(ProjectState)
            def model = new Object()
    
            given:
            _ * workerThreadRegistry.workerThread >> true
            _ * target.projectPath >> ":some:path"
            _ * target.rootDir >> rootDir
            _ * buildStateRegistry.visitBuilds(_) >> { Consumer consumer ->
                consumer.accept(buildState1)
                consumer.accept(buildState2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:30 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/analysis-api-standalone-native/tests/org/jetbrains/kotlin/analysis/api/standalone/konan/fir/test/cases/session/builder/NativeStandaloneSessionBuilderAgainstStdlibTest.kt

    import java.io.File
    
    class NativeStandaloneSessionBuilderAgainstStdlibTest : AbstractStandaloneSessionBuilderAgainstStdlibTest() {
        @Test
        fun testKotlinStdlibJvm() {
            val konanHome = KotlinNativePaths.homePath
            doTestKotlinStdLibResolve(
                NativePlatforms.unspecifiedNativePlatform,
                konanHome.resolve(konanCommonLibraryPath(KONAN_STDLIB_NAME)).toPath()
            )
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Feb 08 20:43:11 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/PartialDirectoryNodeTest.groovy

            isSameNodeType(resultRoot)
            removedNodes == [selectedChild]
            addedNodes.empty
            interaction { noMoreInteractions() }
    
            where:
            vfsSpec << IS_PREFIX_OF_CHILD + SAME_PATH
        }
    
        def "invalidate #vfsSpec.searchedPath invalidates children of #vfsSpec.selectedChildPath (#vfsSpec)"() {
            setupTest(vfsSpec)
            def invalidatedChild = mockChild()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/internal/JavadocExecHandleBuilderTest.groovy

            then:
            1 * execActionFactory.newExecAction() >> action
            1 * action.executable(Jvm.current().javadocExecutable)
        }
    
        def testCheckCustomExecutable() {
            String executable = "somepath"
            def action = Mock(ExecAction)
    
            when:
            javadocExecHandleBuilder.executable = executable
            javadocExecHandleBuilder.execHandle
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultSettingsCommonTest.groovy

        DefaultPluginManager pluginManager = Mock(DefaultPluginManager)
        FeatureFlags previews = Mock(FeatureFlags)
        DefaultSettings settings
    
        def createSettings(String path = '/somepath/root') {
            settingsDir = new File(path).absoluteFile
            startParameter = new StartParameter(currentDir: new File(settingsDir, 'current'), gradleUserHomeDir: new File('gradleUserHomeDir'))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 01 18:57:54 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorAnnotationsTest.groovy

        }
    
        void "annotations on method params are retained"() {
            given:
            def api = toApi([
                A  : '''
                    public class A {
                        public void foo(@Ann(path="somePath") String foo) {}
                    }
                ''',
                Ann: '''
                    import java.lang.annotation.ElementType;
                    import java.lang.annotation.Retention;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  7. ci/official/utilities/code_check_full.bats

    # The Python package is not allowed to depend on any CUDA packages.
    @test "Pip package doesn't depend on CUDA" {
      bazel cquery \
        --experimental_cc_shared_library \
        --@local_config_cuda//:enable_cuda \
        "somepath(//tensorflow/tools/pip_package:wheel, " \
        "@local_config_cuda//cuda:cudart + "\
        "@local_config_cuda//cuda:cudart + "\
        "@local_config_cuda//cuda:cuda_driver + "\
        "@local_config_cuda//cuda:cudnn + "\
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 21:54:13 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. docs/en/docs/how-to/nosql-databases-couchbase.md

    So, if the `dict` contains:
    
    ```Python
    {
        "username": "johndoe",
        "hashed_password": "some_hash",
    }
    ```
    
    It will be passed to `UserInDB` as:
    
    ```Python
    UserInDB(username="johndoe", hashed_password="some_hash")
    ```
    
    ## Create your **FastAPI** code
    
    ### Create the `FastAPI` app
    
    ```Python hl_lines="46"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            configuration.allDependencies as Set == [dependency, projectDependency] as Set
        }
    
        def "resolves files"() {
            def configuration = conf()
            def fileSet = [new File("somePath")] as Set
    
            given:
            resolver.resolveGraph(configuration) >> graphResolved(fileSet)
    
            when:
            def resolved = configuration.resolve()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ClasspathTest.groovy

            return getClass().getResourceAsStream('customClasspath.xml')
        }
    
        private Library createSomeLibrary() {
            Library library = new Library(fileReferenceFactory.fromPath("/somepath"))
            library.exported = true
            return library
        }
    
        private ProjectDependency createProjectDependency(String path, String publicationPath, Map entryAttributes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top